From: <pat...@us...> - 2007-06-26 01:05:36
|
Revision: 596 http://svn.sourceforge.net/xml-cppdom/?rev=596&view=rev Author: patrickh Date: 2007-06-25 18:05:34 -0700 (Mon, 25 Jun 2007) Log Message: ----------- Do not define CPPDOM_DYN_LINK when building the CppDOM libraries. It is only for user-level code. This should finish off fixing up the mess that I made in Revision 591. Revision Links: -------------- http://svn.sourceforge.net/xml-cppdom/?rev=591&view=rev Modified Paths: -------------- trunk/cppdom/SConscript Modified: trunk/cppdom/SConscript =================================================================== --- trunk/cppdom/SConscript 2007-06-25 22:37:34 UTC (rev 595) +++ trunk/cppdom/SConscript 2007-06-26 01:05:34 UTC (rev 596) @@ -41,7 +41,7 @@ shlinkcom = [shlinkcom, 'mt.exe -manifest ${TARGET}.manifest -outputresource:$TARGET;2'] cppdom_shared_lib_env = cppdom_lib_env.Copy() - cppdom_shared_lib_env.AppendUnique(CPPDEFINES = ["CPPDOM_EXPORTS", "CPPDOM_DYN_LINK"]) + cppdom_shared_lib_env.AppendUnique(CPPDEFINES = ["CPPDOM_EXPORTS"]) cppdom_lib = cppdom_shared_lib_env.SharedLibrary(cppdom_shared_libname, sources, SHLINKCOM = shlinkcom) cppdom_shared_lib_env.Install(inst_paths['lib'], cppdom_lib) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |