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