summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2011-06-06 00:38:53 +0200
committerBruno Haible <bruno@clisp.org>2011-06-07 23:39:50 +0200
commit9839f1c2eecdd90b227fb58a36aecdc36c36c7dd (patch)
tree91176e5b7e45523d56efda646420bf51aabfd8f2
parent77a06c5b698ae8206014cd9ba06cbffd952b796d (diff)
downloadgettext-9839f1c2eecdd90b227fb58a36aecdc36c36c7dd.tar.gz
Update after gnulib changed.
-rw-r--r--gettext-tools/ChangeLog5
-rw-r--r--gettext-tools/configure.ac4
2 files changed, 7 insertions, 2 deletions
diff --git a/gettext-tools/ChangeLog b/gettext-tools/ChangeLog
index 5ba94a700..2003338e0 100644
--- a/gettext-tools/ChangeLog
+++ b/gettext-tools/ChangeLog
@@ -1,5 +1,10 @@
2011-06-03 Bruno Haible <bruno@clisp.org>
+ Update after gl_PROG_ANSI_CXX changed in gnulib.
+ * configure.ac: Test whether CXX is "no", not ":".
+
+2011-06-03 Bruno Haible <bruno@clisp.org>
+
Fix link error on Cygwin 1.5.x.
* woe32dll/gettextsrc-exports.c: Add color_test_mode.
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])