]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Require gawk-3.1.3 or newer.
authorBruno Haible <bruno@clisp.org>
Fri, 9 Jun 2006 20:25:39 +0000 (20:25 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:13:22 +0000 (12:13 +0200)
gettext-tools/tests/ChangeLog
gettext-tools/tests/lang-gawk

index 7976eb81bca9aeb0f6acf4c8d7a115c3655ee562..aa6b6e545c0569910a138b76e0047d1396d1b602 100644 (file)
@@ -1,3 +1,7 @@
+2006-06-04  Bruno Haible  <bruno@clisp.org>
+
+       * lang-gawk: Require gawk-3.1.3 or newer.
+
 2006-06-04  Bruno Haible  <bruno@clisp.org>
 
        Provide better SKIP explanations.
index 20b236184ed773311a72bc20661e2bd6b9574042..a7bf855daa092f059600aa7628a8fb75a5f54c03 100755 (executable)
@@ -85,11 +85,11 @@ test -d fr/LC_MESSAGES || mkdir fr/LC_MESSAGES
 : ${MSGFMT=msgfmt}
 ${MSGFMT} -o fr/LC_MESSAGES/prog.mo fr.po
 
-# Test for presence of gawk version 3.1.1 or newer.
+# Test for presence of gawk version 3.1.3 or newer.
 (gawk --version) >/dev/null 2>/dev/null \
   || { echo "Skipping test: gawk not found"; rm -fr $tmpfiles; exit 77; }
 case `gawk --version 2>&1 | sed -e 's/^[^0-9]*//'` in
-  0.* | 1.* | 2.* | 3.0* | 3.1.0*)
+  0.* | 1.* | 2.* | 3.0* | 3.1.0* | 3.1.1* | 3.1.2*)
     echo "Skipping test: gawk version too old"; rm -fr $tmpfiles; exit 77;;
 esac