diff options
Diffstat (limited to 'meta/recipes-devtools/perl/perl-5.12.3/perl-dynloader.patch')
| -rw-r--r-- | meta/recipes-devtools/perl/perl-5.12.3/perl-dynloader.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/perl-5.12.3/perl-dynloader.patch b/meta/recipes-devtools/perl/perl-5.12.3/perl-dynloader.patch new file mode 100644 index 0000000000..d5ea00f2da --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.12.3/perl-dynloader.patch | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | Upstream-Status:Inappropriate [embedded specific] | ||
| 2 | |||
| 3 | Allow the location that .so files are searched for for dynamic | ||
| 4 | loading to be changed via an environment variable. This is to allow | ||
| 5 | us to load .so's from the host system while building for the target | ||
| 6 | system. | ||
| 7 | |||
| 8 | Update by Nitin A Kamble <nitin.a.kamble@intel.com> 2011/04/21 | ||
| 9 | |||
| 10 | --- perl-5.12.3/dist/XSLoader/XSLoader_pm.PL 2007/04/20 09:03:08 1.1 | ||
| 11 | +++ perl-5.12.3/dist/XSLoader/XSLoader_pm.PL 2007/04/20 09:03:08 | ||
| 12 | @@ -65,6 +65,19 @@ | ||
| 13 | print OUT <<'EOT'; | ||
| 14 | my $modpname = join('/',@modparts); | ||
| 15 | my $modlibname = (caller())[1]; | ||
| 16 | + # OE: Allow env to form dynamic loader to look in a different place | ||
| 17 | + # This is so it finds the host .so files, not the targets | ||
| 18 | + if (defined $ENV{PERLHOSTLIB}) | ||
| 19 | + { | ||
| 20 | + my $hostlib = $ENV{PERLHOSTLIB}; | ||
| 21 | + print STDERR "*** Module name IN: $modlibname\n"; | ||
| 22 | + ($p1, $p2, $p3, $p4, $p5) = $modlibname =~ m/(^(.*lib\/)?)((perl\/[0-9\.]*\/)?)(.*)$/; | ||
| 23 | + print STDERR "*** p1: $p1 p3: $p3 p5: $p5\n"; | ||
| 24 | + if ( $p1 ne "" ) { | ||
| 25 | + $modlibname = $hostlib.$p5; | ||
| 26 | + } | ||
| 27 | + print STDERR "*** Module name OUT: $modlibname\n"; | ||
| 28 | + } | ||
| 29 | my $c = @modparts; | ||
| 30 | $modlibname =~ s,[\\/][^\\/]+$,, while $c--; # Q&D basename | ||
| 31 | my $file = "$modlibname/auto/$modpname/$modfname.$dl_dlext"; | ||
