--- gvpe/config.h.in 2004/02/08 07:24:25 1.6 +++ gvpe/config.h.in 2007/11/10 15:16:36 1.14 @@ -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 @@ -56,6 +59,12 @@ /* Define to 1 if you have the `asprintf' function. */ #undef HAVE_ASPRINTF +/* Define to 1 if you have the header file. */ +#undef HAVE_CLOCALE + +/* Define to 1 if you have the `clock_gettime' function. */ +#undef HAVE_CLOCK_GETTIME + /* Cygwin */ #undef HAVE_CYGWIN @@ -69,6 +78,9 @@ */ #undef HAVE_DCGETTEXT +/* Define to 1 if you have the `epoll_ctl' function. */ +#undef HAVE_EPOLL_CTL + /* Define to 1 if you have the header file. */ #undef HAVE_EXT_HASH_MAP @@ -90,9 +102,18 @@ /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H +/* Define to 1 if you have the `kqueue' function. */ +#undef HAVE_KQUEUE + +/* 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 +/* Define to 1 if you have the `rt' library (-lrt). */ +#undef HAVE_LIBRT + /* Define to 1 if you have the `socket' library (-lsocket). */ #undef HAVE_LIBSOCKET @@ -208,6 +229,12 @@ /* Define to 1 if you have the header file. */ #undef HAVE_SYS_CYGWIN_H +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_EPOLL_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_EVENT_H + /* Define to 1 if you have the header file. */ #undef HAVE_SYS_FILE_H @@ -220,6 +247,9 @@ /* 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_QUEUE_H + /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H @@ -279,7 +309,7 @@ /* 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. + automatically deduced at runtime. STACK_DIRECTION > 0 => grows toward higher addresses STACK_DIRECTION < 0 => grows toward lower addresses STACK_DIRECTION = 0 => direction of growth unknown */ @@ -297,7 +327,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. */ @@ -306,24 +336,35 @@ /* Define to `int' if does not define. */ #undef pid_t -/* Define to `unsigned' if does not define. */ +/* Define to `unsigned int' if does not define. */ #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