summaryrefslogtreecommitdiffstats
path: root/gettext-runtime/m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2003-02-14 12:57:33 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:09:22 +0200
commit60cf95bcc5a086125e16377df6b2be7bbae35781 (patch)
tree975ed8b0f732075c5789a4482e84ca5158d07c7a /gettext-runtime/m4
parentd6defd33cca9acecc11a536c7c0893e08d7c344e (diff)
downloadexternal_gettext-60cf95bcc5a086125e16377df6b2be7bbae35781.zip
external_gettext-60cf95bcc5a086125e16377df6b2be7bbae35781.tar.gz
external_gettext-60cf95bcc5a086125e16377df6b2be7bbae35781.tar.bz2
Move m4/signed.m4 to gettext-runtime/m4/signed.m4.
Diffstat (limited to 'gettext-runtime/m4')
-rw-r--r--gettext-runtime/m4/signed.m419
1 files changed, 19 insertions, 0 deletions
diff --git a/gettext-runtime/m4/signed.m4 b/gettext-runtime/m4/signed.m4
new file mode 100644
index 0000000..dc1f54f
--- /dev/null
+++ b/gettext-runtime/m4/signed.m4
@@ -0,0 +1,19 @@
+# signed.m4 serial 1 (gettext-0.10.40)
+dnl Copyright (C) 2001-2002 Free Software Foundation, Inc.
+dnl This file is free software, distributed under the terms of the GNU
+dnl General Public License. As a special exception to the GNU General
+dnl Public License, this file may be distributed as part of a program
+dnl that contains a configuration script generated by Autoconf, under
+dnl the same distribution terms as the rest of that program.
+
+dnl From Bruno Haible.
+
+AC_DEFUN([bh_C_SIGNED],
+[
+ AC_CACHE_CHECK([for signed], bh_cv_c_signed,
+ [AC_TRY_COMPILE(, [signed char x;], bh_cv_c_signed=yes, bh_cv_c_signed=no)])
+ if test $bh_cv_c_signed = no; then
+ AC_DEFINE(signed, ,
+ [Define to empty if the C compiler doesn't support this keyword.])
+ fi
+])