--- gvpe/config.h.in 2003/10/16 21:12:43 1.2 +++ gvpe/config.h.in 2005/03/18 02:32:20 1.10 @@ -27,6 +27,9 @@ /* Select the digest algorithm to use. */ #undef ENABLE_DIGEST +/* DNS tunnel protocol support. */ +#undef ENABLE_DNS + /* http proxy connect support. */ #undef ENABLE_HTTP_PROXY @@ -37,6 +40,9 @@ language is requested. */ #undef ENABLE_NLS +/* ROHC support */ +#undef ENABLE_ROHC + /* TCP protocol support. */ #undef ENABLE_TCP @@ -53,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 @@ -87,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 @@ -157,9 +169,6 @@ /* Define to 1 if you have the header file. */ #undef HAVE_OPENSSL_SHA_H -/* Define to 1 if you have the `poll' function. */ -#undef HAVE_POLL - /* Define to 1 if you have the `putenv' function. */ #undef HAVE_PUTENV @@ -220,9 +229,6 @@ /* Define to 1 if you have the header file. */ #undef HAVE_SYS_PARAM_H -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_POLL_H - /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H @@ -244,6 +250,12 @@ /* Size of HMAC in each packet in bytes. */ #undef HMACLENGTH +/* kernel interface subtype */ +#undef IFSUBTYPE + +/* kernel interface type */ +#undef IFTYPE + /* Location of if_tun.h */ #undef LINUX_IF_TUN_H @@ -277,9 +289,9 @@ /* If using the C implementation of alloca, define if you know the direction of stack growth for your system; otherwise it will be automatically deduced at run-time. - STACK_DIRECTION > 0 => grows toward higher addresses - STACK_DIRECTION < 0 => grows toward lower addresses - STACK_DIRECTION = 0 => direction of growth unknown */ + STACK_DIRECTION > 0 => grows toward higher addresses + STACK_DIRECTION < 0 => grows toward lower addresses + STACK_DIRECTION = 0 => direction of growth unknown */ #undef STACK_DIRECTION /* Define to 1 if you have the ANSI C header files. */ @@ -297,9 +309,6 @@ /* Enable GNU extenstions */ #undef _GNU_SOURCE -/* Enable BSD extensions */ -#undef __USE_BSD - /* Define to empty if `const' does not conform to ANSI C. */ #undef const @@ -310,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