summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-12-09 10:48:58 +1100
committerDamien Miller <djm@mindrot.org>1999-12-09 10:48:58 +1100
commitd7f6615e781fcbb1a4873e688bc6143faac54fd5 (patch)
treeefecf8696f25dcfe25bb999675f0f79a11e7c02a /configure.in
parent6646badaa6e40c45efe52d9c2e8285f8c5301f5f (diff)
- Applied patch from David Rankin <drankin@bohemians.lexington.ky.us>
to fix libwrap support on NetBSD
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index e0395528d..2e7623bb4 100644
--- a/configure.in
+++ b/configure.in
@@ -276,9 +276,10 @@ AC_ARG_WITH(tcp-wrappers,
276 [ --with-tcp-wrappers Enable tcpwrappers support], 276 [ --with-tcp-wrappers Enable tcpwrappers support],
277 [ 277 [
278 AC_DEFINE(LIBWRAP) 278 AC_DEFINE(LIBWRAP)
279 LIBS="$LIBS -lwrap" 279 LIBWRAP="-lwrap"
280 ] 280 ]
281) 281)
282AC_SUBST(LIBWRAP)
282 283
283dnl Check whether to enable MD5 passwords 284dnl Check whether to enable MD5 passwords
284AC_ARG_WITH(md5-passwords, 285AC_ARG_WITH(md5-passwords,