AS_HELP_STRING([--disable-tuntap],
- [Disable tuntap compilation]), [:],
- AC_CHECK_HEADER([linux/if_tun.h],
- [AC_DEFINE([HAVE_TUNTAP], 1, [If defined, tuntap support is compiled in])],
- # I don't use AC_CHECK_FILES because I need test -e and not test -r
- for i in /dev/tap0 /Library/Extensions/tap.kext ; do
- AC_MSG_CHECKING([for $i])
+ [Disable tuntap compilation]),
+ [if test $enableval = "yes"; then
+ AC_CHECK_HEADER([linux/if_tun.h],
+ [AC_DEFINE([HAVE_TUNTAP], 1, [If defined, tuntap support is compiled in])],
+ # I don't use AC_CHECK_FILES because I need test -e and not test -r
+ AC_MSG_CHECKING([for tap kext])
+ if test -e "@PREFIX@/Library/Extensions/tap.kext" ; then
- definename="`echo "$i" | tr "a-z*" "A-ZP" | tr -c "0-9A-Z" "_"`"
- AC_DEFINE_UNQUOTED([HAVE_$definename])
- eval HAVE_$definename=yes
+ AC_DEFINE([HAVE_TUNTAP], 1, [If defined, tuntap support is compiled in])
- if test "$HAVE__DEV_TAP0_" ; then
- AC_DEFINE([HAVE_TUNTAP], 1, [If defined, tuntap support is compiled in])
- if ! test "$HAVE__LIBRARY_EXTENSIONS_TAP_KEXT_" -o "$HAVE__SYSTEM_LIBRARY_EXTENSIONS_TAP_KEXT_" ; then
- AC_MSG_WARN([/dev/tap0 exists, but the kext cannot be found. Let's hope your
-configuration does work...])
- AC_MSG_WARN([You do not have tuntap support. You can get it here:
-http://tuntaposx.sourceforge.net/])
- AC_CHECK_HEADER([net/if_tun.h],
- [AC_DEFINE([HAVE_TUNTAP], 1, [If defined, tuntap support is compiled in])],