From: Bruno Haible Date: Fri, 21 Jul 2006 11:32:01 +0000 (+0000) Subject: Avoid warning with AIX 4 JDK 1.1.8. X-Git-Tag: v0.15~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6db248f655852c4ddf8ebbbd452607a53aa02ce;p=thirdparty%2Fgettext.git Avoid warning with AIX 4 JDK 1.1.8. --- diff --git a/gettext-tools/m4/ChangeLog b/gettext-tools/m4/ChangeLog index 0a6c99999..6e3d58847 100644 --- a/gettext-tools/m4/ChangeLog +++ b/gettext-tools/m4/ChangeLog @@ -2,6 +2,10 @@ * gettext-0.15 released. +2006-07-21 Bruno Haible + + * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to "1.1". + 2006-07-19 Bruno Haible * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume that diff --git a/gettext-tools/m4/javacomp.m4 b/gettext-tools/m4/javacomp.m4 index 4e4eae069..bdb28b98b 100644 --- a/gettext-tools/m4/javacomp.m4 +++ b/gettext-tools/m4/javacomp.m4 @@ -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