summaryrefslogtreecommitdiff
path: root/hints/esix4.sh
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafcol.lafayette.edu>1995-01-18 02:27:49 +0000
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1995-01-18 02:27:49 +0000
commitf4cb4c40de81ad9c5a8e775c2298ec5a52130124 (patch)
treebad0204337c331cde841254c428d1a6ebee231a2 /hints/esix4.sh
parent3edbfbe5ecbb7e6fb99acc874379580a458f3cff (diff)
downloadperl-f4cb4c40de81ad9c5a8e775c2298ec5a52130124.tar.gz
perl 5.000d : [hint file updates]
This patch consolidates most of the hint file updates I've been collecting since perl5.000's release. Some of the updates don't make any sense until you also apply the Configure patches in patch.0g. (A few late arrivals are also in patch.0g.)
Diffstat (limited to 'hints/esix4.sh')
-rw-r--r--hints/esix4.sh18
1 files changed, 10 insertions, 8 deletions
diff --git a/hints/esix4.sh b/hints/esix4.sh
index 6d8f266fd7..c8dec8a8b8 100644
--- a/hints/esix4.sh
+++ b/hints/esix4.sh
@@ -6,7 +6,6 @@
case "$cc" in
'') cc='/bin/cc'
test -f $cc || cc='/usr/ccs/bin/cc'
- cccdlflags='-Kpic'
;;
esac
ldflags='-L/usr/ccs/lib -L/usr/ucblib'
@@ -15,7 +14,6 @@ ccflags='-I/usr/include -I/usr/ucbinclude'
libswanted=`echo " $libswanted " | sed -e 's/ malloc / /' `
d_index='undef'
d_suidsafe=define
-lddlflags="-G $ldflags"
usevfork='false'
if test "$osvers" = "3.0"; then
d_gconvert='undef'
@@ -31,9 +29,13 @@ EOM
fi
rm -f /tmp/esix$$
fi
-# dlopen routines exist but they don't work with perl.
-# The case statement allows experimenters to override hint with
-# Configure -D usedl
-case "$usedl" in
-'') usedl="$undef" ;;
-esac
+
+cat <<'EOM'
+
+If you wish to use dynamic linking, you must use
+ LD_LIBRARY_PATH=`pwd`; export LD_LIBRARY_PATH
+or
+ setenv LD_LIBRARY_PATH `pwd`
+before running make.
+
+EOM