From: Edward on
On Mandriva LE2005 x86_64
When trying to ./configure kaffeine am getting the following error message:

checking for Qt... configure: error: Qt (>= Qt 3.2 and < 4.0) (library
qt-mt) not found. Please check your installation!
For more details about this problem, look at the end of config.log.
Make sure that you have compiled Qt with thread support!

I have installed "Qt" from the DVD in the Mandrake Control Centre.

How do I compile Qt with thread support?

Any assistance will be greatly appreciated

--
Rgds.
Edward
Registered Linux User No.224802
From: phlux0r on
On Wed, 21 Sep 2005 16:27:23 +1000, Edward wrote:

> On Mandriva LE2005 x86_64
> When trying to ./configure kaffeine am getting the following error message:
>
> checking for Qt... configure: error: Qt (>= Qt 3.2 and < 4.0) (library
> qt-mt) not found. Please check your installation!
> For more details about this problem, look at the end of config.log.
> Make sure that you have compiled Qt with thread support!
>
> I have installed "Qt" from the DVD in the Mandrake Control Centre.
>
> How do I compile Qt with thread support?
>
> Any assistance will be greatly appreciated

Find out what version of Qt you've got installed and then see if you can
upgrade it via urpmi to the required one. No need to compile qt. I
suppose you have a good reason to compile your own kaffeine as opposed to
installing it from mandriva rpm's :).
From: phlux0r on
On Wed, 21 Sep 2005 20:21:07 +1200, phlux0r wrote:
> suppose you have a good reason to compile your own kaffeine as opposed to
> installing it from mandriva rpm's :).

Ah, right, I see, you want a 64 bit version... cool... sorry.
From: Jon Solberg on
Edward wrote:
> On Mandriva LE2005 x86_64
> When trying to ./configure kaffeine am getting the following error message:
>
> checking for Qt... configure: error: Qt (>= Qt 3.2 and < 4.0) (library
> qt-mt) not found. Please check your installation!
> For more details about this problem, look at the end of config.log.
> Make sure that you have compiled Qt with thread support!
>
> I have installed "Qt" from the DVD in the Mandrake Control Centre.

Do you have the qt-devel packages installed? What does

$ rpm -qva|grep qt

give?

If you indeed have the development files needed installed you will
probably need to tell configure where to find the Qt libraries. Run
'./configure --help' to get a list of options, such as these:

Code:
--with-qt-dir=DIR where the root of Qt is installed
--with-qt-includes=DIR where the Qt includes are.
--with-qt-libraries=DIR where the Qt library is installed.


Try something like './configure --with-qt-dir=/usr/lib/qt3/lib64' and
see what it does.

--
Jon Solberg (remove "nospam" from email address).
From: Edward on
Jon Solberg wrote:

> Edward wrote:
>> On Mandriva LE2005 x86_64
>> When trying to ./configure kaffeine am getting the following error
>> message:
>>
>> checking for Qt... configure: error: Qt (>= Qt 3.2 and < 4.0) (library
>> qt-mt) not found. Please check your installation!
>> For more details about this problem, look at the end of config.log.
>> Make sure that you have compiled Qt with thread support!
>>
>> I have installed "Qt" from the DVD in the Mandrake Control Centre.
>
> Do you have the qt-devel packages installed? What does
>
> $ rpm -qva|grep qt
>
> give?
>
> If you indeed have the development files needed installed you will
> probably need to tell configure where to find the Qt libraries. Run
> './configure --help' to get a list of options, such as these:
>
> Code:
> --with-qt-dir=DIR where the root of Qt is installed
> --with-qt-includes=DIR where the Qt includes are.
> --with-qt-libraries=DIR where the Qt library is installed.
>
>
> Try something like './configure --with-qt-dir=/usr/lib/qt3/lib64' and
> see what it does.
>
This is what I got:
[egh(a)localhost ~]$ rpm -qva|grep qt
qt3-example-3.3.4-7.1.102mdk
lib64qt3-pch-headers-3.3.4-7.1.102mdk
qt3-common-3.3.4-7.1.102mdk
lib64unixODBC1-qt-2.2.10-3mdk
lib64dbus-qt-1_0-devel-0.23.2-2mdk
libqt3-3.3.4-7.1.102mdk
pinentry-qt-0.7.1-4mdk
qtella-0.6.4-1plf
uim-qt-0.4.6-6mdk
libqt3-devel-3.3.4-7.1.102mdk
lib64dbus-qt-1_0-0.23.2-2mdk
unixODBC-gui-qt-2.2.10-3mdk
lib64qt3-psql-3.3.4-7.1.102mdk
lib64qt3-mysql-3.3.4-7.1.102mdk
lib64qt3-devel-3.3.4-7.1.102mdk
lib64qt3-3.3.4-7.1.102mdk
lib64qt3-odbc-3.3.4-7.1.102mdk
gtk-qt-engine-0.7-0.20050303.2mdk
[egh(a)localhost ~]$

Then:

[egh(a)localhost ~]$ su
Password:
[root(a)localhost egh]# cd /
[root(a)localhost /]# ./configure --with-qt-dir=/usr/lib/qt3/lib64
bash: ./configure: No such file or directory
[root(a)localhost /]#
Any suggestions?

--
Rgds.
Edward
Registered Linux User No.224802