bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

fix for stdint.h on Cygwin


From: Bruno Haible
Subject: fix for stdint.h on Cygwin
Date: Wed, 17 May 2006 12:42:58 +0200
User-agent: KMail/1.5

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  <address@hidden>

        * 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

[Prev in Thread] Current Thread [Next in Thread]