diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-24 07:48:15 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-24 07:48:15 +0000 |
commit | 6d31b020b026534a74b6e4ef9ccd5174a131fd10 (patch) | |
tree | 4c8cfa5351ba46bff44ec06ac3cf3bd6356a732f | |
parent | cc1ab5e670d681382b68bb3bdfcf86b9e71aabe9 (diff) | |
download | buildroot-novena-6d31b020b026534a74b6e4ef9ccd5174a131fd10.tar.gz buildroot-novena-6d31b020b026534a74b6e4ef9ccd5174a131fd10.zip |
libxml2: enable ipv6 support if enabled in buildroot
-rw-r--r-- | package/libxml2/libxml2.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libxml2/libxml2.mk b/package/libxml2/libxml2.mk index 68c0872c0..f01b21f00 100644 --- a/package/libxml2/libxml2.mk +++ b/package/libxml2/libxml2.mk @@ -17,7 +17,7 @@ LIBXML2_CONF_ENV = CC="$(TARGET_CC) $(TARGET_CFLAGS) -DNO_LARGEFILE_SOURCE" endif LIBXML2_CONF_OPT = --with-gnu-ld --enable-shared \ - --enable-static --enable-ipv6=no \ + --enable-static $(DISABLE_IPV6) \ --without-debugging --without-python \ --without-threads $(DISABLE_NLS) |