diff options
author | Bruno Haible <bruno@clisp.org> | 2007-04-06 14:39:09 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:14:45 +0200 |
commit | 5c909be06ec566a4eab43e378534353453fc5f8e (patch) | |
tree | 833df78da0a91ad061787d2b007d5c196fe0951d | |
parent | b7c05c4e47dca877582e7825941c8d36f175c3e5 (diff) | |
download | external_gettext-5c909be06ec566a4eab43e378534353453fc5f8e.zip external_gettext-5c909be06ec566a4eab43e378534353453fc5f8e.tar.gz external_gettext-5c909be06ec566a4eab43e378534353453fc5f8e.tar.bz2 |
Assume the 'long double' type.
-rw-r--r-- | gettext-runtime/m4/ChangeLog | 6 | ||||
-rw-r--r-- | gettext-runtime/m4/Makefile.am | 1 | ||||
-rw-r--r-- | gettext-runtime/m4/intl.m4 | 5 | ||||
-rw-r--r-- | gettext-runtime/m4/longdouble.m4 | 31 |
4 files changed, 8 insertions, 35 deletions
diff --git a/gettext-runtime/m4/ChangeLog b/gettext-runtime/m4/ChangeLog index de1fd7e..83d2dbe 100644 --- a/gettext-runtime/m4/ChangeLog +++ b/gettext-runtime/m4/ChangeLog @@ -1,3 +1,9 @@ +2007-04-06 Bruno Haible <bruno@clisp.org> + + Assume the 'long double' type. + * longdouble.m4: Remove file. + * Makefile.am (EXTRA_DIST): Remove it. + 2007-03-04 Bruno Haible <bruno@clisp.org> * printf-posix.m4 (gt_PRINTF_POSIX): Treat BeOS like NetBSD and Woe32 diff --git a/gettext-runtime/m4/Makefile.am b/gettext-runtime/m4/Makefile.am index d38f8e2..1a16ff6 100644 --- a/gettext-runtime/m4/Makefile.am +++ b/gettext-runtime/m4/Makefile.am @@ -17,7 +17,6 @@ inttypes-pri.m4 \ inttypes_h.m4 \ lcmessage.m4 \ lock.m4 \ -longdouble.m4 \ longlong.m4 \ nls.m4 \ po.m4 \ diff --git a/gettext-runtime/m4/intl.m4 b/gettext-runtime/m4/intl.m4 index dcefb11..e44fe21 100644 --- a/gettext-runtime/m4/intl.m4 +++ b/gettext-runtime/m4/intl.m4 @@ -1,5 +1,5 @@ -# intl.m4 serial 3 (gettext-0.16) -dnl Copyright (C) 1995-2006 Free Software Foundation, Inc. +# intl.m4 serial 4 (gettext-0.16.2) +dnl Copyright (C) 1995-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. @@ -33,7 +33,6 @@ AC_DEFUN([AM_INTL_SUBDIR], AC_REQUIRE([gl_VISIBILITY])dnl AC_REQUIRE([gt_INTL_SUBDIR_CORE])dnl AC_REQUIRE([AC_TYPE_LONG_LONG_INT])dnl - AC_REQUIRE([gt_TYPE_LONGDOUBLE])dnl AC_REQUIRE([gt_TYPE_WCHAR_T])dnl AC_REQUIRE([gt_TYPE_WINT_T])dnl AC_REQUIRE([gl_AC_HEADER_INTTYPES_H]) diff --git a/gettext-runtime/m4/longdouble.m4 b/gettext-runtime/m4/longdouble.m4 deleted file mode 100644 index 25590f4..0000000 --- a/gettext-runtime/m4/longdouble.m4 +++ /dev/null @@ -1,31 +0,0 @@ -# longdouble.m4 serial 2 (gettext-0.15) -dnl Copyright (C) 2002-2003, 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. - -dnl From Bruno Haible. -dnl Test whether the compiler supports the 'long double' type. -dnl Prerequisite: AC_PROG_CC - -dnl This file is only needed in autoconf <= 2.59. Newer versions of autoconf -dnl have a macro AC_TYPE_LONG_DOUBLE with identical semantics. - -AC_DEFUN([gt_TYPE_LONGDOUBLE], -[ - AC_CACHE_CHECK([for long double], gt_cv_c_long_double, - [if test "$GCC" = yes; then - gt_cv_c_long_double=yes - else - AC_TRY_COMPILE([ - /* The Stardent Vistra knows sizeof(long double), but does not support it. */ - long double foo = 0.0; - /* On Ultrix 4.3 cc, long double is 4 and double is 8. */ - int array [2*(sizeof(long double) >= sizeof(double)) - 1]; - ], , - gt_cv_c_long_double=yes, gt_cv_c_long_double=no) - fi]) - if test $gt_cv_c_long_double = yes; then - AC_DEFINE(HAVE_LONG_DOUBLE, 1, [Define if you have the 'long double' type.]) - fi -]) |