--- gvpe/config.h.in 2004/05/10 18:56:57 1.7 +++ gvpe/config.h.in 2005/12/05 12:58:05 1.11 @@ -59,6 +59,9 @@ /* Define to 1 if you have the `asprintf' function. */ #undef HAVE_ASPRINTF +/* Define to 1 if you have the header file. */ +#undef HAVE_CLOCALE + /* Cygwin */ #undef HAVE_CYGWIN @@ -93,6 +96,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H +/* Define to 1 if you have the `gmp' library (-lgmp). */ +#undef HAVE_LIBGMP + /* Define to 1 if you have the `nsl' library (-lnsl). */ #undef HAVE_LIBNSL @@ -300,7 +306,7 @@ /* Version number of package */ #undef VERSION -/* Enable GNU extenstions */ +/* Enable GNU extensions */ #undef _GNU_SOURCE /* Define to empty if `const' does not conform to ANSI C. */ @@ -313,20 +319,31 @@ #undef size_t +typedef unsigned char u8; +typedef signed char s8; + #if __CYGWIN__ -typedef unsigned char u8; typedef unsigned short u16; typedef unsigned int u32; +typedef signed short s16; +typedef signed int s32; #else #include /* old modula-2 habits */ -typedef unsigned char u8; typedef uint16_t u16; typedef uint32_t u32; +typedef int16_t s16; +typedef int32_t s32; +#endif + #endif +#if HAVE_CLOCALE +# define CLOCALE +#else +# define CLOCALE #endif