diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2007-07-06 03:08:35 +0000 |
---|---|---|
committer | Jamie Lenehan <lenehan@twibble.org> | 2007-07-06 03:08:35 +0000 |
commit | 8809e54182b51dcc864765d075843150db5480c7 (patch) | |
tree | 308b89dec409db55510170f9821f2f6a6ca8f25c /packages/perl/perl-native_5.8.8.bb | |
parent | cca64dcefa7950d7cb7844d2c0cdac3b828466a3 (diff) |
perl/perl-native 5.8.8: Fix up asm/page.h include issue. Perl was including
it in order to get the definition for getpagesize which has been definied in
unistd.h, which it already includes, since glibc 2.1. Some versions of linux
libc headers removed the asm/page.h resulting in failures here for some
people. Closes #2546.
Diffstat (limited to 'packages/perl/perl-native_5.8.8.bb')
-rw-r--r-- | packages/perl/perl-native_5.8.8.bb | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/packages/perl/perl-native_5.8.8.bb b/packages/perl/perl-native_5.8.8.bb index 2955313a99..0e89f11050 100644 --- a/packages/perl/perl-native_5.8.8.bb +++ b/packages/perl/perl-native_5.8.8.bb @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.perl.org/" SECTION = "libs" LICENSE = "Artistic|GPL" DEPENDS = "virtual/db-native gdbm-native" -PR = "r12" +PR = "r13" FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/perl-${PV}" @@ -14,10 +14,8 @@ SRC_URI = "http://ftp.funet.fi/pub/CPAN/src/perl-${PV}.tar.gz \ file://native-nopacklist.patch;patch=1 \ file://native-no-gdbminc.patch;patch=1 \ file://native-perlinc.patch;patch=1 \ - file://makedepend-dash.patch;patch=1" - -# This sloppy patch breaks normal gcc -# file://native-ssp.patch;patch=1 + file://makedepend-dash.patch;patch=1 \ + file://asm-pageh-fix.patch;patch=1" S = "${WORKDIR}/perl-${PV}" |