From bc207b74c5529ac7517fff31598304ae6c4c468d Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 6 Feb 1995 22:43:59 +0000 Subject: [PATCH] fixed the test for irix 5.x to skip bad libs --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index f91704824..5b3a15eaf 100644 --- a/configure.in +++ b/configure.in @@ -231,7 +231,7 @@ dnl dnl library checks dnl dnl Irix 5.2 (at least) has bugs in -lnsl and -lsocket -if test -n "$OS" -a "$OS" = "irix" -a $OSREV -ne 5 ; then +if test "$OS" != "irix" -o $OSREV -ne 5 ; then AC_CHECK_LIB(nsl) AC_CHECK_LIB(socket) fi @@ -240,7 +240,7 @@ AC_CHECK_LIB(ufc) dnl dnl OS-dependent libraries dnl -if test -n "$OS" -a "$OS" = "irix" -a $OSREV -le 4 ; then +if test "$OS" = "irix" -a $OSREV -le 4 ; then AC_IRIX_SUN fi dnl -- 2.40.0