mirror of
https://github.com/nmap/nmap.git
synced 2025-12-24 00:19:01 +00:00
65 lines
2.2 KiB
Diff
65 lines
2.2 KiB
Diff
diff --git a/libpcap/configure.ac b/libpcap/configure.ac
|
|
index 0127f0a..4b35daa 100644
|
|
--- a/libpcap/configure.ac
|
|
+++ b/libpcap/configure.ac
|
|
@@ -743,10 +743,10 @@ linux)
|
|
# Do we have libnl?
|
|
#
|
|
AC_ARG_WITH(libnl,
|
|
- AC_HELP_STRING([--without-libnl],[disable libnl support @<:@default=yes, on Linux, if present@:>@]),
|
|
+ AC_HELP_STRING([--without-libnl],[disable libnl support @<:@default=disabled@:>@]),
|
|
with_libnl=$withval,with_libnl=if_available)
|
|
|
|
- if test x$with_libnl != xno ; then
|
|
+ if test x$with_libnl = xyes ; then
|
|
have_any_nl="no"
|
|
|
|
incdir=-I/usr/include/libnl3
|
|
@@ -1814,8 +1814,8 @@ solaris*)
|
|
esac
|
|
|
|
AC_ARG_ENABLE(shared,
|
|
-AC_HELP_STRING([--enable-shared],[build shared libraries @<:@default=yes, if support available@:>@]))
|
|
-test "x$enable_shared" = "xno" && DYEXT="none"
|
|
+AC_HELP_STRING([--enable-shared],[build shared libraries @<:@default=no@:>@]))
|
|
+test "x$enable_shared" != "xyes" && DYEXT="none"
|
|
|
|
AC_PROG_RANLIB
|
|
AC_CHECK_TOOL([AR], [ar])
|
|
@@ -1887,9 +1887,9 @@ AC_SUBST(RPCAPD_LIBS)
|
|
AC_SUBST(EXTRA_NETWORK_LIBS)
|
|
|
|
AC_ARG_ENABLE([usb],
|
|
-[AC_HELP_STRING([--enable-usb],[enable USB capture support @<:@default=yes, if support available@:>@])],
|
|
+[AC_HELP_STRING([--enable-usb],[enable USB capture support @<:@default=no@:>@])],
|
|
[],
|
|
- [enable_usb=yes])
|
|
+ [enable_usb=no])
|
|
|
|
if test "xxx_only" = yes; then
|
|
# User requested something-else-only pcap, so they don't
|
|
@@ -2035,9 +2035,9 @@ fi
|
|
|
|
|
|
AC_ARG_ENABLE([bluetooth],
|
|
-[AC_HELP_STRING([--enable-bluetooth],[enable Bluetooth support @<:@default=yes, if support available@:>@])],
|
|
+[AC_HELP_STRING([--enable-bluetooth],[enable Bluetooth support @<:@default=no@:>@])],
|
|
[],
|
|
- [enable_bluetooth=ifsupportavailable])
|
|
+ [enable_bluetooth=no])
|
|
|
|
if test "xxx_only" = yes; then
|
|
# User requested something-else-only pcap, so they don't
|
|
@@ -2120,9 +2120,9 @@ if test "x$enable_bluetooth" != "xno" ; then
|
|
fi
|
|
|
|
AC_ARG_ENABLE([dbus],
|
|
-[AC_HELP_STRING([--enable-dbus],[enable D-Bus capture support @<:@default=yes, if support available@:>@])],
|
|
+[AC_HELP_STRING([--enable-dbus],[enable D-Bus capture support @<:@default=no@:>@])],
|
|
[],
|
|
- [enable_dbus=ifavailable])
|
|
+ [enable_dbus=no])
|
|
|
|
if test "xxx_only" = yes; then
|
|
# User requested something-else-only pcap, so they don't
|