]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Upgrade from gnulib.
authorBruno Haible <bruno@clisp.org>
Fri, 30 May 2003 14:14:15 +0000 (14:14 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:10:38 +0000 (12:10 +0200)
gettext-runtime/m4/ChangeLog
gettext-runtime/m4/ulonglong.m4

index 1dc9511abec52a43d51fc7187c03064eef4f08fe..e553ded18635d6dfe2f928098baa6175491d5724 100644 (file)
@@ -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.
index c375e474c75ef3357a84dcfead448c0a5ead9dc8..1da8b809e9537b0ea8c6af8e9a5ca683ba74d34e 100644 (file)
@@ -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
 ])