summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2002-02-15 17:42:44 +0000
committerBruno Haible <bruno@clisp.org>2009-06-22 01:23:09 +0200
commit27fc2e11e418c1e4aebd1e52908d1d6bbe64612a (patch)
tree7dbe44f5930fd836d03b30c37e056c21c6e00883
parentb18664fbf3a20ddc8cdedfe74257271065be2ed1 (diff)
downloadexternal_gettext-27fc2e11e418c1e4aebd1e52908d1d6bbe64612a.zip
external_gettext-27fc2e11e418c1e4aebd1e52908d1d6bbe64612a.tar.gz
external_gettext-27fc2e11e418c1e4aebd1e52908d1d6bbe64612a.tar.bz2
Tweak g++ recognition on DJGPP.
-rw-r--r--ChangeLog6
-rw-r--r--configure.in2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d1e1b1e..43f6af2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-02-15 Bruno Haible <bruno@clisp.org>
+
+ * djgpp/*: Update DJGPP support.
+ From Juan Manuel Guerrero <st001906@hrz1.hrz.tu-darmstadt.de>.
+ * configure.in (CXX): Recognize 'gpp' as an alternative name for 'g++'.
+
2002-02-14 Andrew Zabolotny <zap@cobra.ru>
* os2/README.OS2: Update.
diff --git a/configure.in b/configure.in
index 4550876..8d5e246 100644
--- a/configure.in
+++ b/configure.in
@@ -129,7 +129,7 @@ CROSS_COMPILING=$cross_compiling
AC_SUBST(CROSS_COMPILING)
dnl Checks for optional programs for the tests/lang-* tests.
-AC_CHECK_PROGS(CXX, $CCC c++ g++ gcc CC cxx cc++ cl, :)
+AC_CHECK_PROGS(CXX, $CCC c++ g++ gpp gcc CC cxx cc++ cl, :)
if test "$CXX" != ":"; then
dnl Use a modified version of AC_PROG_CXX_WORKS that does not exit
dnl upon failure.