Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/argus/files: argus-disable-tcp-wrappers-automagic.patch
Date: Mon, 30 Nov 2009 16:02:00
Message-Id: E1NF8hI-00047Q-PV@stork.gentoo.org
1 pva 09/11/30 16:01:56
2
3 Added: argus-disable-tcp-wrappers-automagic.patch
4 Log:
5 Version bump, fixes bug #247955 thank Diego E. 'Flameeyes' Pettenò for report.
6 (Portage version: 2.1.7.9/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 net-analyzer/argus/files/argus-disable-tcp-wrappers-automagic.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/argus/files/argus-disable-tcp-wrappers-automagic.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/argus/files/argus-disable-tcp-wrappers-automagic.patch?rev=1.1&content-type=text/plain
13
14 Index: argus-disable-tcp-wrappers-automagic.patch
15 ===================================================================
16 === modified file 'configure.in'
17 --- configure.in 2009-10-16 13:21:02 +0000
18 +++ configure.in 2009-10-16 13:30:39 +0000
19 @@ -279,6 +279,11 @@
20 LIBS="$LIBS $V_PCAPDEP"
21 fi
22
23 +AC_ARG_WITH(wrappers,
24 + [ --with-wrappers build with libwrappers suuport],
25 + with_wrappers="$withval",
26 + with_wrappers="yes")
27 +if test "x$with_wrappers" != "xno"; then
28 AC_QOSIENT_TCPWRAP(V_WRAPDEP, V_INCLS)
29 if test ! -z "$V_WRAPDEP"; then
30 if test -f $V_WRAPDEP; then
31 @@ -302,6 +307,7 @@
32 AC_DEFINE(HAVE_TCP_WRAPPER)
33 WRAPLIBS="$V_WRAPDEP"
34 fi
35 +fi
36
37 umask 002