ports

morpheus ports
git clone git://git.2f30.org/ports
Log | Files | Refs | LICENSE

commit 4fea1a9057004c406c037249d7cb9e8d0fbdf0a4
parent 3e033a08b770ce4bd3ce97141f956f13a3d9efab
Author: sin <sin@2f30.org>
Date:   Tue, 10 Jun 2014 14:49:15 +0100

Add support for internal filters to libarchive

Diffstat:
Mlibarchive/config.h | 2+-
Mlibarchive/libarchive.mk | 5+++--
2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/libarchive/config.h b/libarchive/config.h @@ -882,7 +882,7 @@ /* #undef HAVE_WORKING_EXT2_IOC_GETFLAGS */ /* Define to 1 if you have the <zlib.h> header file. */ -/* #undef HAVE_ZLIB_H */ +#define HAVE_ZLIB_H 1 /* Define to 1 if you have the `_ctime64_s' function. */ /* #undef HAVE__CTIME64_S */ diff --git a/libarchive/libarchive.mk b/libarchive/libarchive.mk @@ -3,6 +3,7 @@ BIN = tar/tar cpio/cpio LIB = libarchive.a libarchive_fe.a TARG = tar.1 cpio.1 +DEPS = zlib libarchive_a_OBJ = `{ls libarchive/*.c | sed 's/.$/o/' | grep -v '_windows.o$' | grep -v 'archive_entry_copy_bhfi.o$'} libarchive_fe_a_OBJ = `{ls libarchive_fe/*.c | sed 's/.$/o/'} @@ -10,8 +11,8 @@ libarchive_fe_a_OBJ = `{ls libarchive_fe/*.c | sed 's/.$/o/'} cpio_cpio_OBJ = `{ls cpio/*.c | sed 's/.$/o/' | grep -v '_windows.o$'} tar_tar_OBJ = `{ls tar/*.c | sed 's/.$/o/' | grep -v '_windows.o$'} -LOCAL_BIN_LDFLAGS = -L. -larchive -larchive_fe -LOCAL_CFLAGS = -I. -Ilibarchive -Ilibarchive_fe -DHAVE_CONFIG_H +LOCAL_BIN_LDFLAGS = -L. -L${zlib_libdir} -lz -larchive -larchive_fe +LOCAL_CFLAGS = -I. -I${zlib_includedir} -I. -Ilibarchive -Ilibarchive_fe -DHAVE_CONFIG_H <$mkbuild/mk.default