1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/lang/squeak3/files/patch-aa
Jacques Vidrine 9aeac80663 Upgrade 2.2 -> 2.3.
Submitted by:	Roland Jesse <jesse@cs.uni-magdeburg.de>
1999-03-05 16:24:52 +00:00

21 lines
720 B
Plaintext

--- /usr/ports/lang/squeak2/work/2.3/src/sqXWindow.c Tue Feb 9 15:25:30 1999
+++ src/sqXWindow.c Thu Mar 4 09:42:26 1999
@@ -88,7 +88,7 @@
char shortImageName[MAXPATHLEN+1]; /* just the base name */
char vmPath[MAXPATHLEN+1]; /* full path to interpreter's directory */
-int initialHeapSize; /* 5 megabytes by default */
+int initialHeapSize; /* 20 megabytes by default */
int initialArgc;
char **initialArgv;
@@ -2494,7 +2494,7 @@
if ((ev= getenv("SQUEAK_MEMORY")))
initialHeapSize= strtobkm(ev);
else
- initialHeapSize= 5*1024*1024; /* 5 megabytes by default */
+ initialHeapSize= 20*1024*1024; /* 20 megabytes by default */
if (getenv("SQUEAK_LAZY"))
sleepWhenUnmapped= 1;