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