blob: 2117756a26365e598c9305573ecc1290439d2d00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
=== modified file 'configure.in'
--- configure.in 2009-10-16 13:21:02 +0000
+++ configure.in 2009-10-16 13:30:39 +0000
@@ -279,6 +279,11 @@
LIBS="$LIBS $V_PCAPDEP"
fi
+AC_ARG_WITH(wrappers,
+ [ --with-wrappers build with libwrappers suuport],
+ with_wrappers="$withval",
+ with_wrappers="yes")
+if test "x$with_wrappers" != "xno"; then
AC_QOSIENT_TCPWRAP(V_WRAPDEP, V_INCLS)
if test ! -z "$V_WRAPDEP"; then
if test -f $V_WRAPDEP; then
@@ -302,6 +307,7 @@
AC_DEFINE(HAVE_TCP_WRAPPER)
WRAPLIBS="$V_WRAPDEP"
fi
+fi
umask 002
|