perl-native 5.8.8: Fix for building with SSP-modified host gcc's, as
authorJamie Lenehan <lenehan@twibble.org>
Thu, 7 Jun 2007 05:17:14 +0000 (05:17 +0000)
committerJamie Lenehan <lenehan@twibble.org>
Thu, 7 Jun 2007 05:17:14 +0000 (05:17 +0000)
requested in bug #1980. Closes #1980.

packages/perl/perl-5.8.8/native-ssp.patch [new file with mode: 0644]
packages/perl/perl-native_5.8.8.bb

diff --git a/packages/perl/perl-5.8.8/native-ssp.patch b/packages/perl/perl-5.8.8/native-ssp.patch
new file mode 100644 (file)
index 0000000..f815aad
--- /dev/null
@@ -0,0 +1,14 @@
+Fix for compiling with ssp enabled gcc:
+See http://bugs.openembedded.org/show_bug.cgi?id=1980
+
+diff -Naur perl-5.8.7.orig/cflags.SH perl-5.8.7/cflags.SH
+--- perl-5.8.7.orig/cflags.SH  2002-09-30 10:59:07.000000000 +0000
++++ perl-5.8.7/cflags.SH       2005-10-02 04:08:39.000000000 +0000
+@@ -165,6 +165,8 @@
+ esac
+     : Can we perhaps use $ansi2knr here
++    [[ $file == regcomp ]] && export ccflags="${ccflags} -fno-stack-protector"
++    [[ $file == regexec ]] && export ccflags="${ccflags} -fno-stack-protector"
+     echo "$cc -c -DPERL_CORE $ccflags $optimize $warn"
+     eval "$also "'"$cc -DPERL_CORE -c $ccflags $optimize $warn"'
index d4896da..dd9a581 100644 (file)
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.perl.org/"
 SECTION = "libs"
 LICENSE = "Artistic|GPL"
 DEPENDS = "virtual/db-native gdbm-native"
-PR = "r10"
+PR = "r11"
 
 FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/perl-${PV}"
 
@@ -14,7 +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://native-makedepend-dash.patch;patch=1"
+           file://native-makedepend-dash.patch;patch=1 \
+           file://native-ssp.patch;patch=1"
 
 S = "${WORKDIR}/perl-${PV}"