ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure.ac
(Generate patch)

Comparing gvpe/configure.ac (file contents):
Revision 1.31 by pcg, Fri Jun 11 15:56:10 2004 UTC vs.
Revision 1.34 by pcg, Fri Mar 4 03:43:09 2005 UTC

17#endif 17#endif
18 18
19]) 19])
20 20
21AH_BOTTOM([ 21AH_BOTTOM([
22typedef unsigned char u8;
23typedef signed char s8;
24
22#if __CYGWIN__ 25#if __CYGWIN__
23 26
24typedef unsigned char u8;
25typedef unsigned short u16; 27typedef unsigned short u16;
26typedef unsigned int u32; 28typedef unsigned int u32;
29typedef signed short s16;
30typedef signed int s32;
27 31
28#else 32#else
29#include <inttypes.h> 33#include <inttypes.h>
30 34
31/* old modula-2 habits */ 35/* old modula-2 habits */
32typedef unsigned char u8;
33typedef uint16_t u16; 36typedef uint16_t u16;
34typedef uint32_t u32; 37typedef uint32_t u32;
38typedef int16_t s16;
39typedef int32_t s32;
35#endif 40#endif
36 41
37#endif 42#endif
38]) 43])
39 44
261 AC_DEFINE_UNQUOTED(ENABLE_TCP, 1, [TCP protocol support.]) 266 AC_DEFINE_UNQUOTED(ENABLE_TCP, 1, [TCP protocol support.])
262) 267)
263 268
264AC_ARG_ENABLE(dns, 269AC_ARG_ENABLE(dns,
265 [AS_HELP_STRING(--enable-dns,enable dns tunnel protocol support (DOES NOT WORK).)], 270 [AS_HELP_STRING(--enable-dns,enable dns tunnel protocol support (DOES NOT WORK).)],
271 [
272 AC_CHECK_HEADER(gmp.h,,[AC_MSG_ERROR([gmp.h not found, required for --enable-dns])])
273 AC_CHECK_LIB(gmp,main,,[AC_MSG_ERROR([libgmp not found, required for --enable-dns])])
274
266 AC_DEFINE_UNQUOTED(ENABLE_DNS, 1, [DNS tunnel protocol support.]) 275 AC_DEFINE_UNQUOTED(ENABLE_DNS, 1, [DNS tunnel protocol support.])
276 ]
267) 277)
268 278
269AC_ARG_ENABLE(http-proxy, 279AC_ARG_ENABLE(http-proxy,
270 [AS_HELP_STRING(--enable-http-proxy,enable http proxy connect support (default disabled).)], 280 [AS_HELP_STRING(--enable-http-proxy,enable http proxy connect support (default disabled).)],
271 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.]) 281 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.])
380 390
381AC_SUBST(INCLUDES) 391AC_SUBST(INCLUDES)
382 392
383AC_CONFIG_FILES([Makefile po/Makefile.in 393AC_CONFIG_FILES([Makefile po/Makefile.in
384src/Makefile 394src/Makefile
385src/rohc/Makefile
386doc/Makefile 395doc/Makefile
387lib/Makefile 396lib/Makefile
388m4/Makefile 397m4/Makefile
389]) 398])
390AC_OUTPUT 399AC_OUTPUT

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines