The only reference I can see to a fatal warning with a path like the one you see should only be invoked under exceptional circumstances.
This simple program neither fails nor searches anything like the default path you are seeing:
#include <QtGui>
int main(int argc, char **argv)
{
QGuiApplication app(argc, argv);
qDebug() << db.families();
return 0;
}
#include <QtGui>
int main(int argc, char **argv)
{
QGuiApplication app(argc, argv);
QFontDatabase db;
qDebug() << db.families();
return 0;
}
To copy to clipboard, switch view to plain text mode
Qt 5.1.0 binaries from project on Gentoo Linux.
Does the target machine have fontconfig libraries and a good configuration? Does fc-list work from a command line?
Can you post a minimal program that fails in this way?
You should also provide a failing test case on the bug you have raised because there is far too little information to be useful as it stands. The problem is almost certainly environment and not related the Qt binary packaging.
Bookmarks