Gentoo Archives: gentoo-commits

From: "Mark Wright (gienah)" <gienah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/polyml/files: polyml-5.4.1-asm.patch
Date: Sun, 08 Jan 2012 10:24:17
Message-Id: 20120108102408.738E32004C@flycatcher.gentoo.org
1 gienah 12/01/08 10:24:08
2
3 Added: polyml-5.4.1-asm.patch
4 Log:
5 Bump to 5.4.1 fixes bug #296797 thanks Mr. Anderson and Rene Necoro Neumann. Fix executable stacks in 2 of 3 files bug #256679 by Mr. Anderson. Add portable use flag.
6
7 (Portage version: 2.1.10.44/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-lang/polyml/files/polyml-5.4.1-asm.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/polyml/files/polyml-5.4.1-asm.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/polyml/files/polyml-5.4.1-asm.patch?rev=1.1&content-type=text/plain
14
15 Index: polyml-5.4.1-asm.patch
16 ===================================================================
17 --- polyml.5.4.1-orig/libpolyml/x86asm.asm 2011-07-13 00:06:49.000000000 +1000
18 +++ polyml.5.4.1/libpolyml/x86asm.asm 2012-01-08 16:00:09.740684843 +1100
19 @@ -2714,4 +2714,7 @@
20
21
22 ENDIF
23 +#if defined(__linux__) && defined(__ELF__)
24 +.section .note.GNU-stack,"",%progbits
25 +#endif
26 END
27 --- polyml.5.4.1-orig/libpolyml/power_assembly.S 2010-04-09 01:49:20.000000000 +1000
28 +++ polyml.5.4.1/libpolyml/power_assembly.S 2012-01-08 15:46:35.006200143 +1100
29 @@ -1735,3 +1735,6 @@
30 dd Mask_assign_byte /* 254 */
31 dd Mask_assign_word /* 255 */
32
33 +#if defined(__linux__) && defined(__ELF__)
34 +.section .note.GNU-stack,"",%progbits
35 +#endif
36 --- polyml.5.4.1-orig/libpolyml/sparc_assembly.S 2010-08-13 01:01:36.000000000 +1000
37 +++ polyml.5.4.1/libpolyml/sparc_assembly.S 2012-01-08 15:46:12.516642791 +1100
38 @@ -1498,3 +1498,6 @@
39 .long Mask_assign_byte /* 254 */
40 .long Mask_assign_word /* 255 */
41
42 +#if defined(__linux__) && defined(__ELF__)
43 +.section .note.GNU-stack,"",%progbits
44 +#endif