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

Comparing gvpe/configure.ac (file contents):
Revision 1.12 by pcg, Tue Oct 14 20:02:35 2003 UTC vs.
Revision 1.19 by pcg, Thu Oct 16 21:57:54 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.")
127 esac 133 esac
128fi 134fi
129AC_MSG_RESULT($IFTYPE/$IFSUBTYPE) 135AC_MSG_RESULT($IFTYPE/$IFSUBTYPE)
130AC_SUBST(IFTYPE,$IFTYPE) 136AC_SUBST(IFTYPE,$IFTYPE)
131AC_SUBST(IFSUBTYPE,$IFSUBTYPE) 137AC_SUBST(IFSUBTYPE,$IFSUBTYPE)
138AC_DEFINE_UNQUOTED(IFTYPE,"$IFTYPE",[kernel interface type])
139AC_DEFINE_UNQUOTED(IFSUBTYPE,"$IFSUBTYPE",[kernel interface subtype])
132 140
133AC_CACHE_SAVE 141AC_CACHE_SAVE
134 142
135dnl Checks for libraries. 143dnl Checks for libraries.
136 144
137AC_LANG(C++) 145AC_LANG(C++)
138AC_CHECK_HEADERS(ext/hash_map) 146AC_CHECK_HEADERS(ext/hash_map)
139 147
140dnl Checks for header files. 148dnl Checks for header files.
141AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h malloc.h stdint.h strings.h syslog.h unistd.h \ 149AC_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 \ 150 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]) 151 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], [], [], 152AC_CHECK_HEADERS([net/ethernet.h net/if.h netinet/ip.h netinet/tcp.h netinet/in_systm.h], [], [],
145[ 153[
146#include <sys/types.h> 154#include <sys/types.h>
147#include <sys/socket.h> 155#include <sys/socket.h>
217 225
218AC_CACHE_SAVE 226AC_CACHE_SAVE
219 227
220dnl These are defined in files in m4/ 228dnl These are defined in files in m4/
221tinc_TUNTAP 229tinc_TUNTAP
230
222tinc_OPENSSL 231tinc_OPENSSL
232if test "x$openssl_include" != x; then
223CXXFLAGS="-I$openssl_include" 233 CXXFLAGS="$CXXFLAGS -I$openssl_include"
234fi
224dnl tinc_ZLIB 235dnl tinc_ZLIB
225 236
226AC_ARG_ENABLE(rohc, 237AC_ARG_ENABLE(rohc,
227 [AC_HELP_STRING(--enable-rohc, [enable robust header compression (rfc3095).])], 238 [AC_HELP_STRING(--enable-rohc, [enable robust header compression (rfc3095).])],
228 [ 239 [
256AC_ARG_ENABLE(http-proxy, 267AC_ARG_ENABLE(http-proxy,
257 [AC_HELP_STRING(--enable-http-proxy, [enable http proxy connect support (default disabled).])], 268 [AC_HELP_STRING(--enable-http-proxy, [enable http proxy connect support (default disabled).])],
258 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.]) 269 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.])
259) 270)
260 271
261HMAC=12 dnl see also the AC_HELP_STRING 272HMAC=8 dnl see also the AC_HELP_STRING
262AC_ARG_ENABLE(hmac-length, 273AC_ARG_ENABLE(hmac-length,
263 [AC_HELP_STRING(--enable-hmac-length=BYTES, [use a hmac of length BYTES bytes (default 12). Allowed values are 4, 8, 12, 16.])], 274 [AC_HELP_STRING(--enable-hmac-length=BYTES, [use a hmac of length BYTES bytes (default 12). Allowed values are 4, 8, 12, 16.])],
264 HMAC=$enableval 275 HMAC=$enableval
265) 276)
266AC_DEFINE_UNQUOTED(HMACLENGTH, $HMAC, [Size of HMAC in each packet in bytes.]) 277AC_DEFINE_UNQUOTED(HMACLENGTH, $HMAC, [Size of HMAC in each packet in bytes.])

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines