ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/config.h.in
(Generate patch)

Comparing gvpe/config.h.in (file contents):
Revision 1.7 by pcg, Mon May 10 18:56:57 2004 UTC vs.
Revision 1.11 by pcg, Mon Dec 5 12:58:05 2005 UTC

57#undef HAVE_ARPA_INET_H 57#undef HAVE_ARPA_INET_H
58 58
59/* Define to 1 if you have the `asprintf' function. */ 59/* Define to 1 if you have the `asprintf' function. */
60#undef HAVE_ASPRINTF 60#undef HAVE_ASPRINTF
61 61
62/* Define to 1 if you have the <clocale> header file. */
63#undef HAVE_CLOCALE
64
62/* Cygwin */ 65/* Cygwin */
63#undef HAVE_CYGWIN 66#undef HAVE_CYGWIN
64 67
65/* Define to 1 if you have the `daemon' function. */ 68/* Define to 1 if you have the `daemon' function. */
66#undef HAVE_DAEMON 69#undef HAVE_DAEMON
90/* Define if you have the iconv() function. */ 93/* Define if you have the iconv() function. */
91#undef HAVE_ICONV 94#undef HAVE_ICONV
92 95
93/* Define to 1 if you have the <inttypes.h> header file. */ 96/* Define to 1 if you have the <inttypes.h> header file. */
94#undef HAVE_INTTYPES_H 97#undef HAVE_INTTYPES_H
98
99/* Define to 1 if you have the `gmp' library (-lgmp). */
100#undef HAVE_LIBGMP
95 101
96/* Define to 1 if you have the `nsl' library (-lnsl). */ 102/* Define to 1 if you have the `nsl' library (-lnsl). */
97#undef HAVE_LIBNSL 103#undef HAVE_LIBNSL
98 104
99/* Define to 1 if you have the `socket' library (-lsocket). */ 105/* Define to 1 if you have the `socket' library (-lsocket). */
298#undef TM_IN_SYS_TIME 304#undef TM_IN_SYS_TIME
299 305
300/* Version number of package */ 306/* Version number of package */
301#undef VERSION 307#undef VERSION
302 308
303/* Enable GNU extenstions */ 309/* Enable GNU extensions */
304#undef _GNU_SOURCE 310#undef _GNU_SOURCE
305 311
306/* Define to empty if `const' does not conform to ANSI C. */ 312/* Define to empty if `const' does not conform to ANSI C. */
307#undef const 313#undef const
308 314
311 317
312/* Define to `unsigned' if <sys/types.h> does not define. */ 318/* Define to `unsigned' if <sys/types.h> does not define. */
313#undef size_t 319#undef size_t
314 320
315 321
322typedef unsigned char u8;
323typedef signed char s8;
324
316#if __CYGWIN__ 325#if __CYGWIN__
317 326
318typedef unsigned char u8;
319typedef unsigned short u16; 327typedef unsigned short u16;
320typedef unsigned int u32; 328typedef unsigned int u32;
329typedef signed short s16;
330typedef signed int s32;
321 331
322#else 332#else
323#include <inttypes.h> 333#include <inttypes.h>
324 334
325/* old modula-2 habits */ 335/* old modula-2 habits */
326typedef unsigned char u8;
327typedef uint16_t u16; 336typedef uint16_t u16;
328typedef uint32_t u32; 337typedef uint32_t u32;
338typedef int16_t s16;
339typedef int32_t s32;
329#endif 340#endif
330 341
331#endif 342#endif
332 343
344#if HAVE_CLOCALE
345# define CLOCALE <clocale>
346#else
347# define CLOCALE <locale.h>
348#endif
349

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines