ConfigurableFeatures.st
changeset 14104 2c06d704086a
parent 14059 9afc79d37c0c
child 14242 45d070e53b95
equal deleted inserted replaced
14103:3df000b77712 14104:2c06d704086a
   107     ^ self hasSCMSupportEnabledFor:#'DataBaseSourceCodeManager'
   107     ^ self hasSCMSupportEnabledFor:#'DataBaseSourceCodeManager'
   108 
   108 
   109     "Created: / 03-01-2012 / 15:36:12 / cg"
   109     "Created: / 03-01-2012 / 15:36:12 / cg"
   110 !
   110 !
   111 
   111 
       
   112 hasExternalLookupSupport
       
   113     "Return true, if the VM is compiled with external lookup MOP"
       
   114 %{
       
   115 #ifdef SUPPORT_EXTERNAL_LOOKUP
       
   116     RETURN ( true );
       
   117 #endif
       
   118 %}.
       
   119     ^false
       
   120 
       
   121     "
       
   122         ConfigurableFeatures hasExternalLookupSupport
       
   123         ConfigurableFeatures includesFeature:#ExternalLookupSupport
       
   124     "
       
   125 
       
   126     "Created: / 16-04-2012 / 20:00:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   127 !
       
   128 
   112 hasFileBasedSourceCodeManagerSupport
   129 hasFileBasedSourceCodeManagerSupport
   113     "/ use Smalltalk-at to trick the dependency/prerequisite generator
   130     "/ use Smalltalk-at to trick the dependency/prerequisite generator
   114     ^ (Smalltalk at: #'FileBasedSourceCodeManager' ifAbsent:nil) notNil
   131     ^ (Smalltalk at: #'FileBasedSourceCodeManager' ifAbsent:nil) notNil
   115 
   132 
   116     "
   133     "
   213 ! !
   230 ! !
   214 
   231 
   215 !ConfigurableFeatures class methodsFor:'documentation'!
   232 !ConfigurableFeatures class methodsFor:'documentation'!
   216 
   233 
   217 version
   234 version
   218     ^ '$Header: /cvs/stx/stx/libbasic/ConfigurableFeatures.st,v 1.7 2012-03-13 17:24:12 vrany Exp $'
   235     ^ '$Header: /cvs/stx/stx/libbasic/ConfigurableFeatures.st,v 1.8 2012-04-16 18:03:49 vrany Exp $'
   219 !
   236 !
   220 
   237 
   221 version_CVS
   238 version_CVS
   222     ^ '$Header: /cvs/stx/stx/libbasic/ConfigurableFeatures.st,v 1.7 2012-03-13 17:24:12 vrany Exp $'
   239     ^ '$Header: /cvs/stx/stx/libbasic/ConfigurableFeatures.st,v 1.8 2012-04-16 18:03:49 vrany Exp $'
   223 ! !
   240 ! !