31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
$OpenBSD: patch-configure,v 1.2 2002/02/24 22:43:59 brad Exp $
|
|
--- configure.orig Mon Jan 7 04:09:58 2002
|
|
+++ configure Sun Feb 24 16:56:17 2002
|
|
@@ -3450,7 +3450,7 @@ for I in $LDFLAGS $LIBS -L/usr/lib; do
|
|
-L*)
|
|
THEFILE="`echo $I | sed -e 's,^-L,,'`"
|
|
echo "From $I, checking in dir $THEFILE for libwrap.so" 1>&5
|
|
- if test -f $THEFILE/libwrap.so; then
|
|
+ if test -f $THEFILE/libwrap.so*; then
|
|
LIB_WRAP=-lwrap
|
|
echo "Found $THEFILE/libwrap.so" 1>&5
|
|
break
|
|
@@ -3485,7 +3485,7 @@ if test -n "$LIBWRAP_PATH"; then
|
|
fi
|
|
|
|
LIB_NSL=
|
|
-if test -n "$LIBWRAP_PATH"; then
|
|
+if test -n "$LIBWRAP_PATH" || test -n "$LIB_WRAP"; then
|
|
echo $ac_n "checking whether -lwrap requires -lnsl""... $ac_c" 1>&6
|
|
echo "configure:3491: checking whether -lwrap requires -lnsl" >&5
|
|
ORIG_LIBS="$LIBS"
|
|
@@ -3555,7 +3555,7 @@ else
|
|
HAVE_HOSTS_ACCESS_TRUE='#'
|
|
HAVE_HOSTS_ACCESS_FALSE=
|
|
fi
|
|
-if test -n "$LIBWRAP_PATH"; then
|
|
+if test -n "$LIBWRAP_PATH" || test -n "$LIB_WRAP"; then
|
|
cat >> confdefs.h <<\EOF
|
|
#define HAVE_HOSTS_ACCESS 1
|
|
EOF
|