PDA

View Full Version : libqt4 4.1.1 required


waspbr
November 2nd, 2009, 05:37 PM
hello everyone,

I am compiling this program and as it turns out it requires qt4 4.1.1 libraries, karmic has v. 4.5.* . Does anyone know how I can get around this?

checking for Qt4 libraries >= 4.1.1... configure: error: You need Qt libraries >= 4.1.1


thanks in advance

SevenMachines
November 3rd, 2009, 11:30 AM
4.5 libraries should work for the configure script as far as I can see ( as they are greater than or equal to 4.1.1 ) Might be a case of the script not finding the headers
With libqt4-dev installed, look at
$./configure --help
Theres usually an option to specify the location of the qt headers manually, might be worth a try

waspbr
November 4th, 2009, 11:11 AM
thanks for the tip, I will look into it