]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Net::DNS 0.78 should work when it is released as it contains:
authorMark Andrews <marka@isc.org>
Tue, 24 Jun 2014 15:01:50 +0000 (01:01 +1000)
committerMark Andrews <marka@isc.org>
Tue, 24 Jun 2014 15:03:34 +0000 (01:03 +1000)
Fix rt.cpan.org #96439

Uninitialised decoding object when printing packet

(cherry picked from commit 70ee770c69846362e1f3788377b2b7aef6083a1f)

bin/tests/system/resolver/prereq.sh
bin/tests/system/statistics/prereq.sh

index 6363fb9bb52a99355f8d8519087c50fd79a0d130..6715213e4485a932a35c194a8ba8b062bc36b89d 100644 (file)
@@ -20,11 +20,11 @@ SYSTEMTESTTOP=..
 
 if $PERL -e 'use Net::DNS;' 2>/dev/null
 then
-    if $PERL -e 'use Net::DNS; die if $Net::DNS::VERSION >= 0.76;' 2>/dev/null
+    if $PERL -e 'use Net::DNS; die if ($Net::DNS::VERSION >= 0.76 && $Net::DNS::VERSION <= 0.77);' 2>/dev/null
     then
        :
     else
-       echo "I:Net::DNS version 0.76 has a bug that causes this test to fail: please update." >&2
+       echo "I:Net::DNS version 0.76 and 0.77 have a bug that causes this test to fail: please update." >&2
        exit 1
     fi
 else
index 92e8eda8b1863568f1896bc671d258ea021ccf54..323fc42cf3374024305a60e9d0c1d8ced6fbc711 100644 (file)
 
 if $PERL -e 'use Net::DNS;' 2>/dev/null
 then
-    if $PERL -e 'use Net::DNS; die if $Net::DNS::VERSION >= 0.76;' 2>/dev/null
+    if $PERL -e 'use Net::DNS; die if ($Net::DNS::VERSION >= 0.76 && $Net::DNS::VERSION <= 0.77);' 2>/dev/null
     then
         :
     else
-        echo "I:Net::DNS version 0.76 has a bug that causes this test to fail: please update." >&2
+        echo "I:Net::DNS version 0.76 and 0.77 have a bug that causes this test to fail: please update." >&2
         exit 1
     fi
 else