mirror of https://github.com/qt/qtbase.git
Append additional compose file search paths
On FreeBSD Compose files are stored in different place than on Linux distributions, this patch adds new search paths. Change-Id: Ic1e745801a2f9a53d1af058be8a1dfaced5032a7 Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
This commit is contained in:
parent
1f802afc49
commit
9580f3484d
|
@ -8,7 +8,7 @@ QT += gui-private
|
|||
|
||||
LIBS += $$QMAKE_LIBS_XKBCOMMON
|
||||
QMAKE_CXXFLAGS += $$QMAKE_CFLAGS_XKBCOMMON
|
||||
DEFINES += COMPOSE_X11_PREFIX='\\"$$QMAKE_X11_PREFIX\\"'
|
||||
DEFINES += X11_PREFIX='\\"$$QMAKE_X11_PREFIX\\"'
|
||||
|
||||
SOURCES += $$PWD/main.cpp \
|
||||
$$PWD/qcomposeplatforminputcontext.cpp \
|
||||
|
|
|
@ -73,13 +73,19 @@ TableGenerator::TableGenerator() : m_state(NoErrors),
|
|||
|
||||
void TableGenerator::initPossibleLocations()
|
||||
{
|
||||
// To add an extra system path use the QTCOMPOSE environment variable
|
||||
if (qEnvironmentVariableIsSet("QTCOMPOSE")) {
|
||||
m_possibleLocations.append(QString(qgetenv("QTCOMPOSE")));
|
||||
}
|
||||
|
||||
m_possibleLocations.append(QStringLiteral(COMPOSE_X11_PREFIX "/share/X11/locale"));
|
||||
m_possibleLocations.append(QStringLiteral(COMPOSE_X11_PREFIX "/lib/X11/locale"));
|
||||
// Compose files come as a part of Xlib library. Xlib doesn't provide
|
||||
// a mechanism how to retrieve the location of these files reliably, since it was
|
||||
// never meant for external software to parse compose tables directly. Best we
|
||||
// can do is to hardcode search paths. To add an extra system path use
|
||||
// the QTCOMPOSE environment variable
|
||||
if (qEnvironmentVariableIsSet("QTCOMPOSE"))
|
||||
m_possibleLocations.append(QString::fromLocal8Bit(qgetenv("QTCOMPOSE")));
|
||||
m_possibleLocations.append(QStringLiteral("/usr/share/X11/locale"));
|
||||
m_possibleLocations.append(QStringLiteral("/usr/local/share/X11/locale"));
|
||||
m_possibleLocations.append(QStringLiteral("/usr/lib/X11/locale"));
|
||||
m_possibleLocations.append(QStringLiteral("/usr/local/lib/X11/locale"));
|
||||
m_possibleLocations.append(QStringLiteral(X11_PREFIX "/share/X11/locale"));
|
||||
m_possibleLocations.append(QStringLiteral(X11_PREFIX "/lib/X11/locale"));
|
||||
}
|
||||
|
||||
void TableGenerator::findComposeFile()
|
||||
|
|
Loading…
Reference in New Issue