diff options
author | Steve Hay <SteveHay@planit.com> | 2007-07-03 16:13:58 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2007-07-03 16:13:58 +0000 |
commit | ca7a8ddf2fb8678942ca04fb07cdeaf677dd77e8 (patch) | |
tree | 174c39c85b6028a3c569e4165d7e7629925315b8 | |
parent | 88307081960aa9b8190f0fe9acb8906b2372e7ec (diff) | |
download | perl-ca7a8ddf2fb8678942ca04fb07cdeaf677dd77e8.tar.gz |
Correct a couple more cases of $Config{useshrplib}
p4raw-id: //depot/perl@31526
-rw-r--r-- | hints/uts.sh | 2 | ||||
-rw-r--r-- | lib/ExtUtils/MM_Unix.pm | 4 | ||||
-rw-r--r-- | vms/genconfig.pl | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/hints/uts.sh b/hints/uts.sh index eb0d78ce11..2ac5221ca6 100644 --- a/hints/uts.sh +++ b/hints/uts.sh @@ -17,7 +17,7 @@ libs='-lsocket -lnsl -ldl -lm' libswanted='m' prefix='/usr/local' toke_cflags='optimize=""' -useshrplib='define' +useshrplib='true' ################################# # Some less routine stuff: diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index dbc8245d5b..b73e8fa98f 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -18,7 +18,7 @@ use vars qw($VERSION @ISA use ExtUtils::MakeMaker qw($Verbose neatvalue); -$VERSION = '1.54'; +$VERSION = '1.54_01'; require ExtUtils::MM_Any; @ISA = qw(ExtUtils::MM_Any); @@ -926,7 +926,7 @@ $(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(BOOTSTRAP) $(INST_ARCHAUTODIR)$(DFSEP). my $libs = '$(LDLOADLIBS)'; - if (($Is_NetBSD || $Is_Interix) && $Config{'useshrplib'}) { + if (($Is_NetBSD || $Is_Interix) && $Config{'useshrplib'} eq 'true') { # Use nothing on static perl platforms, and to the flags needed # to link against the shared libperl library on shared perl # platforms. We peek at lddlflags to see if we need -Wl,-R diff --git a/vms/genconfig.pl b/vms/genconfig.pl index 6e9df703eb..02a2ea3fc0 100644 --- a/vms/genconfig.pl +++ b/vms/genconfig.pl @@ -79,7 +79,7 @@ ar='undef' eunicefix=':' hint='none' hintfile='undef' -useshrplib='define' +useshrplib='true' usemymalloc='n' usevfork='true' spitshell='write sys\$output ' |