Retract #10295 and #10296: a more generic solution
authorJarkko Hietaniemi <jhi@iki.fi>
Wed, 30 May 2001 12:18:20 +0000 (12:18 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Wed, 30 May 2001 12:18:20 +0000 (12:18 +0000)
is needed (there's something funny with gcc on AIX).

p4raw-id: //depot/perl@10311

ext/POSIX/Makefile.PL
ext/Storable/Makefile.PL

index 081f934..73bb02d 100644 (file)
@@ -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',
index 49270b3..c8151f3 100644 (file)
 use ExtUtils::MakeMaker;
 use Config;
 
-my @libs = ();
-$Config{gccversion} eq "" or @libs = ('LIBS' => ["-lgcc"]);
-
 WriteMakefile(
-    'NAME'             => 'Storable',
+    'NAME'                     => 'Storable',
     'DISTNAME'         => "Storable",
-    @libs,
-    'MAN3PODS'         => {},
+       'MAN3PODS'              => {},
     'VERSION_FROM'     => 'Storable.pm',
     'dist'                     => { SUFFIX => 'gz', COMPRESS => 'gzip -f' },
 );