diff options
author | 2012-01-08 10:24:08 +0000 | |
---|---|---|
committer | 2012-01-08 10:24:08 +0000 | |
commit | 8b298cdce8a35e4021566bba1789f7bb247c9b20 (patch) | |
tree | a30aa63bc80009b21e5fa27370e1684b7da09f6e /dev-lang/polyml/files | |
parent | old, fails to build with stable linux-headers (diff) | |
download | historical-8b298cdce8a35e4021566bba1789f7bb247c9b20.tar.gz historical-8b298cdce8a35e4021566bba1789f7bb247c9b20.tar.bz2 historical-8b298cdce8a35e4021566bba1789f7bb247c9b20.zip |
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.
Package-Manager: portage-2.1.10.44/cvs/Linux x86_64
Diffstat (limited to 'dev-lang/polyml/files')
-rw-r--r-- | dev-lang/polyml/files/polyml-5.4.1-asm.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-lang/polyml/files/polyml-5.4.1-asm.patch b/dev-lang/polyml/files/polyml-5.4.1-asm.patch new file mode 100644 index 000000000000..af8bd8d49149 --- /dev/null +++ b/dev-lang/polyml/files/polyml-5.4.1-asm.patch @@ -0,0 +1,28 @@ +--- polyml.5.4.1-orig/libpolyml/x86asm.asm 2011-07-13 00:06:49.000000000 +1000 ++++ polyml.5.4.1/libpolyml/x86asm.asm 2012-01-08 16:00:09.740684843 +1100 +@@ -2714,4 +2714,7 @@ + + + ENDIF ++#if defined(__linux__) && defined(__ELF__) ++.section .note.GNU-stack,"",%progbits ++#endif + END +--- polyml.5.4.1-orig/libpolyml/power_assembly.S 2010-04-09 01:49:20.000000000 +1000 ++++ polyml.5.4.1/libpolyml/power_assembly.S 2012-01-08 15:46:35.006200143 +1100 +@@ -1735,3 +1735,6 @@ + dd Mask_assign_byte /* 254 */ + dd Mask_assign_word /* 255 */ + ++#if defined(__linux__) && defined(__ELF__) ++.section .note.GNU-stack,"",%progbits ++#endif +--- polyml.5.4.1-orig/libpolyml/sparc_assembly.S 2010-08-13 01:01:36.000000000 +1000 ++++ polyml.5.4.1/libpolyml/sparc_assembly.S 2012-01-08 15:46:12.516642791 +1100 +@@ -1498,3 +1498,6 @@ + .long Mask_assign_byte /* 254 */ + .long Mask_assign_word /* 255 */ + ++#if defined(__linux__) && defined(__ELF__) ++.section .note.GNU-stack,"",%progbits ++#endif |