From: Mar Andrews Date: Thu, 2 Aug 2012 01:53:52 +0000 (+0000) Subject: 3357. [port] Add support for libxml2-2.8.x [RT #30440] X-Git-Tag: v9.7.7rc1~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd6c279aac2e6bf3fa4c4906dd2677d1ac8fc72e;p=thirdparty%2Fbind9.git 3357. [port] Add support for libxml2-2.8.x [RT #30440] --- diff --git a/CHANGES b/CHANGES index e319987e676..fe1bb4bee7e 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 0999f0b9940..51309c03770 100755 --- a/configure +++ b/configure @@ -22887,7 +22887,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 d95024cf410..fc3cc2b0507 100644 --- a/configure.in +++ b/configure.in @@ -1138,7 +1138,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` ;;