changeset 6790:f638a03c525c

Cygwin recognition fix.
author Bruno Haible <bruno@clisp.org>
date Wed, 17 May 2006 10:46:10 +0000
parents 662184414244
children ab801856f0f8
files lib/ChangeLog lib/stdint_.h
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,7 @@
+2006-05-17  Bruno Haible  <bruno@clisp.org>
+
+	* stdint_.h: Fix recognition of Cygwin.
+
 2006-05-11  Jim Meyering  <jim@meyering.net>
 
 	* sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From James Lemley.
--- a/lib/stdint_.h
+++ b/lib/stdint_.h
@@ -64,7 +64,7 @@
      UINTPTR_MAX, PTRDIFF_MIN, PTRDIFF_MAX.  */
 # define _STDINT_H_HAVE_SYSTEM_INTTYPES
 #endif
-#if !((defined(UNIX_CYGWIN32) || defined(__linux__)) && defined(__BIT_TYPES_DEFINED__))
+#if !((defined(__CYGWIN__) || defined(__linux__)) && defined(__BIT_TYPES_DEFINED__))
 # define _STDINT_H_NEED_SIGNED_INT_TYPES
 #endif