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