From: Bruno Haible Date: Sun, 5 Jun 2011 22:38:53 +0000 (+0200) Subject: Update after gnulib changed. X-Git-Tag: v0.18.2~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9839f1c2eecdd90b227fb58a36aecdc36c36c7dd;p=thirdparty%2Fgettext.git Update after gnulib changed. --- diff --git a/gettext-tools/ChangeLog b/gettext-tools/ChangeLog index 5ba94a700..2003338e0 100644 --- a/gettext-tools/ChangeLog +++ b/gettext-tools/ChangeLog @@ -1,3 +1,8 @@ +2011-06-03 Bruno Haible + + Update after gl_PROG_ANSI_CXX changed in gnulib. + * configure.ac: Test whether CXX is "no", not ":". + 2011-06-03 Bruno Haible Fix link error on Cygwin 1.5.x. diff --git a/gettext-tools/configure.ac b/gettext-tools/configure.ac index 845ca07da..81037b3a7 100644 --- a/gettext-tools/configure.ac +++ b/gettext-tools/configure.ac @@ -1,5 +1,5 @@ dnl Configuration for the gettext-tools directory of GNU gettext -dnl Copyright (C) 1995-1999, 2000-2010 Free Software Foundation, Inc. +dnl Copyright (C) 1995-1999, 2000-2011 Free Software Foundation, Inc. dnl dnl This program is free software: you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by @@ -461,7 +461,7 @@ if test "${enable_libasprintf+set}" = set; then else TESTLIBASPRINTF=yes fi -if test "$CXX" = ":"; then +if test "$CXX" = no; then TESTLIBASPRINTF=no fi AC_SUBST([TESTLIBASPRINTF])