summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2015-11-14 22:30:49 +0000
committerJames Le Cuirot <chewi@gentoo.org>2015-11-14 22:30:49 +0000
commit2436b440b61db32787500d180cedaa482ba4aeeb (patch)
tree5102574b4b00576c68608198576ea48ac7b35650 /dev-java/icedtea/files
parentsys-apps/portage: Correct spelling and grammar. (diff)
downloadgentoo-2436b440b61db32787500d180cedaa482ba4aeeb.tar.gz
gentoo-2436b440b61db32787500d180cedaa482ba4aeeb.tar.bz2
gentoo-2436b440b61db32787500d180cedaa482ba4aeeb.zip
dev-java/icedtea: Version bump to 7.2.6.2
This version works with CACAO so the ~ppc keyword is restored. There are still problems with ~ppc64. :( Sorry for changing the X/awt flag again but upstream preferred the term headless, which is technically more accurate than awt, so I compromised and went with headless-awt. Package-Manager: portage-2.2.20.1
Diffstat (limited to 'dev-java/icedtea/files')
-rw-r--r--dev-java/icedtea/files/7-cacao-dynmaxheap.patch28
1 files changed, 14 insertions, 14 deletions
diff --git a/dev-java/icedtea/files/7-cacao-dynmaxheap.patch b/dev-java/icedtea/files/7-cacao-dynmaxheap.patch
index 33b98183769e..edce1e85234a 100644
--- a/dev-java/icedtea/files/7-cacao-dynmaxheap.patch
+++ b/dev-java/icedtea/files/7-cacao-dynmaxheap.patch
@@ -1,26 +1,26 @@
# HG changeset patch
# User James Le Cuirot <chewi@gentoo.org>
-# Date 1441543564 -3600
-# Sun Sep 06 13:46:04 2015 +0100
-# Node ID d0224f4490d6694e77dcb0ff7eae8e2297b822bf
-# Parent e215e36be9fc2b7dfe43ff10ec1afe639b289aa5
+# Date 1441541110 -3600
+# Sun Sep 06 13:05:10 2015 +0100
+# Node ID 80e5553df66e3abb3680f747cbb8e32b394b4211
+# Parent 468081e3e037df27b6427aa298dfaaa20f4ba4bf
Dynamically set the maximum heap size on Linux
-diff -r e215e36be9fc -r d0224f4490d6 src/vm/vm.cpp
---- cacao/cacao/src/vm/vm.cpp Mon Feb 11 19:31:28 2013 +0100
-+++ cacao/cacao/src/vm/vm.cpp Sun Sep 06 13:46:04 2015 +0100
-@@ -33,6 +33,10 @@
- #include <errno.h>
- #include <stdlib.h>
+diff -r 468081e3e037 -r 80e5553df66e src/vm/vm.cpp
+--- cacao/cacao/src/vm/vm.cpp Wed Jun 10 19:52:58 2015 +0200
++++ cacao/cacao/src/vm/vm.cpp Sun Sep 06 13:05:10 2015 +0100
+@@ -32,6 +32,10 @@
+ #include <stdint.h>
+ #include <inttypes.h>
+#if defined(__LINUX__)
+#include <unistd.h>
+#endif
+
- #include "vm/types.h"
+ #include "md-abi.hpp"
- #include "arch.h"
-@@ -702,6 +706,19 @@
+ #include "mm/codememory.hpp"
+@@ -690,6 +694,19 @@
opt_heapstartsize = HEAP_STARTSIZE;
opt_stacksize = STACK_SIZE;
@@ -38,5 +38,5 @@ diff -r e215e36be9fc -r d0224f4490d6 src/vm/vm.cpp
+#endif
+
// First of all, parse the -XX options.
+ options_xx(vm_args);
- #if defined(ENABLE_VMLOG)