]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Avoid warning with AIX 4 JDK 1.1.8.
authorBruno Haible <bruno@clisp.org>
Fri, 21 Jul 2006 11:32:01 +0000 (11:32 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:13:33 +0000 (12:13 +0200)
gettext-tools/m4/ChangeLog
gettext-tools/m4/javacomp.m4

index 0a6c99999c6d6445d843bb4144de72418f75606a..6e3d58847603298c1773482a4343deef8ad98feb 100644 (file)
@@ -2,6 +2,10 @@
 
        * gettext-0.15 released.
 
+2006-07-21  Bruno Haible  <bruno@clisp.org>
+
+       * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to "1.1".
+
 2006-07-19  Bruno Haible  <bruno@clisp.org>
 
        * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume that
index 4e4eae06965a3b8541898ed5bb22881542e3d187..bdb28b98b26b7adc4589773c73ed45c7e6dc2d4a 100644 (file)
@@ -1,4 +1,4 @@
-# javacomp.m4 serial 7 (gettext-0.15)
+# javacomp.m4 serial 8 (gettext-0.15)
 dnl Copyright (C) 2001-2003, 2006 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -97,6 +97,9 @@ changequote([,])dnl
        }`
        case "$target_version" in
          1.1 | 1.2 | 1.3 | 1.4 | 1.5 | 1.6) ;;
+         null)
+           dnl JDK 1.1.8 on AIX returns null.
+           target_version=1.1 ;;
          *) AC_MSG_WARN([unknown target-version $target_version, please update gt_@&t@JAVACOMP macro])
             target_version=1.1 ;;
        esac