diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExtUtils/t/Embed.t | 7 | ||||
-rw-r--r-- | lib/File/DosGlob.pm | 7 |
2 files changed, 1 insertions, 13 deletions
diff --git a/lib/ExtUtils/t/Embed.t b/lib/ExtUtils/t/Embed.t index 2aece548bf..269b20ac3a 100644 --- a/lib/ExtUtils/t/Embed.t +++ b/lib/ExtUtils/t/Embed.t @@ -20,7 +20,6 @@ $| = 1; print "1..9\n"; my $cc = $Config{'cc'}; my $cl = ($^O eq 'MSWin32' && $cc eq 'cl'); -my $borl = ($^O eq 'MSWin32' && $cc eq 'bcc32'); my $skip_exe = $^O eq 'os2' && $Config{ldflags} =~ /(?<!\S)-Zexe\b/; my $exe = 'embed_test'; $exe .= $Config{'exe_ext'} unless $skip_exe; # Linker will auto-append it @@ -57,9 +56,6 @@ if ($^O eq 'VMS') { if ($cl) { push(@cmd,$cc,"-Fe$exe"); } - elsif ($borl) { - push(@cmd,$cc,"-o$exe"); - } else { push(@cmd,$cc,'-o' => $exe); } @@ -94,9 +90,6 @@ if ($^O eq 'VMS') { if $^O eq 'os2' and $Config{ldflags} =~ /(?<!\S)-Zomf\b/; push(@cmd,ldopts()); } - if ($borl) { - @cmd = ($cmd[0],(grep{/^-[LI]/}@cmd[1..$#cmd]),(grep{!/^-[LI]/}@cmd[1..$#cmd])); - } if ($^O eq 'aix') { # AIX needs an explicit symbol export list. my ($perl_exp) = grep { -f } qw(perl.exp ../perl.exp); diff --git a/lib/File/DosGlob.pm b/lib/File/DosGlob.pm index 90434fd467..3b6097dd0e 100644 --- a/lib/File/DosGlob.pm +++ b/lib/File/DosGlob.pm @@ -9,7 +9,7 @@ package File::DosGlob; -our $VERSION = '1.04'; +our $VERSION = '1.05'; use strict; use warnings; @@ -291,11 +291,6 @@ only twice as slow as perlglob.exe (GSAR 28-MAY-97) =item * -Several cleanups prompted by lack of compatible perlglob.exe -under Borland (GSAR 27-MAY-97) - -=item * - Initial version (GSAR 20-FEB-97) =back |