aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog4
-rw-r--r--include/types.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 464704e18..aa6971a2b 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2000-03-14 14:03:43 Werner Koch ([email protected])
+
+ * types.h (HAVE_U64_TYPEDEF): Defined depending on configure test.
+
Thu Jan 13 19:31:58 CET 2000 Werner Koch <[email protected]>
* types.h (HAVE_U64_TYPEDEF): Add a test for _LONGLONG which fixes
diff --git a/include/types.h b/include/types.h
index bf98840b2..a91e89a50 100644
--- a/include/types.h
+++ b/include/types.h
@@ -96,7 +96,7 @@
#elif SIZEOF_UNSIGNED_LONG == 8
typedef unsigned long u64;
#define HAVE_U64_TYPEDEF
- #elif __GNUC__ >= 2 || defined(__SUNPRO_C) || defined(_LONGLONG)
+ #elif SIZEOF_UNSIGNED_LONG_LONG == 8
typedef unsigned long long u64;
#define HAVE_U64_TYPEDEF
#endif