summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2018-09-06 11:51:52 -0400
committerSteve Dickson <steved@redhat.com>2018-09-06 14:03:52 -0400
commit32da801cb697919f79f45695aeb568b53ad166a8 (patch)
tree22cc0c60269c7ec0635529ee17b72864132d5e30
parent86604e2bd536ea48832dd0bf3d95b15de4de2733 (diff)
downloadnfs-utils-2-3-3-rc4.tar.gz
tcp-wrappers.m4: Only look for TCP wrappers lib when requestednfs-utils-2-3-3-rc4
TCP wrappers is a pretty old and obsolete technology. The support has be terminated in current distro release, so only require the library to exist when asked for via the --with-tcp-wrappers Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--aclocal/tcp-wrappers.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal/tcp-wrappers.m4 b/aclocal/tcp-wrappers.m4
index 35ac8e0..f5de8bc 100644
--- a/aclocal/tcp-wrappers.m4
+++ b/aclocal/tcp-wrappers.m4
@@ -4,7 +4,7 @@ AC_DEFUN([AC_TCP_WRAPPERS],[
AC_ARG_WITH(tcp-wrappers,
[ --with-tcp-wrappers[[=PATH]] Enable tcpwrappers support
(optionally in PATH)],
- with_tcpw=$withval, with_tcpw=yes)
+ with_tcpw=$withval, with_tcpw=no)
if test "x$with_tcpw" != "xno" ; then
saved_LIBS="$LIBS"
saved_LDFLAGS="$LDFLAGS"