summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-04-20 22:26:16 -0500
committerKeith Packard <keithp@keithp.com>2012-04-20 22:28:18 -0500
commit5f55d0490017faa19b8d70b1742e4a45266c7e79 (patch)
tree59e549b894fc437965e4abfe9337291ce40c350a
parent1489263b895a2a825e29d0560c9b1dbba8a3f431 (diff)
altosui: Mac OS Lion Java default heap space is too small (Trac #37)
Increase it to 512M in the Info.plist file. Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--altosui/AltosUI.app/Contents/Info.plist10
1 files changed, 8 insertions, 2 deletions
diff --git a/altosui/AltosUI.app/Contents/Info.plist b/altosui/AltosUI.app/Contents/Info.plist
index 97b1b59c..60842804 100644
--- a/altosui/AltosUI.app/Contents/Info.plist
+++ b/altosui/AltosUI.app/Contents/Info.plist
@@ -29,10 +29,16 @@
<key>JVMVersion</key>
<string>1.5+</string>
<key>ClassPath</key>
- <array>
+ <array>
<string>$JAVAROOT/altosui.jar</string>
<string>$JAVAROOT/freetts.jar</string>
- </array>
+ </array>
+ <key>VMOptions</key>
+ <array>
+ <string>-Xms512M</string>
+ <string>-Xmx512M</string>
+ <string>-Dosgi.clean=true</string>
+ </array>
</dict>
</dict>
</plist>