# HG changeset patch # User Claus Gittinger # Date 1258559165 -3600 # Node ID 9924562388ed741ec3a69f5402df74b7401d4954 # Parent 7353d3ef025f707e286c38efdf42dd009f4e3c76 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). diff -r 7353d3ef025f -r 9924562388ed 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!