diff options
author | jlam <jlam> | 2001-06-16 20:01:23 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-06-16 20:01:23 +0000 |
commit | b58e88daccc7fd170ab00e4e71c12bfa098521bd (patch) | |
tree | d06c2c5113753eeb4e2904853d263e86d00ea447 /net/ORBit/patches | |
parent | b7686ff7521aee0b08a054f09172655e1d254446 (diff) | |
download | pkgsrc-b58e88daccc7fd170ab00e4e71c12bfa098521bd.tar.gz |
Refer to glib-config as $GLIB_CONFIG in the configure script.
Diffstat (limited to 'net/ORBit/patches')
-rw-r--r-- | net/ORBit/patches/patch-ac | 34 |
1 files changed, 23 insertions, 11 deletions
diff --git a/net/ORBit/patches/patch-ac b/net/ORBit/patches/patch-ac index fa1653b58e4..d29a89f10d1 100644 --- a/net/ORBit/patches/patch-ac +++ b/net/ORBit/patches/patch-ac @@ -1,15 +1,27 @@ -$NetBSD: patch-ac,v 1.7 2001/03/13 08:08:33 skrll Exp $ +$NetBSD: patch-ac,v 1.8 2001/06/16 20:01:23 jlam 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 +--- configure.orig Sun May 13 03:12:36 2001 ++++ configure Sat Jun 16 00:30:29 2001 +@@ -2151,9 +2151,9 @@ + rm -f conf.glibtest + + +-GMODULE_CFLAGS=`glib-config --cflags gmodule` ++GMODULE_CFLAGS=`$GLIB_CONFIG --cflags gmodule` + +-GMODULE_LIBS=`glib-config --libs gmodule` ++GMODULE_LIBS=`$GLIB_CONFIG --libs gmodule` + + + for ac_prog in 'bison -y' byacc +@@ -3451,6 +3451,10 @@ + 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 + 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 ++ elif test -f $THEFILE/libwrap.so.*.*; then + LIB_WRAP=-lwrap + echo "Found $THEFILE/libwrap.so" 1>&5 + break |