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