diff options
author | Jesse Vincent <jesse@bestpractical.com> | 2010-04-12 23:15:56 -0400 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2010-04-12 23:15:56 -0400 |
commit | cb47d8a5d4a3850a5c2237056982489145a27981 (patch) | |
tree | 38a86ba347e361e122324468e8c32a87c63dbacb /makedef.pl | |
parent | 20d572319ce8b690b7b68fec6b58f8ac07b1d362 (diff) | |
download | perl-cb47d8a5d4a3850a5c2237056982489145a27981.tar.gz |
Bump to 5.13.0
Diffstat (limited to 'makedef.pl')
-rw-r--r-- | makedef.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/makedef.pl b/makedef.pl index 6efbcdf1ef..f87cee56dd 100644 --- a/makedef.pl +++ b/makedef.pl @@ -189,7 +189,7 @@ my $sym_ord = 0; print STDERR "Defines: (" . join(' ', sort keys %define) . ")\n"; if ($PLATFORM =~ /^win(?:32|ce)$/) { - (my $dll = ($define{PERL_DLL} || "perl512")) =~ s/\.dll$//i; + (my $dll = ($define{PERL_DLL} || "perl513")) =~ s/\.dll$//i; print "LIBRARY $dll\n"; # The DESCRIPTION module definition file statement is not supported # by VC7 onwards. @@ -245,7 +245,7 @@ elsif ($PLATFORM eq 'aix') { } elsif ($PLATFORM eq 'netware') { if ($FILETYPE eq 'def') { - print "LIBRARY perl512\n"; + print "LIBRARY perl513\n"; print "DESCRIPTION 'Perl interpreter for NetWare'\n"; print "EXPORTS\n"; } |