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.6 by pcg, Sun Feb 8 07:24:25 2004 UTC vs.
Revision 1.12 by pcg, Thu Mar 29 17:35:20 2007 UTC

25#undef ENABLE_COMPRESSION 25#undef ENABLE_COMPRESSION
26 26
27/* Select the digest algorithm to use. */ 27/* Select the digest algorithm to use. */
28#undef ENABLE_DIGEST 28#undef ENABLE_DIGEST
29 29
30/* DNS tunnel protocol support. */
31#undef ENABLE_DNS
32
30/* http proxy connect support. */ 33/* http proxy connect support. */
31#undef ENABLE_HTTP_PROXY 34#undef ENABLE_HTTP_PROXY
32 35
33/* ICMP protocol support. */ 36/* ICMP protocol support. */
34#undef ENABLE_ICMP 37#undef ENABLE_ICMP
54#undef HAVE_ARPA_INET_H 57#undef HAVE_ARPA_INET_H
55 58
56/* Define to 1 if you have the `asprintf' function. */ 59/* Define to 1 if you have the `asprintf' function. */
57#undef HAVE_ASPRINTF 60#undef HAVE_ASPRINTF
58 61
62/* Define to 1 if you have the <clocale> header file. */
63#undef HAVE_CLOCALE
64
59/* Cygwin */ 65/* Cygwin */
60#undef HAVE_CYGWIN 66#undef HAVE_CYGWIN
61 67
62/* Define to 1 if you have the `daemon' function. */ 68/* Define to 1 if you have the `daemon' function. */
63#undef HAVE_DAEMON 69#undef HAVE_DAEMON
88#undef HAVE_ICONV 94#undef HAVE_ICONV
89 95
90/* Define to 1 if you have the <inttypes.h> header file. */ 96/* Define to 1 if you have the <inttypes.h> header file. */
91#undef HAVE_INTTYPES_H 97#undef HAVE_INTTYPES_H
92 98
99/* Define to 1 if you have the `gmp' library (-lgmp). */
100#undef HAVE_LIBGMP
101
93/* Define to 1 if you have the `nsl' library (-lnsl). */ 102/* Define to 1 if you have the `nsl' library (-lnsl). */
94#undef HAVE_LIBNSL 103#undef HAVE_LIBNSL
95 104
96/* Define to 1 if you have the `socket' library (-lsocket). */ 105/* Define to 1 if you have the `socket' library (-lsocket). */
97#undef HAVE_LIBSOCKET 106#undef HAVE_LIBSOCKET
277/* Define as the return type of signal handlers (`int' or `void'). */ 286/* Define as the return type of signal handlers (`int' or `void'). */
278#undef RETSIGTYPE 287#undef RETSIGTYPE
279 288
280/* If using the C implementation of alloca, define if you know the 289/* If using the C implementation of alloca, define if you know the
281 direction of stack growth for your system; otherwise it will be 290 direction of stack growth for your system; otherwise it will be
282 automatically deduced at run-time. 291 automatically deduced at runtime.
283 STACK_DIRECTION > 0 => grows toward higher addresses 292 STACK_DIRECTION > 0 => grows toward higher addresses
284 STACK_DIRECTION < 0 => grows toward lower addresses 293 STACK_DIRECTION < 0 => grows toward lower addresses
285 STACK_DIRECTION = 0 => direction of growth unknown */ 294 STACK_DIRECTION = 0 => direction of growth unknown */
286#undef STACK_DIRECTION 295#undef STACK_DIRECTION
287 296
295#undef TM_IN_SYS_TIME 304#undef TM_IN_SYS_TIME
296 305
297/* Version number of package */ 306/* Version number of package */
298#undef VERSION 307#undef VERSION
299 308
300/* Enable GNU extenstions */ 309/* Enable GNU extensions */
301#undef _GNU_SOURCE 310#undef _GNU_SOURCE
302 311
303/* Define to empty if `const' does not conform to ANSI C. */ 312/* Define to empty if `const' does not conform to ANSI C. */
304#undef const 313#undef const
305 314
306/* Define to `int' if <sys/types.h> does not define. */ 315/* Define to `int' if <sys/types.h> does not define. */
307#undef pid_t 316#undef pid_t
308 317
309/* Define to `unsigned' if <sys/types.h> does not define. */ 318/* Define to `unsigned int' if <sys/types.h> does not define. */
310#undef size_t 319#undef size_t
311 320
312 321
322typedef unsigned char u8;
323typedef signed char s8;
324
313#if __CYGWIN__ 325#if __CYGWIN__
314 326
315typedef unsigned char u8;
316typedef unsigned short u16; 327typedef unsigned short u16;
317typedef unsigned int u32; 328typedef unsigned int u32;
329typedef signed short s16;
330typedef signed int s32;
318 331
319#else 332#else
320#include <inttypes.h> 333#include <inttypes.h>
321 334
322/* old modula-2 habits */ 335/* old modula-2 habits */
323typedef unsigned char u8;
324typedef uint16_t u16; 336typedef uint16_t u16;
325typedef uint32_t u32; 337typedef uint32_t u32;
338typedef int16_t s16;
339typedef int32_t s32;
326#endif 340#endif
327 341
328#endif 342#endif
329 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