summaryrefslogtreecommitdiff
path: root/ext/POSIX
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-05-30 12:18:20 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-05-30 12:18:20 +0000
commit2834bd71cd7c1093bcae9a6fb922b3f81f45c5b3 (patch)
tree7e9ef5fd6090980df8bebdb7b68fb9c543db3f33 /ext/POSIX
parent04073e4ceb0fb04f5cbbda390bf49a087fb6969c (diff)
downloadperl-2834bd71cd7c1093bcae9a6fb922b3f81f45c5b3.tar.gz
Retract #10295 and #10296: a more generic solution
is needed (there's something funny with gcc on AIX). p4raw-id: //depot/perl@10311
Diffstat (limited to 'ext/POSIX')
-rw-r--r--ext/POSIX/Makefile.PL4
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/POSIX/Makefile.PL b/ext/POSIX/Makefile.PL
index 081f934833..73bb02dddb 100644
--- a/ext/POSIX/Makefile.PL
+++ b/ext/POSIX/Makefile.PL
@@ -2,9 +2,7 @@ use ExtUtils::MakeMaker;
use Config;
my @libs;
if ($^O ne 'MSWin32') {
- my $libs = "-lm -lposix -lcposix";
- $Config{gccversion} ne "" and $libs .= " -lgcc";
- @libs = ('LIBS' => [ $libs ]);
+ @libs = ('LIBS' => ["-lm -lposix -lcposix"]);
}
WriteMakefile(
NAME => 'POSIX',