summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2014-12-13 15:56:18 -0600
committerCraig A. Berry <craigberry@mac.com>2014-12-13 15:56:18 -0600
commit6f3f2a492e64a91ea78055b1d371ea5375a06470 (patch)
treec2423393f923b2ea645909af37cd49e80319c0e9 /dist
parent4245fea43c810d05cf1a37d307726c1e371ea2d2 (diff)
downloadperl-6f3f2a492e64a91ea78055b1d371ea5375a06470.tar.gz
Remove VAXC special cases from ExtUtils::CBuilder.
VAX C was a pre-ANSI compiler that was superceded about fifteen years ago, so there is no reason to include special cases for it now.
Diffstat (limited to 'dist')
-rw-r--r--dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/VMS.pm5
1 files changed, 1 insertions, 4 deletions
diff --git a/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/VMS.pm b/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/VMS.pm
index e12d998c2e..d07ae4f751 100644
--- a/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/VMS.pm
+++ b/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/VMS.pm
@@ -165,7 +165,6 @@ sub _liblist_ext {
'socket' => '', 'X11' => 'DECW$XLIBSHR',
'Xt' => 'DECW$XTSHR', 'Xm' => 'DECW$XMLIBSHR',
'Xmu' => 'DECW$XMULIBSHR');
- if ($self->{'config'}{'vms_cc_type'} ne 'decc') { $libmap{'curses'} = 'VAXCCURSE'; }
warn "Potential libraries are '$potential_libs'\n" if $verbose;
@@ -266,9 +265,7 @@ sub _liblist_ext {
}
}
if ($ctype) {
- # This has to precede any other CRTLs, so just make it first
- if ($cand eq 'VAXCCURSE') { unshift @{$found{$ctype}}, $cand; }
- else { push @{$found{$ctype}}, $cand; }
+ push @{$found{$ctype}}, $cand;
warn "\tFound as $cand (really $fullname), type $ctype\n"
if $verbose > 1;
push @flibs, $name unless $libs_seen{$fullname}++;