From: Tim Kientzle Date: Sun, 23 Aug 2009 05:02:34 +0000 (-0400) Subject: Fix FreeBSD build. X-Git-Tag: v2.8.0~102^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c855824ce51aa56a5aa85be242b241f8367b9333;p=thirdparty%2Flibarchive.git Fix FreeBSD build. SVN-Revision: 1388 --- diff --git a/cpio/Makefile b/cpio/Makefile index f37ced8c2..6c6d21762 100644 --- a/cpio/Makefile +++ b/cpio/Makefile @@ -9,7 +9,7 @@ WARNS?= 6 DPADD= ${LIBARCHIVE} ${LIBZ} ${LIBBZ2} CFLAGS+= -DBSDCPIO_VERSION_STRING=\"${BSDCPIO_VERSION_STRING}\" CFLAGS+= -DPLATFORM_CONFIG_H=\"config_freebsd.h\" -LDADD+= -larchive -lz -lbz2 +LDADD+= -larchive -lz -lbz2 -lcrypto -lmd .if ${MK_GNU_CPIO} != "yes" SYMLINKS=bsdcpio ${BINDIR}/cpio diff --git a/cpio/test/Makefile b/cpio/test/Makefile index 452824e92..edd057d15 100644 --- a/cpio/test/Makefile +++ b/cpio/test/Makefile @@ -12,14 +12,16 @@ TESTS= \ test_basic.c \ test_format_newc.c \ test_gcpio_compat.c \ + test_option_B_upper.c \ + test_option_C_upper.c \ + test_option_L_upper.c \ + test_option_Z_upper.c \ test_option_a.c \ - test_option_B.c \ test_option_c.c \ test_option_d.c \ + test_option_l.c \ test_option_f.c \ test_option_help.c \ - test_option_L.c \ - test_option_ell.c \ test_option_m.c \ test_option_t.c \ test_option_u.c \