Hi,

When I borrowed the stdint.h from GNU clisp, I forgot to adjust the macro
that recognizes Cygwin. Here's the fix.


2006-05-17  Bruno Haible  <[EMAIL PROTECTED]>

        * stdint_.h: Fix recognition of Cygwin.

*** stdint_.h   3 May 2006 12:39:46 -0000       1.13
--- stdint_.h   17 May 2006 10:43:09 -0000
***************
*** 64,70 ****
       UINTPTR_MAX, PTRDIFF_MIN, PTRDIFF_MAX.  */
  # define _STDINT_H_HAVE_SYSTEM_INTTYPES
  #endif
! #if !((defined(UNIX_CYGWIN32) || defined(__linux__)) && 
defined(__BIT_TYPES_DEFINED__))
  # define _STDINT_H_NEED_SIGNED_INT_TYPES
  #endif
  
--- 64,70 ----
       UINTPTR_MAX, PTRDIFF_MIN, PTRDIFF_MAX.  */
  # define _STDINT_H_HAVE_SYSTEM_INTTYPES
  #endif
! #if !((defined(__CYGWIN__) || defined(__linux__)) && 
defined(__BIT_TYPES_DEFINED__))
  # define _STDINT_H_NEED_SIGNED_INT_TYPES
  #endif
  



Reply via email to