hi,
ich hab gestern, leider ohne Erfolg, versucht auf mein ThinkPad T40 KeePassX zu installieren, da ich Zugang zu einer in Windows erstellten Passwort-Datei brauche. Installiert ist Debian Etch auf dem ThinkPad. Ich bekomme folgende Fehler:
Woran könnte es scheitern? Debian hat in seinen Quellen leider Qt-4.2.1:
Müsste ich evtl. Qt-4.3 selbst kompilieren? Wer hat damit schon Erfahrungen gemacht. Den Lösungsvorschlag hier:
hab ich auch schon ausprobiert. Bei mir klappt es nicht.
Danke für eure Hilfe.
ich hab gestern, leider ohne Erfolg, versucht auf mein ThinkPad T40 KeePassX zu installieren, da ich Zugang zu einer in Windows erstellten Passwort-Datei brauche. Installiert ist Debian Etch auf dem ThinkPad. Ich bekomme folgende Fehler:
Code:
diogenes@blackbox:~/downloads/keepassx-0.3.2$ qmake-qt4
Project MESSAGE: See ?INSTALL? for configuration options.
Project MESSAGE: Install Prefix: /usr
Project MESSAGE: *** Makefile successfully generated.
Project MESSAGE: *** Start make now.
diogenes@blackbox:~/downloads/keepassx-0.3.2$ make
cd src && make -f Makefile
make[1]: Entering directory `/home/diogenes/downloads/keepassx-0.3.2/src?
g++ -c -include ../build/keepassx -pipe -O2 -w -D_REENTRANT -DAUTOTYPE -DGLOBAL_AUTOTYPE -DQT_NO_DEBUG -DQT_XML_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtXml -I/usr/include/qt4 -I. -Ilib -Icrypto -Iplugins/interfaces -Iexport -Iimport -Idialogs -I../build/ui -I../build/moc -o ../build/AutoType_X11.o lib/AutoType_X11.cpp
../build/ui/ui_MainWindow.h: In member function ?void Ui_MainWindow::setupUi(QMainWindow*)?:
../build/ui/ui_MainWindow.h:282: error: ?class QTextBrowser? has no member named ?setOpenLinks?
make[1]: *** [../build/AutoType_X11.o] Fehler 1
make[1]: Leaving directory `/home/diogenes/downloads/keepassx-0.3.2/src?
make: *** [sub-src-make_default] Fehler 2
diogenes@blackbox:~/downloads/keepassx-0.3.2$
Woran könnte es scheitern? Debian hat in seinen Quellen leider Qt-4.2.1:
Code:
QMake version 2.01a
Using Qt version 4.2.1 in /usr/lib
Müsste ich evtl. Qt-4.3 selbst kompilieren? Wer hat damit schon Erfahrungen gemacht. Den Lösungsvorschlag hier:
Code:
I got it to work under Debian etch as follows:
1. Install qt4-dev, qt4-dev-tools, qt4-designer (apt-get install qt4-dev qt4-dev-tools qt4-designer)
2. untarzip the package as stated elsewhere
3. run qmake-qt4 - i also had to cd into the src directory, delete the Makefile that was created and run qmake-qt4 again from there (ie: qmake-qt4; cd src; rm Makefile ; qmake-qt4 ; cd ..
4. this still gave an error about libXtst. I?m sure the better way to fix it would be in the source code but as I am rather lazy, I simply did a ln -s /usr/lib/libXtst.so.6 /usr/lib/libXtst.so (as root)
5. make
6. (as root) make install
7. it works
hab ich auch schon ausprobiert. Bei mir klappt es nicht.
