diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-09 20:27:55 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-09 20:27:55 +0000 |
commit | c481629017a269df09c3ec95fc88edb5bdb85d04 (patch) | |
tree | e6d3da4b21f67d60207b54f233bcc93a5df9ee7f /gnu/usr.bin/perl | |
parent | 67d212fc194bbaeec6677db15e0eade9c189199a (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.sh | 8 |
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 |