summaryrefslogtreecommitdiffstats
path: root/package/libarchive
diff options
context:
space:
mode:
authorBaruch Siach <baruch@tkos.co.il>2011-07-10 16:30:33 +0300
committerPeter Korsgaard <jacmet@sunsite.dk>2011-07-10 17:10:23 +0200
commitec0b51648b68de94f715fadef9a3a9085c15e22a (patch)
tree9544445fd2cd6068b552ea71aeabb2b56b69497a /package/libarchive
parenta5dc0cdced48522938ac7f6be1ba6763bc7a6afc (diff)
downloadbuildroot-novena-ec0b51648b68de94f715fadef9a3a9085c15e22a.tar.gz
buildroot-novena-ec0b51648b68de94f715fadef9a3a9085c15e22a.zip
libarchive: bump to version 2.8.4
The libxml2 dependency is new in this version, and does not behave nicely with cross compile. The configure script looks for the host xml2-config. Add '--disable-xml2' as a workaround for now. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/libarchive')
-rw-r--r--package/libarchive/libarchive.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/libarchive/libarchive.mk b/package/libarchive/libarchive.mk
index 0038cd351..563c9d7bc 100644
--- a/package/libarchive/libarchive.mk
+++ b/package/libarchive/libarchive.mk
@@ -3,7 +3,7 @@
# libarchive (reusable C library for archive formats)
#
#############################################################
-LIBARCHIVE_VERSION = 2.7.1
+LIBARCHIVE_VERSION = 2.8.4
LIBARCHIVE_SITE = http://libarchive.googlecode.com/files/
LIBARCHIVE_SOURCE = libarchive-$(LIBARCHIVE_VERSION).tar.gz
LIBARCHIVE_INSTALL_STAGING = YES
@@ -14,6 +14,7 @@ LIBARCHIVE_DEPENDENCIES = zlib
endif
LIBARCHIVE_CONF_OPT = \
+ --without-xml2 \
$(if $(BR2_PACKAGE_LIBARCHIVE_BSDTAR),--enable-bsdtar,--disable-bsdtar) \
$(if $(BR2_PACKAGE_LIBARCHIVE_BSDCPIO),--enable-bsdcpio,--disable-bsdcpio)