summaryrefslogtreecommitdiff
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 2104329c5..3a910f1d3 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
1# $Id: configure.in,v 1.243 2001/02/16 01:12:41 djm Exp $ 1# $Id: configure.in,v 1.244 2001/02/18 01:49:57 djm Exp $
2 2
3AC_INIT(ssh.c) 3AC_INIT(ssh.c)
4 4
@@ -317,10 +317,10 @@ AC_ARG_WITH(pcre,
317) 317)
318 318
319# Checks for libraries. 319# Checks for libraries.
320if test -z "$no_libsocket" ; then 320if test -z "$no_libnsl" ; then
321 AC_CHECK_LIB(nsl, yp_match, , ) 321 AC_CHECK_LIB(nsl, yp_match, , )
322fi 322fi
323if test -z "$no_libnsl" ; then 323if test -z "$no_libsocket" ; then
324 AC_CHECK_LIB(socket, main, , ) 324 AC_CHECK_LIB(socket, main, , )
325fi 325fi
326 326