LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-14-2005, 10:55 AM   #1
ryedunn
Member
 
Registered: Jul 2003
Location: Chicago
Distribution: Fedora, ubuntu
Posts: 459

Rep: Reputation: 30
./configure


Im trying to use ./configure but getting stopped with the error:
checking for Qt... configure: error: Qt (>= Qt 3.3 and < 4.0) (headers and libraries) not found. Please check your installation!

hmm..okay
./configure --help
--with-qt-includes=DIR where the Qt includes are.
--with-qt-libraries=DIR where the Qt library is installed.

cool... so I try
./configure --with-qt-libraries=/usr/lib/qt3/ --with-qt-includes=/us/lib/qt3/
and
./configure --with-qt-libraries=/usr/lib/qt3/lib --with-qt-includes=/us/lib/qt3/lib

but Im geting the same error. I have googled the error, checked the logs, and read all the docs so now Im coming to you for advice.
Please help,
The GNUbie
 
Old 09-14-2005, 10:58 AM   #2
reddazz
LQ Guru
 
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298

Rep: Reputation: 77
You need to install the qt development libraries (libqt-devel or qt-devel).
 
Old 09-14-2005, 11:13 AM   #3
ryedunn
Member
 
Registered: Jul 2003
Location: Chicago
Distribution: Fedora, ubuntu
Posts: 459

Original Poster
Rep: Reputation: 30
first of all, thank you very much... looks like that worked

just on a side note I think Im going crazy installing all these devel packages just to get this one thing working.
 
Old 09-14-2005, 12:25 PM   #4
ryedunn
Member
 
Registered: Jul 2003
Location: Chicago
Distribution: Fedora, ubuntu
Posts: 459

Original Poster
Rep: Reputation: 30
reddazz,
Check this out...

Superkaramba can't be compiled
because of missing Python libraries/headers.

[root@rdunn superkaramba]# rpm -qa |grep -i libpython*
libpython2.4-2.4.1-3mdk
[root@rdunn superkaramba]# urpmi libpython2.4-devel
The following packages can't be installed because they depend on packages
that are older than the installed ones:
libpython2.4-devel-2.4-5mdk
Continue? (Y/n) Y
The package(s) are already installed

It doesnt look like the devel is installed but urpmi wont let me install it? any thoughts?
 
Old 09-14-2005, 11:09 PM   #5
foo_bar_foo
Senior Member
 
Registered: Jun 2004
Posts: 2,553

Rep: Reputation: 53
seems to me splitting the packages in half one binary and one devel was the stupidest things Linux ever did and now it's like some bizarre tradition like gefilte fish or something.

Can't believe over the years how many people have trouble with it.

basically i think the idea was everyone but developers just use binary packages provided by package manager.

time to storm the capital and demand no more smelly gefilte fish .
 
Old 09-15-2005, 01:50 AM   #6
tkedwards
Senior Member
 
Registered: Aug 2004
Location: Munich, Germany
Distribution: Opensuse 11.2
Posts: 1,549

Rep: Reputation: 52
ryedunn if you go to easyurpmi and setup the repositories you can just get the superkaramba package without having to compile anything.

Quote:
[root@rdunn superkaramba]# rpm -qa |grep -i libpython*
libpython2.4-2.4.1-3mdk
[root@rdunn superkaramba]# urpmi libpython2.4-devel
The following packages can't be installed because they depend on packages
that are older than the installed ones:
libpython2.4-devel-2.4-5mdk
Run Mandrake Update and see if that helps. Its libpython2.4-2.4-5mdk on my 2005LE system (with all updates installed I believe) so its a bit strange that you've got a later version. Do you have any cooker sources configured in your software sources?

Otherwise you could try
Code:
rpm -e --nodeps libpython2.4
and then (straight away before anything breaks! )
Code:
urpmi libpython2.4 libpython2.4-devel
 
Old 09-15-2005, 04:26 AM   #7
reddazz
LQ Guru
 
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298

Rep: Reputation: 77
ryedunn go to easyurpmi as suggested above and setup the main, contrib, plf and updates repositories for the version of Mandrake/Mandriva you are running. Once thats done you can install superkaramba using urpmi or if you want to compile the latest version on your own, setup the repositories then do
Code:
#urpmi --auto-select
#urpmi libpython-devel
 
Old 09-15-2005, 07:57 AM   #8
ryedunn
Member
 
Registered: Jul 2003
Location: Chicago
Distribution: Fedora, ubuntu
Posts: 459

Original Poster
Rep: Reputation: 30
Thank you everyone for being so helpful... The superkaramba version was older than what I needed so I decided to try it manually.. I also reinsalled all the python packages manually but will keep your advice for nextime...

tkedwards: Looks like everything I had was cooker. ... oops

Live and learn.. THANKS AGAIN!
R

Last edited by ryedunn; 09-15-2005 at 08:00 AM.
 
Old 09-15-2005, 01:09 PM   #9
ryedunn
Member
 
Registered: Jul 2003
Location: Chicago
Distribution: Fedora, ubuntu
Posts: 459

Original Poster
Rep: Reputation: 30
oh wow this is cool........

I found a few application that I was hoping on putting together with Superkaramba. It seems like there is no standard so each one requires me to install some new development application. This time it was PyKDE.
Application works great. but now my others fail with something like
Code:
------------------------------------------------------
What does ImportError mean?

It means that I couldn't load a python add-on liquid_weather.py
If this is a regular theme and doesn't use python
extensions, then nothing is wrong.
------------------------------------------------------
hmmm.. just playing around I deleted PyKDE3.11.1-1mdk10.spec. now my old applications work and the new one crashes.

So my question is .. . Is there any way I can have only the new application access PyKDE3.11.1-1mdk10.spec and have the old one ignore it?
 
Old 09-15-2005, 09:03 PM   #10
tkedwards
Senior Member
 
Registered: Aug 2004
Location: Munich, Germany
Distribution: Opensuse 11.2
Posts: 1,549

Rep: Reputation: 52
Quote:
hmmm.. just playing around I deleted PyKDE3.11.1-1mdk10.spec. now my old applications work and the new one crashes.

So my question is .. . Is there any way I can have only the new application access PyKDE3.11.1-1mdk10.spec and have the old one ignore it?
I don't understand your question. A spec file is the script file that you write to package something as an RPM. Could you describe what you're trying to do with it?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Configure dhcpd (Configure DHCP Server) hanserver2004 LinuxQuestions.org Member Success Stories 3 10-23-2006 06:39 AM
ardour wont configure: configure: error: C preprocessor "/lib/cpp" fails sanity check disciple061 Linux - Software 4 01-22-2005 12:35 PM
Configure dhcpd (Configure DHCP Server) hanserver2004 General 1 08-16-2004 01:39 PM
How to use GNU autoconf to generate a new configure from configure.in ?? vanhelsing Programming 5 08-05-2004 10:02 AM
configure: error: when trying to install / configure new software ? met tomfer007 Linux - Software 1 07-25-2004 03:52 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:49 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration