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

Comparing gvpe/configure.ac (file contents):
Revision 1.10 by pcg, Tue Oct 14 17:24:19 2003 UTC vs.
Revision 1.18 by pcg, Thu Oct 16 20:35:14 2003 UTC

65 65
66AC_ARG_ENABLE(iftype, 66AC_ARG_ENABLE(iftype,
67 [AC_HELP_STRING(--enable-iftype[=TYPE/SUBTYPE], [ 67 [AC_HELP_STRING(--enable-iftype[=TYPE/SUBTYPE], [
68 Use kernel/net device interface TYPE/SUBTYPE. 68 Use kernel/net device interface TYPE/SUBTYPE.
69 Working combinations are: 69 Working combinations are:
70 "native/linux" "tincd/linux" "tincd/freebsd"; 70 "native/linux"
71 "tincd/linux"
72 "tincd/freebsd"
73 "tincd/openbsd"
74 "tincd/darwin"
75 "native/cygwin";
71 Untested combinations are: 76 Untested combinations are:
72 "tincd/netbsd" "tincd/darwin" "tincd/solaris" 77 "tincd/netbsd"
73 "tincd/openbsd" "tincd/cygwin"; 78 "tincd/solaris"
79 "tincd/mingw";
74 Broken combinations are: 80 Broken combinations are:
75 "native/cygwin"; 81 "tincd/cygwin";
76 The default is to autodetect. 82 The default is to autodetect.
77 ])], 83 ])],
78 [ 84 [
79 IFTYPE=`echo $enableval | sed s%/.*%%` 85 IFTYPE=`echo $enableval | sed s%/.*%%`
80 IFSUBTYPE=`echo $enableval | sed s%.*/%%` 86 IFSUBTYPE=`echo $enableval | sed s%.*/%%`
115 IFTYPE=tincd 121 IFTYPE=tincd
116 IFSUBTYPE=netbsd 122 IFSUBTYPE=netbsd
117 AC_DEFINE(HAVE_NETBSD, 1, [NetBSD]) 123 AC_DEFINE(HAVE_NETBSD, 1, [NetBSD])
118 ;; 124 ;;
119 *cygwin*) 125 *cygwin*)
120 IFTYPE=tincd 126 IFTYPE=native
121 IFSUBTYPE=cygwin 127 IFSUBTYPE=cygwin
122 AC_DEFINE(HAVE_CYGWIN, 1, [Cygwin]) 128 AC_DEFINE(HAVE_CYGWIN, 1, [Cygwin])
123 ;; 129 ;;
124 *) 130 *)
125 AC_MSG_ERROR("Unknown operating system.") 131 AC_MSG_ERROR("Unknown operating system.")
137AC_LANG(C++) 143AC_LANG(C++)
138AC_CHECK_HEADERS(ext/hash_map) 144AC_CHECK_HEADERS(ext/hash_map)
139 145
140dnl Checks for header files. 146dnl Checks for header files.
141AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h malloc.h stdint.h strings.h syslog.h unistd.h \ 147AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h malloc.h stdint.h strings.h syslog.h unistd.h \
142 sys/file.h sys/ioctl.h sys/param.h sys/time.h netinet/in_systm.h cygwin.h arpa/inet.h \ 148 sys/file.h sys/ioctl.h sys/param.h sys/time.h netinet/in_systm.h sys/cygwin.h arpa/inet.h \
143 sys/poll.h sys/mman.h netinet/in.h]) 149 sys/poll.h sys/mman.h netinet/in.h])
144AC_CHECK_HEADERS([net/ethernet.h net/if.h netinet/ip.h netinet/tcp.h netinet/in_systm.h], [], [], 150AC_CHECK_HEADERS([net/ethernet.h net/if.h netinet/ip.h netinet/tcp.h netinet/in_systm.h], [], [],
145[ 151[
146#include <sys/types.h> 152#include <sys/types.h>
147#include <sys/socket.h> 153#include <sys/socket.h>
160AC_C_CONST 166AC_C_CONST
161AC_TYPE_PID_T 167AC_TYPE_PID_T
162AC_TYPE_SIZE_T 168AC_TYPE_SIZE_T
163AC_HEADER_TIME 169AC_HEADER_TIME
164AC_STRUCT_TM 170AC_STRUCT_TM
165
166dnl argl, could somebody catapult darwin into the 21st century???
167AC_CHECK_FUNCS(poll)
168 171
169AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t, 172AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t,
170[ 173[
171 AC_TRY_COMPILE( 174 AC_TRY_COMPILE(
172 [#include <sys/types.h> 175 [#include <sys/types.h>
198 201
199AC_LANG_PUSH(C) 202AC_LANG_PUSH(C)
200 203
201AC_HEADER_STDC 204AC_HEADER_STDC
202 205
206dnl argl, could somebody catapult darwin into the 21st century???
203AC_CHECK_FUNCS(asprintf daemon get_current_dir_name putenv select strerror strsignal strtol unsetenv mlockall) 207AC_CHECK_FUNCS(asprintf daemon get_current_dir_name putenv select strerror strsignal strtol unsetenv mlockall poll)
204 208
205AC_FUNC_ALLOCA 209AC_FUNC_ALLOCA
206 210
207dnl Support for SunOS 211dnl Support for SunOS
208 212
219 223
220AC_CACHE_SAVE 224AC_CACHE_SAVE
221 225
222dnl These are defined in files in m4/ 226dnl These are defined in files in m4/
223tinc_TUNTAP 227tinc_TUNTAP
228
224tinc_OPENSSL 229tinc_OPENSSL
230if test "x$openssl_include" != x; then
231 CXXFLAGS="$CXXFLAGS -I$openssl_include"
232fi
225dnl tinc_ZLIB 233dnl tinc_ZLIB
226 234
227AC_ARG_ENABLE(rohc, 235AC_ARG_ENABLE(rohc,
228 [AC_HELP_STRING(--enable-rohc, [enable robust header compression (rfc3095).])], 236 [AC_HELP_STRING(--enable-rohc, [enable robust header compression (rfc3095).])],
229 [ 237 [
257AC_ARG_ENABLE(http-proxy, 265AC_ARG_ENABLE(http-proxy,
258 [AC_HELP_STRING(--enable-http-proxy, [enable http proxy connect support (default disabled).])], 266 [AC_HELP_STRING(--enable-http-proxy, [enable http proxy connect support (default disabled).])],
259 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.]) 267 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.])
260) 268)
261 269
262HMAC=12 dnl see also the AC_HELP_STRING 270HMAC=8 dnl see also the AC_HELP_STRING
263AC_ARG_ENABLE(hmac-length, 271AC_ARG_ENABLE(hmac-length,
264 [AC_HELP_STRING(--enable-hmac-length=BYTES, [use a hmac of length BYTES bytes (default 12). Allowed values are 4, 8, 12, 16.])], 272 [AC_HELP_STRING(--enable-hmac-length=BYTES, [use a hmac of length BYTES bytes (default 12). Allowed values are 4, 8, 12, 16.])],
265 HMAC=$enableval 273 HMAC=$enableval
266) 274)
267AC_DEFINE_UNQUOTED(HMACLENGTH, $HMAC, [Size of HMAC in each packet in bytes.]) 275AC_DEFINE_UNQUOTED(HMACLENGTH, $HMAC, [Size of HMAC in each packet in bytes.])

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines