summaryrefslogtreecommitdiffabout
path: root/microkde/kdecore
Side-by-side diff
Diffstat (limited to 'microkde/kdecore') (more/less context) (ignore whitespace changes)
-rw-r--r--microkde/kdecore/klibloader.cpp24
1 files changed, 19 insertions, 5 deletions
diff --git a/microkde/kdecore/klibloader.cpp b/microkde/kdecore/klibloader.cpp
index 1410308..130cc7c 100644
--- a/microkde/kdecore/klibloader.cpp
+++ b/microkde/kdecore/klibloader.cpp
@@ -159,3 +159,4 @@ KLibFactory* KLibrary::factory()
{
- kdWarning(150) << "KLibrary: The library " << name() << " does not offer an init_" << name() << " function" << endl;
+ qDebug("KLibrary: The library %s does not offer an %s function", name().latin1(), symname.data());
+ kdWarning(150) << "KLibrary: The library " << name().latin1() << " does not offer an init_" << name().latin1() << " function" << endl;
return 0;
@@ -370,4 +371,11 @@ QString KLibLoader::findLibrary( const char * name/*US , const KInstance * insta
pos = 0;
- if (libname.find('.', pos) < 0)
+/*US
+ if (libname.find('.', pos) < 0) {
libname += ".la";
+ }
+*/
+//US in the microedition we work only with shared libraries.
+ if (libname.find('.', pos) < 0) {
+ libname += ".so";
+ }
@@ -380,2 +388,8 @@ QString KLibLoader::findLibrary( const char * name/*US , const KInstance * insta
{
+//US at this point the libname must exist as real filesname. No expansions will be made later
+// in findResources. Because of that we prepend the lib prefix here to the name
+//US I add also the "lib" prefix. I do not how could this could have worked before without it?
+ libname.insert(pos, "lib");
+
+
//US libfile = instance->dirs()->findResource( "module", libname );
@@ -397,2 +411,5 @@ QString KLibLoader::findLibrary( const char * name/*US , const KInstance * insta
self()->d->errorMessage = i18n("Library files for \"%1\" not found in paths").arg(libname);
+
+ qDebug("KLibLoader::library could not find library: %s", libname.data());
+
}
@@ -456,5 +473,2 @@ KLibrary* KLibLoader::library( const char *name )
- const QString & qpeDir = QPEApplication::qpeDir();
- libfile = qpeDir + libfile;
-//US QLibrary *lib = new QLibrary( qpeDir + "/plugins/korganizer/libopiekabc.so", QLibrary::Immediately );
QLibrary *qlib = new QLibrary( libfile.latin1(), QLibrary::Immediately );