summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-02-18 12:49:57 +1100
committerDamien Miller <djm@mindrot.org>2001-02-18 12:49:57 +1100
commit22d5aa7553d8d88a1662e977c8346eb155a7a044 (patch)
tree75287d5b8008a1520e407bd6e0725aaacbc196cf /configure.in
parent99e924357eaf5a3f63028d741071370e22746e9c (diff)
- (djm) Swapped tests for no_libsocket and no_libnsl in configure.in.
Patch from Marek Michalkiewicz <marekm@amelek.gda.pl>
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 2104329c..3a910f1d 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.243 2001/02/16 01:12:41 djm Exp $
+# $Id: configure.in,v 1.244 2001/02/18 01:49:57 djm Exp $
AC_INIT(ssh.c)
@@ -317,10 +317,10 @@ AC_ARG_WITH(pcre,
)
# Checks for libraries.
-if test -z "$no_libsocket" ; then
+if test -z "$no_libnsl" ; then
AC_CHECK_LIB(nsl, yp_match, , )
fi
-if test -z "$no_libnsl" ; then
+if test -z "$no_libsocket" ; then
AC_CHECK_LIB(socket, main, , )
fi