From: stephan b. <sg...@us...> - 2004-12-25 16:47:20
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/Plugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32749/include/pclasses/Plugin Modified Files: Plugin.h Log Message: Removed PCLASSES_PLATFORM_SHARED_LIB_EXTENSION config var, as we now have SharedLib::extension(). Index: Plugin.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/Plugin/Plugin.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Plugin.h 25 Dec 2004 16:37:47 -0000 1.7 +++ Plugin.h 25 Dec 2004 16:47:11 -0000 1.8 @@ -214,7 +214,7 @@ this->m_path.addPath( "." ); this->m_path.addPath( PCLASSES_PLUGINS_DIR ); this->m_path.addPath( PCLASSES_LIB_DIR ); - this->m_path.addExtension(std::string(".")+std::string(PCLASSES_PLATFORM_SHARED_LIB_EXTENSION)); + this->m_path.addExtension(std::string(".")+::P::System::SharedLib::extension()); } PluginList m_holder; ::P::System::PathFinder m_path; |