summaryrefslogtreecommitdiff
path: root/lang/squeak3/files
diff options
context:
space:
mode:
authorJacques Vidrine <nectar@FreeBSD.org>1999-03-05 16:24:52 +0000
committerJacques Vidrine <nectar@FreeBSD.org>1999-03-05 16:24:52 +0000
commit9aeac806634e70cd23e0169d6700e0054e465dfe (patch)
tree1905e0b01901ac11a0cbb36e93dff56ff83946bb /lang/squeak3/files
parentMy modification (Rev. 1.3 -> 1.4) is incorrect, and (diff)
Upgrade 2.2 -> 2.3.
Submitted by: Roland Jesse <jesse@cs.uni-magdeburg.de>
Notes
Notes: svn path=/head/; revision=17006
Diffstat (limited to 'lang/squeak3/files')
-rw-r--r--lang/squeak3/files/patch-aa20
1 files changed, 20 insertions, 0 deletions
diff --git a/lang/squeak3/files/patch-aa b/lang/squeak3/files/patch-aa
new file mode 100644
index 000000000000..874e2c8881a8
--- /dev/null
+++ b/lang/squeak3/files/patch-aa
@@ -0,0 +1,20 @@
+--- /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;