Saturday, May 11, 2024
6
rated 0 times [  6] [ 0]  / answers: 1 / hits: 35923  / 2 Years ago, sat, september 17, 2022, 10:59:05

I'm trying to install a program and i used the following command:



./configure


But, an error occurred:



    checking for Qt... configure: error: Qt (>= Qt 3.2) (headers and libraries) not found. Please check your installation!


Config.log file:



    configure:28268: checking for Qt
configure: 28333: /usr/include/qt4/qstyle.h
configure: 28333: /usr/lib/qt3/include/qstyle.h
configure: 28333: /usr/lib/qt3/qstyle.h
configure: 28333: /usr/lib/qt/include/qstyle.h
configure: 28333: /usr/lib/qt/qstyle.h
configure: 28333: /usr/share/qt3/include/qstyle.h
configure: 28333: /usr/share/qt3/qstyle.h
configure: 28333: /usr/local/qt/include/qstyle.h
configure: 28333: /usr/include/qt/qstyle.h
configure: 28333: /usr/include/qstyle.h
configure: 28333: /usr/X11R6/include/X11/qt/qstyle.h
configure: 28333: /usr/X11R6/include/qt/qstyle.h
configure: 28333: /usr/X11R6/include/qt2/qstyle.h
configure: 28333: /usr/include/qt3/qstyle.h
configure: 28333: ./qstyle.h
configure:28451: rm -rf SunWS_cache; g++ -o conftest -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -W -Wpointer-arith -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -O2 -Wformat-security -Wmissing-format-attribute -fno-exceptions -fno-check-new -fno-common -INO -I. -DQT_THREAD_SUPPORT -D_REENTRANT -L/usr/lib/qt3 -L/usr/lib conftest.cc -lqt-mt -ldl -lXext -lX11 -lSM -lICE -lpthread 1>&5
conftest.cc:2:21: fatal error: qglobal.h: No such file or directory
#include <qglobal.h>
^
compilation terminated.
configure:28454: $? = 1
configure: failed program was:
#include "confdefs.h"
#include <qglobal.h>
#include <qapplication.h>
#include <qcursor.h>
#include <qstylefactory.h>
#include <private/qucomextra_p.h>
#if ! (QT_VERSION >= 0x030200)
#error 1
#endif

int main() {
(void)QStyleFactory::create(QString::null);
QCursor c(Qt::WhatsThisCursor);
return 0;
}
configure:28494: error: Qt (>= Qt 3.2) (headers and libraries) not found. Please check your installation!
For more details about this problem, look at the end of config.log.


I've installed:



sudo apt-get install libqt4-*
sudo apt-get install qt5-default
sudo apt-get install qtcreator


However, i still got the same error. Anyone can help me?



@Edit: Maybe the problem is the PATH to Qt files, because i found "qstyle.h" in the folder /usr/include/qt4/qt, for example.


More From » installation

 Answers
5

Running Debian Wheezy I installed the following packages to successfully configure:



libqt4-dev (4:4.8.2+dfsg-11)
libqt4-dev-bin (4:4.8.2+dfsg-11)
libqt4-opengl-dev (4:4.8.2+dfsg-11)
libqtwebkit-dev (2.2.1-5)
qt4-linguist-tools (4:4.8.2+dfsg-11)
qt4-qmake (4:4.8.2+dfsg-11)

[#28244] Sunday, September 18, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
oleard

Total Points: 344
Total Questions: 105
Total Answers: 113

Location: Bonaire
Member since Tue, Sep 20, 2022
2 Years ago
oleard questions
Mon, Sep 26, 22, 18:21, 2 Years ago
Mon, Nov 1, 21, 21:27, 3 Years ago
Sat, May 7, 22, 20:47, 2 Years ago
Sun, Oct 2, 22, 01:10, 2 Years ago
;