From c855824ce51aa56a5aa85be242b241f8367b9333 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Sun, 23 Aug 2009 01:02:34 -0400 Subject: [PATCH] Fix FreeBSD build. SVN-Revision: 1388 --- cpio/Makefile | 2 +- cpio/test/Makefile | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) 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 \ -- 2.47.3