diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2011-05-02 16:08:22 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-05-02 21:40:04 +0200 |
commit | 874b6e4e87cf5835b2121750372046cbae9624b2 (patch) | |
tree | c63aa3f551c980fa05cc393de64603ba6f211714 /package/libxml2/libxml2.mk | |
parent | 48a00cc2ce165e70acc5c327b3c6415dde5c794b (diff) | |
download | buildroot-novena-874b6e4e87cf5835b2121750372046cbae9624b2.tar.gz buildroot-novena-874b6e4e87cf5835b2121750372046cbae9624b2.zip |
libxml2: fixup configure options
Some configure options changed so adjust.
Forcibly disabling threads isn't good and also it's detected by
configure when there are no threads.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/libxml2/libxml2.mk')
-rw-r--r-- | package/libxml2/libxml2.mk | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/package/libxml2/libxml2.mk b/package/libxml2/libxml2.mk index 2a267b2f9..8f2878d65 100644 --- a/package/libxml2/libxml2.mk +++ b/package/libxml2/libxml2.mk @@ -12,10 +12,7 @@ ifneq ($(BR2_LARGEFILE),y) LIBXML2_CONF_ENV = CC="$(TARGET_CC) $(TARGET_CFLAGS) -DNO_LARGEFILE_SOURCE" endif -LIBXML2_CONF_OPT = --with-gnu-ld --enable-shared \ - --enable-static \ - --without-debugging --without-python \ - --without-threads +LIBXML2_CONF_OPT = --with-gnu-ld --without-python --without-debug define LIBXML2_STAGING_LIBXML2_CONFIG_FIXUP $(SED) "s,^prefix=.*,prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/xml2-config @@ -26,9 +23,7 @@ LIBXML2_POST_INSTALL_STAGING_HOOKS += LIBXML2_STAGING_LIBXML2_CONFIG_FIXUP HOST_LIBXML2_DEPENDENCIES = host-pkg-config -HOST_LIBXML2_CONF_OPT = \ - --enable-shared --without-debugging --without-python \ - --without-threads +HOST_LIBXML2_CONF_OPT = --without-debug --without-python define LIBXML2_REMOVE_CONFIG_SCRIPTS $(RM) -f $(TARGET_DIR)/usr/bin/xml2-config |