xmlreaderimpl/trunk/stx_goodies_xmlsuite_xmlreaderimpl.st
changeset 178 2ad34ca7768a
parent 177 3362fc45bbfd
child 179 81b698696ae2
--- a/xmlreaderimpl/trunk/stx_goodies_xmlsuite_xmlreaderimpl.st	Sun Jan 10 11:11:41 2010 +0000
+++ b/xmlreaderimpl/trunk/stx_goodies_xmlsuite_xmlreaderimpl.st	Sun Jan 10 13:30:21 2010 +0000
@@ -60,6 +60,17 @@
 
 !stx_goodies_xmlsuite_xmlreaderimpl class methodsFor:'description - compilation'!
 
+additionalLinkLibraries_bc_dot_mak
+    "allows for additional static libraries to be added to the bc.mak file.
+     Subclasses may redefine this"
+
+    "backward compatibilty with old projects"
+
+    ^'support/expat-2.0.1/bcb5/release/libexpats_mtd.lib'
+
+    "Created: / 09-01-2010 / 14:01:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
 additionalLinkLibraries_make_dot_proto
     "allows for additional static libraries to be added to the make.proto file."
 
@@ -68,6 +79,19 @@
     "Created: / 22-08-2006 / 23:53:33 / cg"
 !
 
+additionalRules_bc_dot_mak
+    "obsolete - kept for compatibility with old project files"
+    
+    ^ '
+support/expat-2.0.1/bcb5/release/libexpats_mtd.lib:
+    cd support/expat-2.0.1/bcb5
+    $(MAKE)
+    cd ..\..\..
+'
+
+    "Created: / 09-01-2010 / 14:03:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
 additionalRules_make_dot_proto
     "allows for additional rules to be added to the make.proto file."
 
@@ -81,12 +105,28 @@
     "Created: / 22-08-2006 / 23:59:16 / cg"
 !
 
+additionalTargets_bc_dot_mak
+    "obsolete - kept for compatibility with old project files"
+    
+    ^ 'support/expat-2.0.1/bcb5/release/libexpats_mtd.lib'
+
+    "Created: / 09-01-2010 / 14:02:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
 additionalTargets_make_dot_proto
     "allows for additional targets to be added to the make.proto file."
 
     ^ 'support/expat-2.0.1/build/lib/libexpat.a'
 
     "Created: / 22-08-2006 / 23:53:33 / cg"
+!
+
+localIncludes
+    "allow for the specification of additional include directories"
+
+    ^ '-Isupport/expat-2.0.1/lib'
+
+    "Created: / 09-01-2010 / 14:03:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !stx_goodies_xmlsuite_xmlreaderimpl class methodsFor:'description - contents'!
@@ -99,7 +139,7 @@
 
     ^ #(
         "<className> or (<className> attributes...) in load order"
-        #'XMLv2::ExpatXMLReader' 
+        #'XMLv2::ExpatXMLReader'
         (#'XMLv2::XercesCXMLReader' autoload)
         #'XMLv2::VWSAXBuilder'
         #'XMLv2::VWXMLReader'