From: Mar Andrews Date: Thu, 2 Aug 2012 01:49:50 +0000 (+0000) Subject: 3357. [port] Add support for libxml2-2.8.x [RT #30440] X-Git-Tag: v9.10.0a1~980 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=1eb871bb42d2728377ea1ebcb3c1ebb2d9535f3c;p=thirdparty%2Fbind9.git 3357. [port] Add support for libxml2-2.8.x [RT #30440] --- diff --git a/CHANGES b/CHANGES index 10413c3e474..2f2ea3d6b66 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +3357. [port] Add support for libxml2-2.8.x [RT #30440] + 3356. [bug] Cap the TTL of signed RRsets when RRSIGs are approaching their expiry, so they don't remain in caches after expiry. [RT #26429] diff --git a/configure b/configure index da1d91757db..7303c233457 100755 --- a/configure +++ b/configure @@ -23262,7 +23262,7 @@ case "$use_libxml2" in ;; auto|yes) case X`(xml2-config --version) 2>/dev/null` in - X2.[67].*) + X2.[678].*) libxml2_libs=`xml2-config --libs` libxml2_cflags=`xml2-config --cflags` ;; diff --git a/configure.in b/configure.in index 42a6a7f6853..2b857bd4dcd 100644 --- a/configure.in +++ b/configure.in @@ -1326,7 +1326,7 @@ case "$use_libxml2" in ;; auto|yes) case X`(xml2-config --version) 2>/dev/null` in - X2.[[67]].*) + X2.[[678]].*) libxml2_libs=`xml2-config --libs` libxml2_cflags=`xml2-config --cflags` ;;