diff options
author | delphij <delphij@FreeBSD.org> | 2015-12-22 08:03:23 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2015-12-22 08:03:23 +0000 |
commit | 897a072717635ed1cdd491bcd112147e58f4de0d (patch) | |
tree | fc6400160a194c6ade31da57ec01557fc22c87fa /usr.bin/xz | |
parent | 1515aec4ed9737a7508ecb3f30d50e49a4e90015 (diff) | |
download | FreeBSD-src-897a072717635ed1cdd491bcd112147e58f4de0d.zip FreeBSD-src-897a072717635ed1cdd491bcd112147e58f4de0d.tar.gz |
MFC: xz 5.2.2.
Relnotes: yes
Diffstat (limited to 'usr.bin/xz')
-rw-r--r-- | usr.bin/xz/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/xz/Makefile b/usr.bin/xz/Makefile index 13703fd..6195552 100644 --- a/usr.bin/xz/Makefile +++ b/usr.bin/xz/Makefile @@ -22,6 +22,7 @@ SRCS= args.c \ list.c \ main.c \ message.c \ + mytime.c \ options.c \ signals.c \ suffix.c \ @@ -42,7 +43,7 @@ CFLAGS+= -DHAVE_CONFIG_H \ -I${LZMALIBDIR} \ -I${XZDIR}/common -DPADD= ${LIBLZMA} -LDADD= -llzma +DPADD= ${LIBLZMA} ${LIBPTHREAD} +LDADD= -llzma -lpthread .include <bsd.prog.mk> |