Changeset 1845 for branches/3.0/configure.in
- Timestamp:
- 04/26/07 19:48:10 (21 months ago)
- Files:
-
- 1 modified
-
branches/3.0/configure.in (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0/configure.in
r1824 r1845 11 11 dnl Set version info here! 12 12 MAJOR_VERSION=3 13 MINOR_VERSION= 013 MINOR_VERSION=1 14 14 MICRO_VERSION=0 15 15 TCPREPLAY_VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION … … 983 983 dnl No 'make test' when cross compile 984 984 985 AC_MSG_CHECKING( for 'make test' profile)985 AC_MSG_CHECKING(for 'make test' profile) 986 986 if test "$host" != "$build" ; then 987 987 AC_MSG_WARN(Unable to do tests when cross-compiling) … … 995 995 AC_MSG_RESULT([Using --with-testnic=$withval])], 996 996 [ 997 998 dnl There's a bug in OS X which causes pcap_findalldevs() to make the wifi NIC to disassociate 999 dnl so under OSX we disable the interface list feature 1000 disable_pcap_findalldevs=no 1001 1002 997 1003 dnl these need to be dynamic based on OS 998 1004 case $host in … … 1018 1024 nic1=en0 1019 1025 nic2=en0 1026 disable_pcap_findalldevs=yes 1020 1027 AC_MSG_RESULT(Apple OS X) 1021 1028 ;; … … 1049 1056 AC_SUBST(nic1) 1050 1057 AC_SUBST(nic2) 1058 1059 1060 AC_MSG_CHECKING([if it's ok to use pcap_findalldevs()]) 1061 if test x$disable_pcap_findalldevs = xno ; then 1062 AC_DEFINE([ENABLE_PCAP_FINDALLDEVS], [1], [Enable use of pcap_findalldevs()]) 1063 AC_MSG_RESULT(yes) 1064 else 1065 AC_MSG_RESULT(no) 1066 fi 1051 1067 1052 1068 LIBOPTS_CHECK … … 1070 1086 AC_MSG_WARN([OS X <= 10.4.9 has a serious problem. Please see: http://tcpreplay.synfin.net/trac/ticket/142]) 1071 1087 ;; 1088 1089 *-*-cygwin) 1090 AC_MSG_WARN([Windows/Cygwin support is still somewhat experimental. Please report any bugs!]) 1091 ;; 1072 1092 esac
