Re: AIX and gcc (moving targets)
H.Merijn Brand [Tue, 29 May 2001 12:32:57 +0000 (14:32 +0200)]
Message-Id: <20010529115151.9FE0.H.M.BRAND@hccnet.nl>

p4raw-id: //depot/perl@10295

ext/POSIX/Makefile.PL

index 73bb02d..081f934 100644 (file)
@@ -2,7 +2,9 @@ use ExtUtils::MakeMaker;
 use Config;
 my @libs;
 if ($^O ne 'MSWin32') {
-    @libs = ('LIBS' => ["-lm -lposix -lcposix"]);
+    my $libs = "-lm -lposix -lcposix";
+    $Config{gccversion} ne "" and $libs .= " -lgcc";
+    @libs = ('LIBS' => [ $libs ]);
 }
 WriteMakefile(
     NAME       => 'POSIX',