From: Todd C. Miller Date: Mon, 11 Mar 1996 19:04:24 +0000 (+0000) Subject: now looks for skey in /usr/lib and doesn't require libskey to be X-Git-Tag: SUDO_1_5_0~252 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8ee0906f24c1ee13f76de9c8bd43d6b92aa226e5;p=sudo now looks for skey in /usr/lib and doesn't require libskey to be in /usr/local/lib just because skey.h is (for my netbsd box :-) --- diff --git a/configure.in b/configure.in index dcb0be309..75ff6c53d 100644 --- a/configure.in +++ b/configure.in @@ -496,7 +496,9 @@ dnl extra Skey lib and includes dnl if test -n "$SKEY" ; then SUDO_LIBS="${SUDO_LIBS} -lskey" - if test -f /usr/local/include/skey.h -a -f /usr/local/lib/libskey.a; then + if test -f /usr/include/skey.h -a -f /usr/lib/libskey.a; then + : + elif test -f /usr/local/include/skey.h; then CPPFLAGS="${CPPFLAGS} -I/usr/local/include" SUDO_LDFLAGS="${SUDO_LDFLAGS} -L/usr/local/lib" elif test -n "$CSOPS" -a -f /tools/cs/skey/include/skey.h -a -f /tools/cs/skey/lib/libskey.a; then