Rename HAVE_LONGLONG_64BIT to HAVE_LONG_LONG_64BIT.
authorBruno Haible <bruno@clisp.org>
Thu, 17 Mar 2005 18:31:09 +0000 (18:31 +0000)
committerBruno Haible <bruno@clisp.org>
Thu, 17 Mar 2005 18:31:09 +0000 (18:31 +0000)
ChangeLog
lib/ChangeLog
lib/stdint_.h
m4/ChangeLog
m4/stdint.m4
modules/stdint

index 4a576c5..fc8d697 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-16  Bruno Haible  <bruno@clisp.org>
+
+       * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
+       HAVE_LONGLONG_64BIT.
+
 2005-03-04  Derek R. Price  <derek@ximbiot.com>
 
        * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
index a8058e9..5b2626b 100644 (file)
@@ -1,3 +1,7 @@
+2005-03-16  Bruno Haible  <bruno@clisp.org>
+
+       * stdint_.h: Use HAVE_LONG_LONG_64BIT instead of HAVE_LONGLONG_64BIT.
+
 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
 
        * strftime.c (my_strftime): Prepend space to format so that we can
index acd0631..67640e9 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001-2002, 2004 Free Software Foundation, Inc.
+/* Copyright (C) 2001-2002, 2004-2005 Free Software Foundation, Inc.
    Written by Bruno Haible, Sam Steingold, Peter Burwood.
    This file is part of gnulib.
 
@@ -78,7 +78,7 @@ typedef unsigned int   uint32_t;
 typedef long           int64_t;
 #endif
 typedef unsigned long  uint64_t;
-#elif @HAVE_LONGLONG_64BIT@
+#elif @HAVE_LONG_LONG_64BIT@
 #ifdef NEED_SIGNED_INT_TYPES
 typedef long long          int64_t;
 #endif
@@ -95,7 +95,7 @@ typedef int16_t  int_least16_t;
 typedef uint16_t uint_least16_t;
 typedef int32_t  int_least32_t;
 typedef uint32_t uint_least32_t;
-#if @HAVE_LONG_64BIT@ || @HAVE_LONGLONG_64BIT@
+#if @HAVE_LONG_64BIT@ || @HAVE_LONG_LONG_64BIT@
 typedef int64_t  int_least64_t;
 typedef uint64_t uint_least64_t;
 #endif
@@ -108,7 +108,7 @@ typedef int32_t  int_fast16_t;
 typedef uint32_t uint_fast16_t;
 typedef int32_t  int_fast32_t;
 typedef uint32_t uint_fast32_t;
-#if @HAVE_LONG_64BIT@ || @HAVE_LONGLONG_64BIT@
+#if @HAVE_LONG_64BIT@ || @HAVE_LONG_LONG_64BIT@
 typedef int64_t  int_fast64_t;
 typedef uint64_t uint_fast64_t;
 #endif
@@ -126,7 +126,7 @@ typedef unsigned long uintptr_t;
 
 /* 7.18.1.5. Greatest-width integer types */
 
-#if @HAVE_LONG_64BIT@ || @HAVE_LONGLONG_64BIT@
+#if @HAVE_LONG_64BIT@ || @HAVE_LONG_LONG_64BIT@
 typedef int64_t  intmax_t;
 typedef uint64_t uintmax_t;
 #else
@@ -153,7 +153,7 @@ typedef uint32_t uintmax_t;
 #define INT64_MIN   (~INT64_MIN)
 #define INT64_MAX   9223372036854775807L
 #define UINT64_MAX 18446744073709551615UL
-#elif @HAVE_LONGLONG_64BIT@
+#elif @HAVE_LONG_LONG_64BIT@
 #define INT64_MIN   (~INT64_MIN)
 #define INT64_MAX   9223372036854775807LL
 #define UINT64_MAX 18446744073709551615ULL
@@ -170,7 +170,7 @@ typedef uint32_t uintmax_t;
 #define INT_LEAST32_MIN INT32_MIN
 #define INT_LEAST32_MAX INT32_MAX
 #define UINT_LEAST32_MAX UINT32_MAX
-#if @HAVE_LONG_64BIT@ || @HAVE_LONGLONG_64BIT@
+#if @HAVE_LONG_64BIT@ || @HAVE_LONG_LONG_64BIT@
 #define INT_LEAST64_MIN INT64_MIN
 #define INT_LEAST64_MAX INT64_MAX
 #define UINT_LEAST64_MAX UINT64_MAX
@@ -187,7 +187,7 @@ typedef uint32_t uintmax_t;
 #define INT_FAST32_MIN INT32_MIN
 #define INT_FAST32_MAX INT32_MAX
 #define UINT_FAST32_MAX UINT32_MAX
-#if @HAVE_LONG_64BIT@ || @HAVE_LONGLONG_64BIT@
+#if @HAVE_LONG_64BIT@ || @HAVE_LONG_LONG_64BIT@
 #define INT_FAST64_MIN INT64_MIN
 #define INT_FAST64_MAX INT64_MAX
 #define UINT_FAST64_MAX UINT64_MAX
@@ -201,7 +201,7 @@ typedef uint32_t uintmax_t;
 
 /* 7.18.2.5. Limits of greatest-width integer types */
 
-#if @HAVE_LONG_64BIT@ || @HAVE_LONGLONG_64BIT@
+#if @HAVE_LONG_64BIT@ || @HAVE_LONG_LONG_64BIT@
 #define INTMAX_MIN INT64_MIN
 #define INTMAX_MAX INT64_MAX
 #define UINTMAX_MAX UINT64_MAX
@@ -242,7 +242,7 @@ typedef uint32_t uintmax_t;
 #if @HAVE_LONG_64BIT@
 #define INT64_C(x) x##L
 #define UINT64_C(x) x##UL
-#elif @HAVE_LONGLONG_64BIT@
+#elif @HAVE_LONG_LONG_64BIT@
 #define INT64_C(x) x##LL
 #define UINT64_C(x) x##ULL
 #endif
@@ -252,7 +252,7 @@ typedef uint32_t uintmax_t;
 #if @HAVE_LONG_64BIT@
 #define INTMAX_C(x) x##L
 #define UINTMAX_C(x) x##UL
-#elif @HAVE_LONGLONG_64BIT@
+#elif @HAVE_LONG_LONG_64BIT@
 #define INTMAX_C(x) x##LL
 #define UINTMAX_C(x) x##ULL
 #else
index cb4827d..f35eec5 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-16  Bruno Haible  <bruno@clisp.org>
+
+       * stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
+       HAVE_LONGLONG_64BIT.
+
 2005-03-14  Bruno Haible  <bruno@clisp.org>
 
        * lib-link.m4, gettext.m4, nls.m4, po.m4:
index fe8ac61..4875752 100644 (file)
@@ -1,5 +1,5 @@
-# stdint.m4 serial 3
-dnl Copyright (C) 2001-2002, 2004 Free Software Foundation, Inc.
+# stdint.m4 serial 4
+dnl Copyright (C) 2001-2002, 2004-2005 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.
@@ -47,11 +47,11 @@ typedef int array [2 * (POW63 != 0 && POW64 == 0) - 1];
 typedef int array [2 * (POW63 != 0 && POW64 == 0) - 1];
 ], , gl_cv_longlong_bitsize_64=yes, gl_cv_longlong_bitsize_64=no)])
   if test $gl_cv_longlong_bitsize_64 = yes; then
-    HAVE_LONGLONG_64BIT=1
+    HAVE_LONG_LONG_64BIT=1
   else
-    HAVE_LONGLONG_64BIT=0
+    HAVE_LONG_LONG_64BIT=0
   fi
-  AC_SUBST(HAVE_LONGLONG_64BIT)
+  AC_SUBST(HAVE_LONG_LONG_64BIT)
 
 fi
 AC_SUBST(STDINT_H)
index e919880..8441aba 100644 (file)
@@ -21,7 +21,7 @@ EXTRA_DIST += stdint_.h
 # doesn't have one that works with the given compiler.
 all-local $(lib_OBJECTS): $(STDINT_H)
 stdint.h: stdint_.h
-       sed -e 's/@''HAVE_LONG_64BIT''@/$(HAVE_LONG_64BIT)/g;s/@''HAVE_LONGLONG_64BIT@/$(HAVE_LONGLONG_64BIT)/g' < $(srcdir)/stdint_.h > $@-t
+       sed -e 's/@''HAVE_LONG_64BIT''@/$(HAVE_LONG_64BIT)/g;s/@''HAVE_LONG_LONG_64BIT@/$(HAVE_LONG_LONG_64BIT)/g' < $(srcdir)/stdint_.h > $@-t
        mv $@-t $@
 MOSTLYCLEANFILES += stdint.h stdint.h-t