diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-08-20 09:51:11 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-08-20 09:51:11 +0000 |
commit | 89bd9a00b9f83629e26cc5d8dbee7cefff5b26ec (patch) | |
tree | a2b2e222381e50a01e5a1de2cceb265f95aa0319 | |
parent | 7d1c0752b5a7a2399f901d8cc6e92a4bb96a118e (diff) |
Link perl binary with shared libperl
-rw-r--r-- | gnu/usr.bin/perl/hints/openbsd.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/usr.bin/perl/hints/openbsd.sh b/gnu/usr.bin/perl/hints/openbsd.sh index 5d8ed721570..34c4c142006 100644 --- a/gnu/usr.bin/perl/hints/openbsd.sh +++ b/gnu/usr.bin/perl/hints/openbsd.sh @@ -76,6 +76,11 @@ case "$openbsd_distribution" in libpth='/usr/lib' 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 ;; esac |