diff options
author | skrll <skrll> | 2001-03-13 08:08:33 +0000 |
---|---|---|
committer | skrll <skrll> | 2001-03-13 08:08:33 +0000 |
commit | 6f608779b7e1fe49dd63c1ce3774bbfb3a3a4d3b (patch) | |
tree | 08ee896a100f121c5202b800e2b25c92a7800e6d /net | |
parent | 917c121534d94d2f50c1eed6f39efdc84f4e73ea (diff) | |
download | pkgsrc-6f608779b7e1fe49dd63c1ce3774bbfb3a3a4d3b.tar.gz |
Make sure the shared version of libwrap is picked up in the configure
script on a.out platforms.
This avoids using a horrible hack that the new libtool doesn't like.
Diffstat (limited to 'net')
-rw-r--r-- | net/ORBit/files/patch-sum | 3 | ||||
-rw-r--r-- | net/ORBit/patches/patch-ac | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/net/ORBit/files/patch-sum b/net/ORBit/files/patch-sum index 4dca9ebd846..e76630a9fff 100644 --- a/net/ORBit/files/patch-sum +++ b/net/ORBit/files/patch-sum @@ -1,7 +1,8 @@ -$NetBSD: patch-sum,v 1.14 2001/02/07 03:23:08 fredb Exp $ +$NetBSD: patch-sum,v 1.15 2001/03/13 08:08:33 skrll Exp $ MD5 (patch-aa) = e016a9332f6ae05fa738b983b71e450f MD5 (patch-ab) = d3874c8f8ff4709ea198e226cb978b9b +MD5 (patch-ac) = 1e10a575eed5c89014f0719c2c85df05 MD5 (patch-ad) = 7ef5c06a7b47fc4d470973d773e43a15 MD5 (patch-ae) = 3f0d1c25c1e9bce88ccce7c634133580 MD5 (patch-ag) = 50b6232e86894b88210ac478b9b03fc0 diff --git a/net/ORBit/patches/patch-ac b/net/ORBit/patches/patch-ac new file mode 100644 index 00000000000..fa1653b58e4 --- /dev/null +++ b/net/ORBit/patches/patch-ac @@ -0,0 +1,15 @@ +$NetBSD: patch-ac,v 1.7 2001/03/13 08:08:33 skrll Exp $ + +--- configure.orig Mon Mar 12 23:59:21 2001 ++++ configure +@@ -3454,6 +3454,10 @@ + LIB_WRAP=-lwrap + echo "Found $THEFILE/libwrap.so" 1>&5 + break ++ elif test -f $THEFILE/libwrap.so.*.*; then ++ LIB_WRAP=-lwrap ++ echo "Found $THEFILE/libwrap.so" 1>&5 ++ break + else + echo "From $I, checking in dir $THEFILE for libwrap.a" 1>&5 + if test -f $THEFILE/libwrap.a; then |