changed: #searchForProjectsWhichProvideHeaderFiles
authorClaus Gittinger <cg@exept.de>
Wed, 18 Nov 2009 16:46:05 +0100
changeset 12555 9924562388ed
parent 12554 7353d3ef025f
child 12556 8bc417f222da
changed: #searchForProjectsWhichProvideHeaderFiles MUST include all preReq. packages in the include-path list. This is req'd for the abbrev.stc to include all global names Otherwise, a global from soap/spray without namespace prefix is not found inside soap/wsdl (although they are in the same NS).
ProjectDefinition.st
--- a/ProjectDefinition.st	Wed Nov 18 14:05:49 2009 +0100
+++ b/ProjectDefinition.st	Wed Nov 18 16:46:05 2009 +0100
@@ -4274,6 +4274,11 @@
             ]
         ].
 
+    "/ need them also...
+    self preRequisites do:[:eachPreRequisitePackage |
+        addPackage value:eachPreRequisitePackage
+    ].
+
     self compiled_classesDo:[:cls |
         cls allSuperclassesDo:[:eachSuperClass |
             addPackage value:(eachSuperClass package)
@@ -5183,11 +5188,11 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.288 2009-11-18 13:05:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.289 2009-11-18 15:46:05 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.288 2009-11-18 13:05:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.289 2009-11-18 15:46:05 cg Exp $'
 ! !
 
 ProjectDefinition initialize!