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.3 by pcg, Thu Oct 16 21:57:54 2003 UTC vs.
Revision 1.8 by pcg, Tue Mar 1 06:27:20 2005 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
35 38
36/* Define to 1 if translation of program messages to the user's native 39/* Define to 1 if translation of program messages to the user's native
37 language is requested. */ 40 language is requested. */
38#undef ENABLE_NLS 41#undef ENABLE_NLS
39 42
43/* ROHC support */
44#undef ENABLE_ROHC
45
40/* TCP protocol support. */ 46/* TCP protocol support. */
41#undef ENABLE_TCP 47#undef ENABLE_TCP
42 48
43/* Define to 1 if you have `alloca', as a function or macro. */ 49/* Define to 1 if you have `alloca', as a function or macro. */
44#undef HAVE_ALLOCA 50#undef HAVE_ALLOCA
155#undef HAVE_OPENSSL_RSA_H 161#undef HAVE_OPENSSL_RSA_H
156 162
157/* Define to 1 if you have the <openssl/sha.h> header file. */ 163/* Define to 1 if you have the <openssl/sha.h> header file. */
158#undef HAVE_OPENSSL_SHA_H 164#undef HAVE_OPENSSL_SHA_H
159 165
160/* Define to 1 if you have the `poll' function. */
161#undef HAVE_POLL
162
163/* Define to 1 if you have the `putenv' function. */ 166/* Define to 1 if you have the `putenv' function. */
164#undef HAVE_PUTENV 167#undef HAVE_PUTENV
165 168
166/* Define to 1 if you have the `RAND_pseudo_bytes' function. */ 169/* Define to 1 if you have the `RAND_pseudo_bytes' function. */
167#undef HAVE_RAND_PSEUDO_BYTES 170#undef HAVE_RAND_PSEUDO_BYTES
217/* Define to 1 if you have the <sys/mman.h> header file. */ 220/* Define to 1 if you have the <sys/mman.h> header file. */
218#undef HAVE_SYS_MMAN_H 221#undef HAVE_SYS_MMAN_H
219 222
220/* Define to 1 if you have the <sys/param.h> header file. */ 223/* Define to 1 if you have the <sys/param.h> header file. */
221#undef HAVE_SYS_PARAM_H 224#undef HAVE_SYS_PARAM_H
222
223/* Define to 1 if you have the <sys/poll.h> header file. */
224#undef HAVE_SYS_POLL_H
225 225
226/* Define to 1 if you have the <sys/stat.h> header file. */ 226/* Define to 1 if you have the <sys/stat.h> header file. */
227#undef HAVE_SYS_STAT_H 227#undef HAVE_SYS_STAT_H
228 228
229/* Define to 1 if you have the <sys/time.h> header file. */ 229/* Define to 1 if you have the <sys/time.h> header file. */
281#undef RETSIGTYPE 281#undef RETSIGTYPE
282 282
283/* If using the C implementation of alloca, define if you know the 283/* If using the C implementation of alloca, define if you know the
284 direction of stack growth for your system; otherwise it will be 284 direction of stack growth for your system; otherwise it will be
285 automatically deduced at run-time. 285 automatically deduced at run-time.
286 STACK_DIRECTION > 0 => grows toward higher addresses 286 STACK_DIRECTION > 0 => grows toward higher addresses
287 STACK_DIRECTION < 0 => grows toward lower addresses 287 STACK_DIRECTION < 0 => grows toward lower addresses
288 STACK_DIRECTION = 0 => direction of growth unknown */ 288 STACK_DIRECTION = 0 => direction of growth unknown */
289#undef STACK_DIRECTION 289#undef STACK_DIRECTION
290 290
291/* Define to 1 if you have the ANSI C header files. */ 291/* Define to 1 if you have the ANSI C header files. */
292#undef STDC_HEADERS 292#undef STDC_HEADERS
293 293
301#undef VERSION 301#undef VERSION
302 302
303/* Enable GNU extenstions */ 303/* Enable GNU extenstions */
304#undef _GNU_SOURCE 304#undef _GNU_SOURCE
305 305
306/* Enable BSD extensions */
307#undef __USE_BSD
308
309/* Define to empty if `const' does not conform to ANSI C. */ 306/* Define to empty if `const' does not conform to ANSI C. */
310#undef const 307#undef const
311 308
312/* Define to `int' if <sys/types.h> does not define. */ 309/* Define to `int' if <sys/types.h> does not define. */
313#undef pid_t 310#undef pid_t
314 311
315/* Define to `unsigned' if <sys/types.h> does not define. */ 312/* Define to `unsigned' if <sys/types.h> does not define. */
316#undef size_t 313#undef size_t
317 314
318 315
316typedef unsigned char u8;
317typedef signed char s8;
318
319#if __CYGWIN__ 319#if __CYGWIN__
320 320
321typedef unsigned char u8;
322typedef unsigned short u16; 321typedef unsigned short u16;
323typedef unsigned int u32; 322typedef unsigned int u32;
323typedef signed short s16;
324typedef signed int s32;
324 325
325#else 326#else
326#include <inttypes.h> 327#include <inttypes.h>
327 328
328/* old modula-2 habits */ 329/* old modula-2 habits */
329typedef unsigned char u8;
330typedef uint16_t u16; 330typedef uint16_t u16;
331typedef uint32_t u32; 331typedef uint32_t u32;
332typedef int16_t s16;
333typedef int32_t s32;
332#endif 334#endif
333 335
334#endif 336#endif
335 337

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines