summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>1996-08-21 03:32:01 +0000
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1996-08-21 03:32:01 +0000
commit439a7939a171c59538e3fbac0387062dadd5d487 (patch)
tree3a19b342275f2bb8a2b1cd33c9a9a4e61a794446
parent2a05f2cbd208dea5bf9f86a3602fcebad4f8a4d9 (diff)
downloadperl-439a7939a171c59538e3fbac0387062dadd5d487.tar.gz
perl 5.003_03: hints/dynixptx.sh
Fix typo in comment. Configure will now automatically detect shared libperl stuff.
-rw-r--r--hints/dynixptx.sh24
1 files changed, 1 insertions, 23 deletions
diff --git a/hints/dynixptx.sh b/hints/dynixptx.sh
index d44f6b82cd..55824f6013 100644
--- a/hints/dynixptx.sh
+++ b/hints/dynixptx.sh
@@ -8,32 +8,10 @@ lddlflags='-G'
# Remove inet to avoid this error in Configure, which causes Configure
# to be unable to figure out return types:
# dynamic linker: ./ssize: can't find libinet.so,
-# link with -lsocket instead of -l inet
+# link with -lsocket instead of -linet
libswanted=`echo $libswanted | sed -e 's/ inet / /'`
# Configure defaults to usenm='y', which doesn't work very well
usenm='n'
-# The Perl library has to be built as a shared library so that dynamic
-# loading will work (otherwise code loaded with dlopen() won't be able
-# to reference symbols in the main part of perl). Note that since
-# Configure doesn't normally prompt about $d_shrplib this will cause a
-# `Whoa there!'. This is normal, just keep the recommended value. A
-# consequence of all this is that you've got to include the source
-# directory in your LD_LIBRARY_PATH when you're building and testing
-# perl.
-d_shrplib=define
-
-cat <<'EOM' >&4
-
-If you get a 'Whoa there!' with regard to d_shrplib, you can ignore
-it, and just keep the recommended value.
-
-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