Re: KDE 3.3 configure - blind as a bat
Andy Fawcett <[email protected]> Mon, 20 Sep 2004 16:11:31 +0300
| Newsgroups | gmane.comp.kde.non-linux |
|---|---|
| Message-ID | <[email protected]> |
On Monday 20 September 2004 04:07, Dave Feustel wrote: > I am trying to configure kde 3.3, but configure does not > find things in spite of my using the --with* options to tell > kde where things are. > =================my config statement > configure \ Dave, > --with-qt-dir=/home/daf/qt-x11-free-3.3.3 \ > --with-qt-includes=/home/daf/Qt333/qtlibs-mt/include \ > --with-qt-libraries=/home/daf/Qt333/qtlibs-mt/lib \ > --with-extra-libraries=/home/daf/Xtra/lib > ===================configure error messages > 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. Make that block: configure \ --with-qt-dir=/home/daf/qt-x11-free-3.3.3 \ --with-qt-includes=/home/daf/Qt333/qtlibs-mt/include \ --with-qt-libraries=/home/daf/Qt333/qtlibs-mt/lib \ --with-extra-libraries=/home/daf/Xtra/lib:/usr/local/lib \ --with-extra-includes=/usr/local/include ...and try again. This is what we need on FreeBSD to pick up extra libraries/headers, I'm guessing OpenBSD is similar. A.