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.8 by pcg, Tue Mar 1 06:27:20 2005 UTC

24/* Enable compression support. */ 24/* Enable compression support. */
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
30/* DNS tunnel protocol support. */
31#undef ENABLE_DNS
29 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. */
308 311
309/* Define to `unsigned' if <sys/types.h> does not define. */ 312/* Define to `unsigned' if <sys/types.h> does not define. */
310#undef size_t 313#undef size_t
311 314
312 315
316typedef unsigned char u8;
317typedef signed char s8;
318
313#if __CYGWIN__ 319#if __CYGWIN__
314 320
315typedef unsigned char u8;
316typedef unsigned short u16; 321typedef unsigned short u16;
317typedef unsigned int u32; 322typedef unsigned int u32;
323typedef signed short s16;
324typedef signed int s32;
318 325
319#else 326#else
320#include <inttypes.h> 327#include <inttypes.h>
321 328
322/* old modula-2 habits */ 329/* old modula-2 habits */
323typedef unsigned char u8;
324typedef uint16_t u16; 330typedef uint16_t u16;
325typedef uint32_t u32; 331typedef uint32_t u32;
332typedef int16_t s16;
333typedef int32_t s32;
326#endif 334#endif
327 335
328#endif 336#endif
329 337

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines