diff options
author | Bruno Haible <bruno@clisp.org> | 2003-05-30 14:14:15 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:10:38 +0200 |
commit | a36116467f76325231c8539e226afb785ac70213 (patch) | |
tree | 2d30db9e114158d3d5f67af89e951dc6650c6a8e /gettext-runtime/m4 | |
parent | 5eaf1810f56d9cfee9c75995a3add09d75846936 (diff) | |
download | external_gettext-a36116467f76325231c8539e226afb785ac70213.zip external_gettext-a36116467f76325231c8539e226afb785ac70213.tar.gz external_gettext-a36116467f76325231c8539e226afb785ac70213.tar.bz2 |
Upgrade from gnulib.
Diffstat (limited to 'gettext-runtime/m4')
-rw-r--r-- | gettext-runtime/m4/ChangeLog | 5 | ||||
-rw-r--r-- | gettext-runtime/m4/ulonglong.m4 | 10 |
2 files changed, 11 insertions, 4 deletions
diff --git a/gettext-runtime/m4/ChangeLog b/gettext-runtime/m4/ChangeLog index 1dc9511..e553ded 100644 --- a/gettext-runtime/m4/ChangeLog +++ b/gettext-runtime/m4/ChangeLog @@ -1,3 +1,8 @@ +2003-01-11 Bruno Haible <bruno@clisp.org> + + * ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL + suffix. + 2003-05-22 Bruno Haible <bruno@clisp.org> * gettext-0.12.1 released. diff --git a/gettext-runtime/m4/ulonglong.m4 b/gettext-runtime/m4/ulonglong.m4 index c375e47..1da8b80 100644 --- a/gettext-runtime/m4/ulonglong.m4 +++ b/gettext-runtime/m4/ulonglong.m4 @@ -1,5 +1,5 @@ -# ulonglong.m4 serial 2 (fileutils-4.0.32, gettext-0.10.40) -dnl Copyright (C) 1999-2002 Free Software Foundation, Inc. +# ulonglong.m4 serial 3 +dnl Copyright (C) 1999-2003 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 @@ -8,16 +8,18 @@ dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. +# Define HAVE_UNSIGNED_LONG_LONG if 'unsigned long long' works. + AC_DEFUN([jm_AC_TYPE_UNSIGNED_LONG_LONG], [ AC_CACHE_CHECK([for unsigned long long], ac_cv_type_unsigned_long_long, - [AC_TRY_LINK([unsigned long long ull = 1; int i = 63;], + [AC_TRY_LINK([unsigned long long ull = 1ULL; int i = 63;], [unsigned long long ullmax = (unsigned long long) -1; return ull << i | ull >> i | ullmax / ull | ullmax % ull;], ac_cv_type_unsigned_long_long=yes, ac_cv_type_unsigned_long_long=no)]) if test $ac_cv_type_unsigned_long_long = yes; then AC_DEFINE(HAVE_UNSIGNED_LONG_LONG, 1, - [Define if you have the unsigned long long type.]) + [Define if you have the 'unsigned long long' type.]) fi ]) |