From 1eb871bb42d2728377ea1ebcb3c1ebb2d9535f3c Mon Sep 17 00:00:00 2001 From: Mar Andrews Date: Thu, 2 Aug 2012 01:49:50 +0000 Subject: [PATCH] 3357. [port] Add support for libxml2-2.8.x [RT #30440] --- CHANGES | 2 ++ configure | 2 +- configure.in | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 10413c3e47..2f2ea3d6b6 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 da1d91757d..7303c23345 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 42a6a7f685..2b857bd4dc 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` ;;