Hi,
I'm trying to get started doing some KDE programming, and as an introduction I'm going through the tutorial at http://developer.kde.org/~larrosa/tutorial/index.html. They use a configure script to compile the programs, though, and I haven't been able to get configure to work. Here's the output:
config.log doesn't seem to offer any clues:
I think I have all of the qt development libraries and headers installed. I have libqt3-headers, libqt3-mt-dev, libqt4-core, libqt4-dev, libqt4-qui, and some others.
/etc/ld.so.conf:
I've run out of ideas! Sure would appreciate your help in getting this set up.
I'm trying to get started doing some KDE programming, and as an introduction I'm going through the tutorial at http://developer.kde.org/~larrosa/tutorial/index.html. They use a configure script to compile the programs, though, and I haven't been able to get configure to work. Here's the output:
Code:
ryan@zt3000:~/kdetutorial-1.2$ ./configure checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking target system type... i686-pc-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking for -p flag to install... yes checking whether build environment is sane... yes ... checking for libjpeg... -ljpeg checking for Qt... configure: error: Qt (>= Qt 3.0.2) (headers and libraries) not found. Please check your installation! For more details about this problem, look at the end of config.log.
Code:
ryan@zt3000:~/kdetutorial-1.2$ tail config.log #define SIZEOF_INT 4 #define SIZEOF_LONG 4 #define SIZEOF_CHAR_P 4 #define SIZEOF_CHAR 1 #define HAVE_LIBZ 1 #define HAVE_LIBPNG 1 #define HAVE_LIBJPEG 1 #define HAVE_LIBPTHREAD 1 configure: exit 1
/etc/ld.so.conf:
Code:
ryan@zt3000:~$ cat /etc/ld.so.conf include /etc/ld.so.conf.d/*.conf /usr/include/qt3/
Comment