private.rc
changeset 181 4f41c57d2c4f
parent 180 6b0985611def
child 182 0f0ce432de5e
--- a/private.rc	Wed Dec 18 13:23:05 1996 +0100
+++ b/private.rc	Wed Dec 18 14:02:49 1996 +0100
@@ -24,6 +24,7 @@
 "/ a year or so ;-)
 "/
 ObjectMemory justInTimeCompilation:true.
+ObjectMemory dynamicCodeLimit:64000.
 
 "/
 "/ If local sources have preference over source code managment
@@ -131,6 +132,7 @@
 "/
 thisIsMySystem ifTrue:[
     'starting RDoItServer ...' infoPrintCR.
+    Smalltalk fileIn:'../../goodies/rdoit/NewLauncher.chg'.
     RDoItServer autoload.
     RDoItServer start.
     RDoItServer allowHost:'localhost'.
@@ -167,20 +169,38 @@
 
 systemType := OperatingSystem getOSType.
 
-systemType = 'irix' ifTrue:[
-    Compiler stcCompilationIncludes:'-I../../include'.
-    Compiler stcCompilationDefines:'-DGLX'.
-] ifFalse:[
-    Compiler stcCompilationIncludes:'-I../../include -I../../support/VGL/vogl/src'.
-    Compiler stcCompilationDefines:'-DVGL'.
+Compiler stcCompilationIncludes:'-I../../include'.
 
-    "/ specify additional link libraries.
-    "/ Disabled; thats the default anyway ....
+thisIsMySystem ifTrue:[
+    "/
+    "/ for myself: preset flags, so that I
+    "/ can accept GLXWorkstation code
     "/
-    "/    OperatingSystem getOSType = 'linux' ifTrue:[
-    "/      ObjectFileLoader searchedLibraries:#('/usr/lib/libc.a')
-    "/    ]
+    Display supportsGLDrawing ifTrue:[
+	systemType = 'irix' ifTrue:[
+	    Display isOpenGL ifTrue:[
+		Compiler stcCompilationDefines:'-DOPENGL'.
+	    ] ifFalse:[
+		Compiler stcCompilationDefines:'-DGLX'.
+	    ]
+	] ifFalse:[
+	    Display isOpenGL ifTrue:[
+		Compiler stcCompilationIncludes:'-I../../include -I../../support/MESA/Mesa1.2.5/include'.
+		Compiler stcCompilationDefines:'-DOPENGL -DMESA'.
+	    ] ifFalse:[
+		Compiler stcCompilationIncludes:'-I../../include -I../../support/VGL/vogl/src'.
+		Compiler stcCompilationDefines:'-DVGL'.
+	    ].
 
+	    "/ specify additional link libraries.
+	    "/ Disabled; thats the default anyway ....
+	    "/
+	    "/    OperatingSystem getOSType = 'linux' ifTrue:[
+	    "/      ObjectFileLoader searchedLibraries:#('/usr/lib/libc.a')
+	    "/    ]
+
+	].
+    ]
 ].
 
 Compiler ccCompilationOptions:'-O'.