summaryrefslogtreecommitdiffstats
path: root/gnulib-local/m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2006-12-22 12:52:14 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:14:33 +0200
commit5ed4ee7734bf36f0cdf1dbfbca7ec105c274164b (patch)
treee6fa29d5943880585e26ea933e0b144a7e6d6198 /gnulib-local/m4
parent9801c6a83c7807d37f99d83d9f2e11fd1604a354 (diff)
downloadexternal_gettext-5ed4ee7734bf36f0cdf1dbfbca7ec105c274164b.zip
external_gettext-5ed4ee7734bf36f0cdf1dbfbca7ec105c274164b.tar.gz
external_gettext-5ed4ee7734bf36f0cdf1dbfbca7ec105c274164b.tar.bz2
Move the 'no-c++' module to gnulib.
Diffstat (limited to 'gnulib-local/m4')
-rw-r--r--gnulib-local/m4/no-c++.m422
1 files changed, 0 insertions, 22 deletions
diff --git a/gnulib-local/m4/no-c++.m4 b/gnulib-local/m4/no-c++.m4
deleted file mode 100644
index e1b4ec8..0000000
--- a/gnulib-local/m4/no-c++.m4
+++ /dev/null
@@ -1,22 +0,0 @@
-# no-c++.m4 serial 1 (gettext-0.16.2)
-dnl Copyright (C) 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,
-dnl with or without modifications, as long as this notice is preserved.
-
-# Support for C source files that cannot be compiled by a C++ compiler.
-# Set NO_CXX to the C++ compiler flags needed to request C mode instead of
-# C++ mode.
-# So far only g++ is supported.
-
-AC_DEFUN([gt_NO_CXX],
-[
- NO_CXX=
- AC_EGREP_CPP([Is g++], [
-#if defined __GNUC__ && defined __cplusplus
- Is g++
-#endif
- ],
- [NO_CXX="-x c"])
- AC_SUBST([NO_CXX])
-])