summaryrefslogtreecommitdiff
path: root/app-emulation/wine/files/wine-gentoo-no-ssp.patch
diff options
context:
space:
mode:
authorNick White <git@njw.me.uk>2009-12-05 00:55:23 +0000
committerNick White <git@njw.me.uk>2009-12-05 00:55:23 +0000
commit673640b358be5b0da0ac00a959a2e591125d85e7 (patch)
treeb72c30219b3e7b499dbe4664ab977956131a1d80 /app-emulation/wine/files/wine-gentoo-no-ssp.patch
parent01f21857354ffa90551377ce74f8c77c1f70aed8 (diff)
downloadnjw-gentoo-local-673640b358be5b0da0ac00a959a2e591125d85e7.tar.bz2
njw-gentoo-local-673640b358be5b0da0ac00a959a2e591125d85e7.zip
Removed wine ebuild
Diffstat (limited to 'app-emulation/wine/files/wine-gentoo-no-ssp.patch')
-rw-r--r--app-emulation/wine/files/wine-gentoo-no-ssp.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/app-emulation/wine/files/wine-gentoo-no-ssp.patch b/app-emulation/wine/files/wine-gentoo-no-ssp.patch
deleted file mode 100644
index ee33c4b..0000000
--- a/app-emulation/wine/files/wine-gentoo-no-ssp.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-support older ssp (gcc-3.4.x). this ssp was never in mainline gcc, thus
-upstream wine wont accept it. can drop once hardened gets a stable gcc-4.x.
-
-http://bugs.gentoo.org/66002
-
---- loader/preloader.c
-+++ loader/preloader.c
-@@ -155,6 +155,8 @@ struct wld_link_map {
-
- /* similar to the above but for -fstack-protector */
- void *__stack_chk_guard = 0;
-+void *__guard = 0;
-+void __stack_smash_handler(void) { return; }
- void __stack_chk_fail(void) { return; }
-
- * The _start function is the entry and exit point of this program