diff options
author | Bruno Haible <bruno@clisp.org> | 2006-08-28 13:18:55 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:13:57 +0200 |
commit | 2d2d017ef3fee2881263279f0bdf0a8aeca5ceb7 (patch) | |
tree | 0050c008eaaac19d4580c7af8eeab5e377661070 /gettext-runtime/m4 | |
parent | 76442db83c25e4f529d7b8f4ae7f95bb3eb6dd8c (diff) | |
download | external_gettext-2d2d017ef3fee2881263279f0bdf0a8aeca5ceb7.zip external_gettext-2d2d017ef3fee2881263279f0bdf0a8aeca5ceb7.tar.gz external_gettext-2d2d017ef3fee2881263279f0bdf0a8aeca5ceb7.tar.bz2 |
Remove signed.m4.
Diffstat (limited to 'gettext-runtime/m4')
-rw-r--r-- | gettext-runtime/m4/ChangeLog | 5 | ||||
-rw-r--r-- | gettext-runtime/m4/gettext.m4 | 3 | ||||
-rw-r--r-- | gettext-runtime/m4/signed.m4 | 17 |
3 files changed, 6 insertions, 19 deletions
diff --git a/gettext-runtime/m4/ChangeLog b/gettext-runtime/m4/ChangeLog index 21c3e6b..f04de9d 100644 --- a/gettext-runtime/m4/ChangeLog +++ b/gettext-runtime/m4/ChangeLog @@ -1,3 +1,8 @@ +2006-08-28 Bruno Haible <bruno@clisp.org> + + * signed.m4: Remove file. + * gettext.m4 (AM_INTL_SUBDIR): Remove bh_C_SIGNED invocation. + 2006-08-22 Eric Blake <ebb9@byu.net> * stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning. diff --git a/gettext-runtime/m4/gettext.m4 b/gettext-runtime/m4/gettext.m4 index dae3d81..662796f 100644 --- a/gettext-runtime/m4/gettext.m4 +++ b/gettext-runtime/m4/gettext.m4 @@ -1,4 +1,4 @@ -# gettext.m4 serial 53 (gettext-0.15) +# gettext.m4 serial 54 (gettext-0.15.1) dnl Copyright (C) 1995-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, @@ -360,7 +360,6 @@ AC_DEFUN([AM_INTL_SUBDIR], AC_REQUIRE([AC_PROG_RANLIB])dnl AC_REQUIRE([gl_VISIBILITY])dnl AC_REQUIRE([gt_INTL_SUBDIR_CORE])dnl - AC_REQUIRE([bh_C_SIGNED])dnl AC_REQUIRE([gl_AC_TYPE_LONG_LONG])dnl AC_REQUIRE([gt_TYPE_LONGDOUBLE])dnl AC_REQUIRE([gt_TYPE_WCHAR_T])dnl diff --git a/gettext-runtime/m4/signed.m4 b/gettext-runtime/m4/signed.m4 deleted file mode 100644 index 048f593..0000000 --- a/gettext-runtime/m4/signed.m4 +++ /dev/null @@ -1,17 +0,0 @@ -# signed.m4 serial 1 (gettext-0.10.40) -dnl Copyright (C) 2001-2002 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 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 -]) |