Blame SOURCES/ExtUtils-MakeMaker-7.30-Link-to-libperl-explicitly-on-Linux.patch

4da5a0
From 4a4f7dd3d3e7877aa45081311c1a32421e0d32e4 Mon Sep 17 00:00:00 2001
4da5a0
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
4da5a0
Date: Tue, 2 Jul 2013 10:28:15 +0200
4da5a0
Subject: [PATCH] Link to libperl explicitly on Linux
4da5a0
MIME-Version: 1.0
4da5a0
Content-Type: text/plain; charset=UTF-8
4da5a0
Content-Transfer-Encoding: 8bit
4da5a0
4da5a0
<https://bugzilla.redhat.com/show_bug.cgi?id=960048>
4da5a0
<http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=327585#50>
4da5a0
4da5a0
Signed-off-by: Petr Písař <ppisar@redhat.com>
4da5a0
---
4da5a0
 lib/ExtUtils/MM_Unix.pm | 8 +++++++-
4da5a0
 1 file changed, 7 insertions(+), 1 deletion(-)
4da5a0
4da5a0
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm
4da5a0
index 198f05e..d9ebe61 100644
4da5a0
--- a/lib/ExtUtils/MM_Unix.pm
4da5a0
+++ b/lib/ExtUtils/MM_Unix.pm
4da5a0
@@ -30,6 +30,7 @@ BEGIN {
4da5a0
     $Is{IRIX}    = $^O eq 'irix';
4da5a0
     $Is{NetBSD}  = $^O eq 'netbsd';
4da5a0
     $Is{Interix} = $^O eq 'interix';
4da5a0
+    $Is{Linux}   = $^O eq 'linux';
4da5a0
     $Is{SunOS4}  = $^O eq 'sunos';
4da5a0
     $Is{Solaris} = $^O eq 'solaris';
4da5a0
     $Is{SunOS}   = $Is{SunOS4} || $Is{Solaris};
4da5a0
@@ -1028,7 +1029,7 @@ sub xs_make_dynamic_lib {
4da5a0
     push(@m,"	\$(RM_F) \$\@\n");
4da5a0
 
4da5a0
     my $libs = '$(LDLOADLIBS)';
4da5a0
-    if (($Is{NetBSD} || $Is{Interix} || $Is{Android}) && $Config{'useshrplib'} eq 'true') {
4da5a0
+    if (($Is{Linux} || $Is{NetBSD} || $Is{Interix} || $Is{Android}) && $Config{'useshrplib'} eq 'true') {
4da5a0
         # Use nothing on static perl platforms, and to the flags needed
4da5a0
         # to link against the shared libperl library on shared perl
4da5a0
         # platforms.  We peek at lddlflags to see if we need -Wl,-R
4da5a0
@@ -1041,6 +1042,11 @@ sub xs_make_dynamic_lib {
4da5a0
             # The Android linker will not recognize symbols from
4da5a0
             # libperl unless the module explicitly depends on it.
4da5a0
             $libs .= ' "-L$(PERL_INC)" -lperl';
4da5a0
+        } else {
4da5a0
+            if ($ENV{PERL_CORE}) {
4da5a0
+                $libs .= ' -L$(PERL_INC)';
4da5a0
+            }
4da5a0
+            $libs .= ' -lperl';
4da5a0
         }
4da5a0
     }
4da5a0
 
4da5a0
-- 
4da5a0
2.13.6
4da5a0