summaryrefslogtreecommitdiffstats
path: root/gettext-tools/m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2007-10-26 00:27:39 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:15:22 +0200
commit987286f54a7a85cf98ed53b25e4ffe9fcb61600e (patch)
tree410b55d90fbf41bc6ed761365cb7714802348931 /gettext-tools/m4
parent3193074f30ee1ef7906cdd7b69c968777d3b84c4 (diff)
downloadexternal_gettext-987286f54a7a85cf98ed53b25e4ffe9fcb61600e.zip
external_gettext-987286f54a7a85cf98ed53b25e4ffe9fcb61600e.tar.gz
external_gettext-987286f54a7a85cf98ed53b25e4ffe9fcb61600e.tar.bz2
Remove; now gnulib will contain this override.
Diffstat (limited to 'gettext-tools/m4')
-rw-r--r--gettext-tools/m4/ChangeLog5
-rw-r--r--gettext-tools/m4/Makefile.am1
-rw-r--r--gettext-tools/m4/restrict.m437
3 files changed, 5 insertions, 38 deletions
diff --git a/gettext-tools/m4/ChangeLog b/gettext-tools/m4/ChangeLog
index f8a4f6d..d952266 100644
--- a/gettext-tools/m4/ChangeLog
+++ b/gettext-tools/m4/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-25 Bruno Haible <bruno@clisp.org>
+
+ * restrict.m4: Remove file.
+ * Makefile.am (EXTRA_DIST): Remove it.
+
2007-10-17 Bruno Haible <bruno@clisp.org>
* locale-ja.m4 (gt_LOCALE_JA): On Cygwin, don't allow locale names
diff --git a/gettext-tools/m4/Makefile.am b/gettext-tools/m4/Makefile.am
index d186a33..5dcb00c 100644
--- a/gettext-tools/m4/Makefile.am
+++ b/gettext-tools/m4/Makefile.am
@@ -49,6 +49,5 @@ hostname.m4 \
libgrep.m4 \
locale-ja.m4 \
regex.m4 \
-restrict.m4 \
setlocale.m4 \
siginfo.m4
diff --git a/gettext-tools/m4/restrict.m4 b/gettext-tools/m4/restrict.m4
deleted file mode 100644
index 6e4f040..0000000
--- a/gettext-tools/m4/restrict.m4
+++ /dev/null
@@ -1,37 +0,0 @@
-# restrict.m4 serial 1 (gettext-0.16.2)
-dnl Copyright (C) 2007 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.
-
-dnl This file overrides the AC_C_RESTRICT macro from autoconf 2.60..2.61,
-dnl so that mixed use of GNU C and GNU C++ works.
-dnl This file can be removed once autoconf >= 2.62 can be assumed.
-
-AC_DEFUN([AC_C_RESTRICT],
-[AC_CACHE_CHECK([for C/C++ restrict keyword], ac_cv_c_restrict,
- [ac_cv_c_restrict=no
- # Try the official restrict keyword, then gcc's __restrict, and
- # the less common variants.
- for ac_kw in __restrict __restrict__ _Restrict restrict; do
- AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
- [[typedef int * int_ptr;
- int foo (int_ptr $ac_kw ip) {
- return ip[0];
- }]],
- [[int s[1];
- int * $ac_kw t = s;
- t[0] = 0;
- return foo(t)]])],
- [ac_cv_c_restrict=$ac_kw])
- test "$ac_cv_c_restrict" != no && break
- done
- ])
- case $ac_cv_c_restrict in
- restrict) ;;
- no) AC_DEFINE(restrict,,
- [Define to equivalent of C99 restrict keyword, or to nothing if this
- is not supported. Do not define if restrict is supported directly.]) ;;
- *) AC_DEFINE_UNQUOTED(restrict, $ac_cv_c_restrict) ;;
- esac
-])# AC_C_RESTRICT