Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / lang / guile / patches / patch-ag
blob10cd90a1d4de72c9c2d204f93e8152c8cb39f250
1 $NetBSD$
3 solaris-2.9 does not have stdint.h but does have inttypes.h
5 --- libguile/c-tokenize.c.orig  2007-06-13 18:00:56.000000000 -0400
6 +++ libguile/c-tokenize.c
7 @@ -39,7 +39,12 @@
8  #define __STDC_LIMIT_MACROS 1
9  #endif
11 +#ifdef HAVE_STDINT_H
12 +#include <stdint.h> /* May break IA64 test-noansi-r */
13 +#else
14  #include <inttypes.h>
15 +#endif
17  typedef int8_t flex_int8_t;
18  typedef uint8_t flex_uint8_t;
19  typedef int16_t flex_int16_t;