diff options
author | 2006-04-28 12:08:14 +0000 | |
---|---|---|
committer | 2006-04-28 12:08:14 +0000 | |
commit | 9025aa077b58b2dfdffc551307e0a7bf297d0ebd (patch) | |
tree | c9fab109cadf9cbdac1bdbcb925b9f192e08fa26 /media-sound/soundtracker/files | |
parent | Added optional dep on dev-util/patchutils (diff) | |
download | gentoo-2-9025aa077b58b2dfdffc551307e0a7bf297d0ebd.tar.gz gentoo-2-9025aa077b58b2dfdffc551307e0a7bf297d0ebd.tar.bz2 gentoo-2-9025aa077b58b2dfdffc551307e0a7bf297d0ebd.zip |
Add patch to fix executable stack, thanks to Robert Marmorstein in bug #131540.
(Portage version: 2.1_pre9-r4)
Diffstat (limited to 'media-sound/soundtracker/files')
3 files changed, 26 insertions, 0 deletions
diff --git a/media-sound/soundtracker/files/digest-soundtracker-0.6.7 b/media-sound/soundtracker/files/digest-soundtracker-0.6.7 index f315c0a2912d..e709e2c8caba 100644 --- a/media-sound/soundtracker/files/digest-soundtracker-0.6.7 +++ b/media-sound/soundtracker/files/digest-soundtracker-0.6.7 @@ -1 +1,3 @@ MD5 9a5685e0a79fb10066d29baed652d324 soundtracker-0.6.7.tar.gz 875235 +RMD160 6b73d5884f13f39f1f886a88eefc0545e058b806 soundtracker-0.6.7.tar.gz 875235 +SHA256 698ce17bdbb0712ca21d8bd9fca084505d435c5bc23d584eefc29d470931d999 soundtracker-0.6.7.tar.gz 875235 diff --git a/media-sound/soundtracker/files/digest-soundtracker-0.6.7-r1 b/media-sound/soundtracker/files/digest-soundtracker-0.6.7-r1 index f315c0a2912d..e709e2c8caba 100644 --- a/media-sound/soundtracker/files/digest-soundtracker-0.6.7-r1 +++ b/media-sound/soundtracker/files/digest-soundtracker-0.6.7-r1 @@ -1 +1,3 @@ MD5 9a5685e0a79fb10066d29baed652d324 soundtracker-0.6.7.tar.gz 875235 +RMD160 6b73d5884f13f39f1f886a88eefc0545e058b806 soundtracker-0.6.7.tar.gz 875235 +SHA256 698ce17bdbb0712ca21d8bd9fca084505d435c5bc23d584eefc29d470931d999 soundtracker-0.6.7.tar.gz 875235 diff --git a/media-sound/soundtracker/files/soundtracker-0.6.7-execstack.patch b/media-sound/soundtracker/files/soundtracker-0.6.7-execstack.patch new file mode 100644 index 000000000000..4b9861498f79 --- /dev/null +++ b/media-sound/soundtracker/files/soundtracker-0.6.7-execstack.patch @@ -0,0 +1,22 @@ +diff -Naur soundtracker-0.6.7.old/app/mixers/integer32-asm.S soundtracker-0.6.7/app/mixers/integer32-asm.S +--- soundtracker-0.6.7.old/app/mixers/integer32-asm.S 2006-04-28 02:24:00.000000000 -0400 ++++ soundtracker-0.6.7/app/mixers/integer32-asm.S 2006-04-28 02:23:58.000000000 -0400 +@@ -232,3 +232,6 @@ + ret + + #endif /* defined(__i386__) */ ++#ifdef __ELF__ ++.section .note.GNU-stack,"",%progbits ++#endif +diff -Naur soundtracker-0.6.7.old/app/mixers/kb-x86-asm.S soundtracker-0.6.7/app/mixers/kb-x86-asm.S +--- soundtracker-0.6.7.old/app/mixers/kb-x86-asm.S 2006-04-28 02:24:00.000000000 -0400 ++++ soundtracker-0.6.7/app/mixers/kb-x86-asm.S 2006-04-28 02:25:27.000000000 -0400 +@@ -387,5 +387,8 @@ + .long kbasm_mix_cubic_scopes_filtered_backward + + #endif /* defined(__i386__) */ ++#ifdef __ELF__ ++.section .note.GNU-stack,"",%progbits ++#endif + + .END |