aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@gcc.gnu.org>2000-05-24 22:45:29 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2000-05-24 22:45:29 +0000
commitcb716487211b84a157d4d070793740fca9ad8876 (patch)
treea725e2eccf826fb65d3177c48a5fac4729267ee0
parentd3a12960de8011b023940965f23916acb28dd31c (diff)
downloadgcc-cb716487211b84a157d4d070793740fca9ad8876.zip
gcc-cb716487211b84a157d4d070793740fca9ad8876.tar.gz
gcc-cb716487211b84a157d4d070793740fca9ad8876.tar.bz2
m4: Remove.
2000-05-24 Benjamin Kosnik <bkoz@purist.soma.redhat.com> * m4: Remove. * m4/lc_message.m4: Merge into acinclude.m4. * m4/mathfcts.m4: Same. * m4/stringfcts.m4: Same. * acinclude.m4: Add here. From-SVN: r34145
-rw-r--r--libstdc++-v3/m4/lc_messages.m419
-rw-r--r--libstdc++-v3/m4/mathfcts.m415
-rw-r--r--libstdc++-v3/m4/stringfcts.m415
3 files changed, 0 insertions, 49 deletions
diff --git a/libstdc++-v3/m4/lc_messages.m4 b/libstdc++-v3/m4/lc_messages.m4
deleted file mode 100644
index df4f242..0000000
--- a/libstdc++-v3/m4/lc_messages.m4
+++ /dev/null
@@ -1,19 +0,0 @@
-# Check whether LC_MESSAGES is available in <locale.h>.
-# Ulrich Drepper <drepper@cygnus.com>, 1995.
-#
-# This file file be copied and used freely without restrictions. It can
-# be used in projects which are not available under the GNU Public License
-# but which still want to provide support for the GNU gettext functionality.
-# Please note that the actual code is *not* freely available.
-
-# serial 1
-
-AC_DEFUN(AC_LC_MESSAGES,
- [if test $ac_cv_header_locale_h = yes; then
- AC_CACHE_CHECK([for LC_MESSAGES], ac_cv_val_LC_MESSAGES,
- [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
- ac_cv_val_LC_MESSAGES=yes, ac_cv_val_LC_MESSAGES=no)])
- if test $ac_cv_val_LC_MESSAGES = yes; then
- AC_DEFINE(HAVE_LC_MESSAGES)
- fi
- fi])
diff --git a/libstdc++-v3/m4/mathfcts.m4 b/libstdc++-v3/m4/mathfcts.m4
deleted file mode 100644
index bb1d23c..0000000
--- a/libstdc++-v3/m4/mathfcts.m4
+++ /dev/null
@@ -1,15 +0,0 @@
-# Check for functions in math library.
-# Ulrich Drepper <drepper@cygnus.com>, 1998.
-#
-# This file can be copied and used freely without restrictions. It can
-# be used in projects which are not available under the GNU Public License
-# but which still want to provide support for the GNU gettext functionality.
-# Please note that the actual code is *not* freely available.
-
-# serial 1
-
-dnl AC_REPLACE_MATHFUNCS(FUNCTION...)
-AC_DEFUN(AC_REPLACE_MATHFUNCS,
-[AC_CHECK_FUNCS([$1], , [LIBMATHOBJS="$LIBMATHOBJS ${ac_func}.lo"])
-AC_SUBST(LIBMATHOBJS)dnl
-])
diff --git a/libstdc++-v3/m4/stringfcts.m4 b/libstdc++-v3/m4/stringfcts.m4
deleted file mode 100644
index 70652f8..0000000
--- a/libstdc++-v3/m4/stringfcts.m4
+++ /dev/null
@@ -1,15 +0,0 @@
-# Check for string functions.
-# Ulrich Drepper <drepper@cygnus.com>, 1998.
-#
-# This file can be copied and used freely without restrictions. It can
-# be used in projects which are not available under the GNU Public License
-# but which still want to provide support for the GNU gettext functionality.
-# Please note that the actual code is *not* freely available.
-
-# serial 1
-
-dnl AC_REPLACE_STRINGFUNCS(FUNCTION...)
-AC_DEFUN(AC_REPLACE_STRINGFUNCS,
-[AC_CHECK_FUNCS([$1], , [LIBSTRINGOBJS="$LIBSTRINGOBJS ${ac_func}.lo"])
-AC_SUBST(LIBSTRINGOBJS)dnl
-])