2
0
Эх сурвалжийг харах

* fixed wrong elsif

git-svn-id: trunk@4629 -
florian 19 жил өмнө
parent
commit
b94c4b0660

+ 9 - 6
compiler/fpcdefs.inc

@@ -9,14 +9,17 @@
   { 256 MB stack }
   { 256 MB stack }
   { under windows the stack can't grow }
   { under windows the stack can't grow }
   {$MEMORY 256000000}
   {$MEMORY 256000000}
-{$elsif win64}
-  { 512 MB stack }
-  { under windows the stack can't grow }
-  {$MEMORY 512000000}
 {$else win32}
 {$else win32}
-  { 1 MB stack }
-  {$MEMORY 1000000}
+  {$ifdef win64}
+    { 512 MB stack }
+    { under windows the stack can't grow }
+    {$MEMORY 512000000}
+  {$else win64}
+    { 1 MB stack }
+    {$MEMORY 1000000}
+  {$endif win64}
 {$endif win32}
 {$endif win32}
+
   { This reduces the memory requirements a lot }
   { This reduces the memory requirements a lot }
   {$PACKENUM 1}
   {$PACKENUM 1}