summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/perl
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-11-09 20:27:55 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-11-09 20:27:55 +0000
commitc481629017a269df09c3ec95fc88edb5bdb85d04 (patch)
treee6d3da4b21f67d60207b54f233bcc93a5df9ee7f /gnu/usr.bin/perl
parent67d212fc194bbaeec6677db15e0eade9c189199a (diff)
Install a shared libperl and link against it. Put libperl in /usr/lib
where it belongs instead of in /usr/libdata/perl5/alpha-openbsd/5.00503/CORE. The shared lib version number will get cranked for each new perl release so this is safe to do.
Diffstat (limited to 'gnu/usr.bin/perl')
-rw-r--r--gnu/usr.bin/perl/hints/openbsd.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/perl/hints/openbsd.sh b/gnu/usr.bin/perl/hints/openbsd.sh
index 6b3d31e87bb..34c4c142006 100644
--- a/gnu/usr.bin/perl/hints/openbsd.sh
+++ b/gnu/usr.bin/perl/hints/openbsd.sh
@@ -77,10 +77,10 @@ case "$openbsd_distribution" in
locincpth=''
loclibpth=''
# Link perl with shared libperl
- #if [ "$usedl" = "$define" -a -r shlib_version ]; then
- # useshrplib=true
- # libperl=`. ./shlib_version; echo libperl.so.${major}.${minor}`
- #fi
+ if [ "$usedl" = "$define" -a -r shlib_version ]; then
+ useshrplib=true
+ libperl=`. ./shlib_version; echo libperl.so.${major}.${minor}`
+ fi
;;
esac