-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../perl5-5.22.3/constant.patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../perl5-5.22.3/dynaloader.patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../perl5-5.22.3/findext.patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../perl5-5.36.0/installscripts.patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../perl5-5.37.8/liblist.patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
During the build, MakeMaker is run by miniperl, so $^O is the build | ||
platform; but for the code below, $Is{Android} means that the target | ||
platform is Android. | ||
|
||
Replacing $^O check altogether would probably be better, | ||
but there's already a double test like that, and it should be fixed | ||
upstream anyway. | ||
|
||
--- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | ||
+++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | ||
@@ -38,7 +38,7 @@ | ||
$Is{BSD} = ($^O =~ /^(?:free|midnight|net|open)bsd$/ or | ||
grep( $^O eq $_, qw(bsdos interix dragonfly) ) | ||
); | ||
- $Is{Android} = $^O =~ /android/; | ||
+ $Is{Android} = $^O =~ /android/ || $Config{osname} eq 'android'; | ||
if ( $^O eq 'darwin' ) { | ||
my @osvers = split /\./, $Config{osvers}; | ||
if ( $^X eq '/usr/bin/perl' ) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../perl5-5.22.3/posix-makefile.patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../perl5-5.22.3/test-checkcase.patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../perl5-5.34.0/test-makemaker.patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
perl-cross assumes the sources use xconfig.h with -DUSE_CROSS_COMPILE | ||
With perl 5.20.0, it's no longer true. Regardless of what mainline perl | ||
uses, let's stick with the old xconfig.h way for now. | ||
|
||
--- a/perl.h | ||
+++ b/perl.h | ||
@@ -41,7 +41,11 @@ | ||
#ifdef PERL_MICRO | ||
# include "uconfig.h" | ||
#else | ||
+# ifndef USE_CROSS_COMPILE | ||
# include "config.h" | ||
+# else | ||
+# include "xconfig.h" | ||
+# endif | ||
#endif | ||
|
||
/* | ||
--- a/perl_langinfo.h | ||
+++ b/perl_langinfo.h | ||
@@ -4,7 +4,11 @@ | ||
#ifndef PERL_LANGINFO_H | ||
#define PERL_LANGINFO_H 1 | ||
|
||
+#ifdef USE_CROSS_COMPILE | ||
+#include "xconfig.h" | ||
+#else | ||
#include "config.h" | ||
+#endif | ||
|
||
#if defined(HAS_NL_LANGINFO) && defined(I_LANGINFO) | ||
# include <langinfo.h> |