Quote:
Originally Posted by ericshliao
More info for developers:
When I execute fbreader in Scrachbox, it will execute to
Code:
handle = dlopen(it->c_str(), RTLD_NOW);
the first parameter passed to dlopen is:
"-prefix-/fbreader/lib/zlibrary/ui/zlui-gtk.so"
and dlopen() will return a non-zero value. Then fbreader will continue. On iLiad, dlopen returned 0 to handle, henceforth fbreader stopped.
|
This path is not right. To check where it comes from, look at the first line of the function:
Code:
const std::string pluginPath = std::string(LIBDIR) + "/zlibrary/ui";
So most likely configure step didn't work right and LIBDIR variable was not set correctly.