author | kergoth <kergoth> | 2002-12-14 20:21:52 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-12-14 20:21:52 (UTC) |
commit | 0d7b4eb3989daf2a8f7f14a7c35737e9960aa264 (patch) (unidiff) | |
tree | ce3ced39beb8622e205be1049a0b18934fcc1e96 /inputmethods/keyboard | |
parent | 43e77a30c7bc23f5f304cc3f429a148fc63049c9 (diff) | |
download | opie-0d7b4eb3989daf2a8f7f14a7c35737e9960aa264.zip opie-0d7b4eb3989daf2a8f7f14a7c35737e9960aa264.tar.gz opie-0d7b4eb3989daf2a8f7f14a7c35737e9960aa264.tar.bz2 |
keyboard, dvorak, and multikey all depend on libqpickboard.so, but libqpickboard.so resides in /opt/QtPalmtop/plugins/inputmethods, which of course is in neither LD_LIBRARY_PATH, the ld.so.cache, or the rpath. Added it to the rpath.
-rw-r--r-- | inputmethods/keyboard/keyboard.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inputmethods/keyboard/keyboard.pro b/inputmethods/keyboard/keyboard.pro index 540d177..c6c331e 100644 --- a/inputmethods/keyboard/keyboard.pro +++ b/inputmethods/keyboard/keyboard.pro | |||
@@ -1,27 +1,28 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= keyboard.h \ | 3 | HEADERS= keyboard.h \ |
4 | keyboardimpl.h | 4 | keyboardimpl.h |
5 | SOURCES= keyboard.cpp \ | 5 | SOURCES= keyboard.cpp \ |
6 | keyboardimpl.cpp | 6 | keyboardimpl.cpp |
7 | TARGET = qkeyboard | 7 | TARGET = qkeyboard |
8 | DESTDIR = ../../plugins/inputmethods | 8 | DESTDIR = ../../plugins/inputmethods |
9 | INCLUDEPATH += $(OPIEDIR)/include | 9 | INCLUDEPATH += $(OPIEDIR)/include |
10 | DEPENDPATH += ../$(OPIEDIR)/include ../../launcher | 10 | DEPENDPATH += ../$(OPIEDIR)/include ../../launcher |
11 | LIBS += -lqpe -L$(OPIEDIR)/plugins/inputmethods -lqpickboard | 11 | LIBS += -lqpe -L$(OPIEDIR)/plugins/inputmethods -lqpickboard |
12 | QMAKE_LFLAGS+= -Wl,-rpath,/opt/QtPalmtop/plugins/inputmethods | ||
12 | VERSION = 1.0.0 | 13 | VERSION = 1.0.0 |
13 | 14 | ||
14 | TRANSLATIONS = ../../i18n/de/libqkeyboard.ts \ | 15 | TRANSLATIONS = ../../i18n/de/libqkeyboard.ts \ |
15 | ../../i18n/en/libqkeyboard.ts \ | 16 | ../../i18n/en/libqkeyboard.ts \ |
16 | ../../i18n/es/libqkeyboard.ts \ | 17 | ../../i18n/es/libqkeyboard.ts \ |
17 | ../../i18n/fr/libqkeyboard.ts \ | 18 | ../../i18n/fr/libqkeyboard.ts \ |
18 | ../../i18n/hu/libqkeyboard.ts \ | 19 | ../../i18n/hu/libqkeyboard.ts \ |
19 | ../../i18n/ja/libqkeyboard.ts \ | 20 | ../../i18n/ja/libqkeyboard.ts \ |
20 | ../../i18n/ko/libqkeyboard.ts \ | 21 | ../../i18n/ko/libqkeyboard.ts \ |
21 | ../../i18n/no/libqkeyboard.ts \ | 22 | ../../i18n/no/libqkeyboard.ts \ |
22 | ../../i18n/pl/libqkeyboard.ts \ | 23 | ../../i18n/pl/libqkeyboard.ts \ |
23 | ../../i18n/pt/libqkeyboard.ts \ | 24 | ../../i18n/pt/libqkeyboard.ts \ |
24 | ../../i18n/pt_BR/libqkeyboard.ts \ | 25 | ../../i18n/pt_BR/libqkeyboard.ts \ |
25 | ../../i18n/sl/libqkeyboard.ts \ | 26 | ../../i18n/sl/libqkeyboard.ts \ |
26 | ../../i18n/zh_CN/libqkeyboard.ts \ | 27 | ../../i18n/zh_CN/libqkeyboard.ts \ |
27 | ../../i18n/zh_TW/libqkeyboard.ts | 28 | ../../i18n/zh_TW/libqkeyboard.ts |