mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
5211b46baf
Apply patch to work with Perl5 support (needed especically if perl5 was installed as a package).
21 lines
825 B
Plaintext
21 lines
825 B
Plaintext
--- configure.orig Thu Sep 25 15:30:18 1997
|
|
+++ configure Sun Oct 19 22:53:37 1997
|
|
@@ -951,7 +951,7 @@
|
|
PERL_CFLAGS="$perlcppflags"
|
|
fi
|
|
perllibs=`cd $srcdir;$vi_cv_path_perl -MExtUtils::Embed \
|
|
- -e 'ldopts' | sed '/Warning/d'`
|
|
+ -e 'ldopts' | sed '/Warning/d' | sed '/Note (probably harmless)/d'`
|
|
if test "X$perllibs" != "X"; then
|
|
LIBS="$perllibs $LIBS"
|
|
fi
|
|
@@ -2175,7 +2175,7 @@
|
|
echo "configure:2176: checking for location of Motif GUI libs" >&5
|
|
GUI_LIB_LOC=
|
|
for try in $gui_libs; do
|
|
- if test -f "$try/libXm.a" -o -f "$try/libXm.so" -o -f "$try/libXm.sl"; then
|
|
+ if test -f "$try/libXm.a" -o -f "$try/libXm.so.0.1" -o -f "$try/libXm.sl"; then
|
|
GUI_LIB_LOC=$try
|
|
if test "`(uname) 2>/dev/null`" = SunOS &&
|
|
uname -r | grep '^5' >/dev/null; then
|