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

Comparing gvpe/configure.ac (file contents):
Revision 1.35 by pcg, Sat Mar 5 19:25:21 2005 UTC vs.
Revision 1.39 by pcg, Wed Mar 23 17:03:58 2005 UTC

1dnl Process this file with autoconf to produce a configure script. 1dnl Process this file with autoconf to produce a configure script.
2 2
3AC_PREREQ(2.59) 3AC_PREREQ(2.59)
4AC_INIT 4AC_INIT
5AC_CONFIG_SRCDIR([src/vped.C]) 5AC_CONFIG_SRCDIR([src/gvpe.C])
6AC_CANONICAL_TARGET 6AC_CANONICAL_TARGET
7AM_INIT_AUTOMAKE(gvpe, 1.8) 7AM_INIT_AUTOMAKE(gvpe, 1.9)
8AC_CONFIG_HEADERS([config.h]) 8AC_CONFIG_HEADERS([config.h])
9AM_MAINTAINER_MODE 9AM_MAINTAINER_MODE
10 10
11AH_TOP([ 11AH_TOP([
12#ifndef CONFIG_H__ 12#ifndef CONFIG_H__
37typedef uint32_t u32; 37typedef uint32_t u32;
38typedef int16_t s16; 38typedef int16_t s16;
39typedef int32_t s32; 39typedef int32_t s32;
40#endif 40#endif
41 41
42#endif
43
44#if HAVE_CLOCALE
45# define CLOCALE <clocale>
46#else
47# define CLOCALE <locale.h>
42#endif 48#endif
43]) 49])
44 50
45dnl Include the macros from the m4/ directory 51dnl Include the macros from the m4/ directory
46AM_ACLOCAL_INCLUDE(m4) 52AM_ACLOCAL_INCLUDE(m4)
79 "tincd/freebsd" 85 "tincd/freebsd"
80 "tincd/openbsd" 86 "tincd/openbsd"
81 "tincd/darwin" 87 "tincd/darwin"
82 "native/cygwin"; 88 "native/cygwin";
83 Untested combinations are: 89 Untested combinations are:
90 "native/darwin"
84 "tincd/netbsd" 91 "tincd/netbsd"
85 "tincd/solaris" 92 "tincd/solaris"
86 "tincd/mingw"; 93 "tincd/mingw"
94 "tincd/raw_socket"
95 "tincd/uml_socket";
87 Broken combinations are: 96 Broken combinations are:
88 "tincd/cygwin"; 97 "tincd/cygwin";
89 The default is to autodetect. 98 The default is to autodetect.
90 )], 99 )],
91 [ 100 [
108 IFTYPE=tincd 117 IFTYPE=tincd
109 IFSUBTYPE=freebsd 118 IFSUBTYPE=freebsd
110 AC_DEFINE(HAVE_FREEBSD, 1, [FreeBSD]) 119 AC_DEFINE(HAVE_FREEBSD, 1, [FreeBSD])
111 ;; 120 ;;
112 *darwin*) 121 *darwin*)
113 IFTYPE=tincd 122 IFTYPE=native
114 IFSUBTYPE=darwin 123 IFSUBTYPE=darwin
115 AC_DEFINE(HAVE_DARWIN, 1, [Darwin (MacOS/X)]) 124 AC_DEFINE(HAVE_DARWIN, 1, [Darwin (MacOS/X)])
116 ;; 125 ;;
117 *solaris*) 126 *solaris*)
118 IFTYPE=tincd 127 IFTYPE=tincd
148AC_CACHE_SAVE 157AC_CACHE_SAVE
149 158
150dnl Checks for libraries. 159dnl Checks for libraries.
151 160
152AC_LANG(C++) 161AC_LANG(C++)
153AC_CHECK_HEADERS(ext/hash_map) 162AC_CHECK_HEADERS(ext/hash_map clocale)
154 163
155dnl Checks for header files. 164dnl Checks for header files.
156AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h malloc.h stdint.h strings.h syslog.h unistd.h \ 165AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h malloc.h stdint.h strings.h syslog.h unistd.h \
157 sys/file.h sys/ioctl.h sys/param.h sys/time.h netinet/in_systm.h sys/cygwin.h \ 166 sys/file.h sys/ioctl.h sys/param.h sys/time.h netinet/in_systm.h sys/cygwin.h \
158 sys/mman.h netinet/in.h]) 167 sys/mman.h netinet/in.h])

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines