Update of /cvsroot/simspark/simspark/spark/salt
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv15726
Modified Files:
Tag: projectx
sharedlibrary.cpp
Log Message:
including fileclasses.h
Index: sharedlibrary.cpp
===================================================================
RCS file: /cvsroot/simspark/simspark/spark/salt/sharedlibrary.cpp,v
retrieving revision 1.3.2.3.2.1
retrieving revision 1.3.2.3.2.2
diff -C2 -d -r1.3.2.3.2.1 -r1.3.2.3.2.2
*** sharedlibrary.cpp 7 Mar 2007 09:57:41 -0000 1.3.2.3.2.1
--- sharedlibrary.cpp 30 Mar 2007 03:35:38 -0000 1.3.2.3.2.2
***************
*** 21,24 ****
--- 21,25 ----
*/
#include "sharedlibrary.h"
+ #include "fileclasses.h"
#include <iostream>
***************
*** 91,95 ****
--plugins/ < - plugins live here - >
*/
! mLibHandle = ::dlopen(("../plugins/" + libName + ".so").c_str(), RTLD_LAZY);
}
if (mLibHandle == 0)
--- 92,96 ----
--plugins/ < - plugins live here - >
*/
! mLibHandle = ::dlopen((RFile::BundlePath() + "Contents/plugins/" + libName + ".so").c_str(), RTLD_LAZY);
}
if (mLibHandle == 0)
|