Re: KDE 3.3 Configure Problems
Dave Feustel <[email protected]> Sun, 22 Aug 2004 10:22:26 -0500
| Newsgroups | gmane.comp.kde.non-linux |
|---|---|
| Message-ID | <[email protected]> |
On Sunday 22 August 2004 08:43 am, Dirk Mueller wrote: > On Sunday 22 August 2004 06:48, Dave Feustel wrote: > > Where is arts configure expecting to find Qt and jpeg support? > > Where did you put them? Obviously not where configure expected to find them. There are no instructions for this at http://developer.kde.org/build/ I am following the instructions for compiling 3.2.x, but I am having problems. arts 1.3.0 configure cannot find libjpeg, libpng or even qt 3.3-mt which I have built and installed. My configure invocation follows: configure \ --with-qt-dir=/home/daf/Qt333/qtlibs-mt \ --with-qt-includes=/home/daf/Qt333/qtlibs-mt/include \ --with-qt-libraries=/home/daf/Qt333/qtlibs-mt/lib \ --with-extra-libs=/home/daf/audiofile/lib \ --with-extra-libs=/home/daf/local/lib \ --with-extra-libs=/home/daf/Qt333/qt-x11-free-3.3.3/src/3rdparty/libjpeg \ --with-extra-libs=/usr/lib \ --with-extra-includes=/usr/local/include \ --with-extra-includes=/usr/include Error Messages displayed at end of configure log for arts-1.3.0: ========================== There is an installation error in jpeg support. You seem to have only one of either the headers _or_ the libraries installed. You may need to either provide correct --with-extra-... options, or the development package of libjpeg6b. You can get a source package of libjpeg from http://www.ijg.org/ Disabling JPEG support. configure: error: Qt (>= Qt 3.3) (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! ========================== Note that there is NO information displayed in config.log about QT not being found. The last 3 lines in config.log are: ====================== #define ksize_t socklen_t configure: exit 1 ====================== The configuration command I used to build Qt-3.3.3-mt is: ========================= make confclean # reconfigure echo "****** starting config *****" ./configure \ -platform openbsd-g++ \ -thread \ -system-zlib \ -system-libpng \ -system-libjpeg \ -plugin-imgfmt-mng \ -no-stl \ -no-g++-exceptions \ -qt-gif \ -no-xinerama \ -prefix /home/daf/Qt333/qtlibs-mt \ -v > config_log-mt ==========================