Blame SOURCES/ExtUtils-MakeMaker-7.36-USE_MM_LD_RUN_PATH.patch

3970c2
From 9b80126d33174059a03502521d5cb1fdc9b2c3a1 Mon Sep 17 00:00:00 2001
3970c2
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
3970c2
Date: Thu, 12 Jan 2012 17:05:19 +0100
3970c2
Subject: [PATCH] Do not set RPATH by default
3970c2
MIME-Version: 1.0
3970c2
Content-Type: text/plain; charset=UTF-8
3970c2
Content-Transfer-Encoding: 8bit
3970c2
3970c2
Former behavior can be forced by setting USE_MM_LD_RUN_PATH
3970c2
environment variable to 1.
3970c2
3970c2
This is copy from `perl' package.
3970c2
See <https://bugzilla.redhat.com/show_bug.cgi?id=773622>.
3970c2
3970c2
Signed-off-by: Petr Písař <ppisar@redhat.com>
3970c2
---
3970c2
 lib/ExtUtils/Liblist.pm   |  5 ++++
3970c2
 lib/ExtUtils/MM_Unix.pm   |  2 +-
3970c2
 lib/ExtUtils/MakeMaker.pm | 56 ++++++++++++++++++++++++++++++++++++++-
3970c2
 3 files changed, 61 insertions(+), 2 deletions(-)
3970c2
3970c2
diff --git a/lib/ExtUtils/Liblist.pm b/lib/ExtUtils/Liblist.pm
3970c2
index 44c4c39..3983194 100644
3970c2
--- a/lib/ExtUtils/Liblist.pm
3970c2
+++ b/lib/ExtUtils/Liblist.pm
3970c2
@@ -89,6 +89,11 @@ libraries.  LD_RUN_PATH is a colon separated list of the directories
3970c2
 in LDLOADLIBS. It is passed as an environment variable to the process
3970c2
 that links the shared library.
3970c2
 
3970c2
+Fedora extension: This generation of LD_RUN_PATH is disabled by default.
3970c2
+To use the generated LD_RUN_PATH for all links, set the USE_MM_LD_RUN_PATH
3970c2
+MakeMaker object attribute / argument, (or set the $USE_MM_LD_RUN_PATH
3970c2
+environment variable).
3970c2
+
3970c2
 =head2 BSLOADLIBS
3970c2
 
3970c2
 List of those libraries that are needed but can be linked in
3970c2
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm
3970c2
index a0a2ee1..dda54bb 100644
3970c2
--- a/lib/ExtUtils/MM_Unix.pm
3970c2
+++ b/lib/ExtUtils/MM_Unix.pm
3970c2
@@ -1076,7 +1076,7 @@ sub xs_make_dynamic_lib {
3970c2
     }
3970c2
 
3970c2
     my $ld_run_path_shell = "";
3970c2
-    if ($self->{LD_RUN_PATH} ne "") {
3970c2
+    if (($self->{LD_RUN_PATH} ne "") && ($self->{USE_MM_LD_RUN_PATH})) {
3970c2
         $ld_run_path_shell = 'LD_RUN_PATH="$(LD_RUN_PATH)" ';
3970c2
     }
3970c2
 
3970c2
diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm
3970c2
index 90790d4..f5459eb 100644
3970c2
--- a/lib/ExtUtils/MakeMaker.pm
3970c2
+++ b/lib/ExtUtils/MakeMaker.pm
3970c2
@@ -317,7 +317,7 @@ sub full_setup {
3970c2
     PERM_DIR PERM_RW PERM_RWX MAGICXS
3970c2
     PL_FILES PM PM_FILTER PMLIBDIRS PMLIBPARENTDIRS POLLUTE
3970c2
     PREREQ_FATAL PREREQ_PM PREREQ_PRINT PRINT_PREREQ PUREPERL_ONLY
3970c2
-    SIGN SKIP TEST_REQUIRES TYPEMAPS UNINST VERSION VERSION_FROM XS
3970c2
+    SIGN SKIP TEST_REQUIRES TYPEMAPS UNINST USE_MM_LD_RUN_PATH VERSION VERSION_FROM XS
3970c2
     XSBUILD XSMULTI XSOPT XSPROTOARG XS_VERSION
3970c2
     clean depend dist dynamic_lib linkext macro realclean tool_autosplit
3970c2
 
3970c2
@@ -503,6 +503,26 @@ sub new {
3970c2
         $self->_PRINT_PREREQ;
3970c2
    }
3970c2
 
3970c2
+    # USE_MM_LD_RUN_PATH - another RedHatism to disable automatic RPATH generation
3970c2
+    if ( ( ! $self->{USE_MM_LD_RUN_PATH} )
3970c2
+       &&( ("@ARGV" =~ /\bUSE_MM_LD_RUN_PATH(=([01]))?\b/)
3970c2
+        ||( exists( $ENV{USE_MM_LD_RUN_PATH} )
3970c2
+           &&( $ENV{USE_MM_LD_RUN_PATH} =~ /([01])?$/ )
3970c2
+           )
3970c2
+        )
3970c2
+       )
3970c2
+    {
3970c2
+       my $v = $1;
3970c2
+       if( $v )
3970c2
+       {
3970c2
+           $v = ($v=~/=([01])$/)[0];
3970c2
+       }else
3970c2
+       {
3970c2
+           $v = 1;
3970c2
+       };
3970c2
+       $self->{USE_MM_LD_RUN_PATH}=$v;
3970c2
+    };
3970c2
+
3970c2
     print "MakeMaker (v$VERSION)\n" if $Verbose;
3970c2
     if (-f "MANIFEST" && ! -f "Makefile" && ! $UNDER_CORE){
3970c2
         check_manifest();
3970c2
@@ -2839,6 +2859,40 @@ precedence.  A typemap in the current directory has highest
3970c2
 precedence, even if it isn't listed in TYPEMAPS.  The default system
3970c2
 typemap has lowest precedence.
3970c2
 
3970c2
+=item USE_MM_LD_RUN_PATH
3970c2
+
3970c2
+boolean
3970c2
+The Fedora perl MakeMaker distribution differs from the standard
3970c2
+upstream release in that it disables use of the MakeMaker generated
3970c2
+LD_RUN_PATH by default, UNLESS this attribute is specified , or the
3970c2
+USE_MM_LD_RUN_PATH environment variable is set during the MakeMaker run.
3970c2
+
3970c2
+The upstream MakeMaker will set the ld(1) environment variable LD_RUN_PATH
3970c2
+to the concatenation of every -L ld(1) option directory in which a -l ld(1)
3970c2
+option library is found, which is used as the ld(1) -rpath option if none
3970c2
+is specified. This means that, if your application builds shared libraries
3970c2
+and your MakeMaker application links to them, that the absolute paths of the
3970c2
+libraries in the build tree will be inserted into the RPATH header of all
3970c2
+MakeMaker generated binaries, and that such binaries will be unable to link
3970c2
+to these libraries if they do not still reside in the build tree directories
3970c2
+(unlikely) or in the system library directories (/lib or /usr/lib), regardless
3970c2
+of any LD_LIBRARY_PATH setting. So if you specified -L../mylib -lmylib , and
3970c2
+ your 'libmylib.so' gets installed into /some_directory_other_than_usr_lib,
3970c2
+ your MakeMaker application will be unable to link to it, even if LD_LIBRARY_PATH
3970c2
+is set to include /some_directory_other_than_usr_lib, because RPATH overrides
3970c2
+LD_LIBRARY_PATH.
3970c2
+
3970c2
+So for Fedora MakeMaker builds LD_RUN_PATH is NOT generated by default for
3970c2
+every link. You can still use explicit -rpath ld options or the LD_RUN_PATH
3970c2
+environment variable during the build to generate an RPATH for the binaries.
3970c2
+
3970c2
+You can set the USE_MM_LD_RUN_PATH attribute to 1 on the MakeMaker command
3970c2
+line or in the WriteMakefile arguments to enable generation of LD_RUN_PATH
3970c2
+for every link command.
3970c2
+
3970c2
+USE_MM_LD_RUN_PATH will default to 1 (LD_RUN_PATH will be used) IF the
3970c2
+$USE_MM_LD_RUN_PATH environment variable is set during a MakeMaker run.
3970c2
+
3970c2
 =item VENDORPREFIX
3970c2
 
3970c2
 Like PERLPREFIX, but only for the vendor install locations.
3970c2
-- 
3970c2
2.20.1
3970c2