Darrell Anderson via tde-devels wrote:
Using autogen.sh, attempting to compile kvirc fails:
### CONFIGURE ERROR: ### Can not find the tqt 3.x library file. ### Make sure that tqt is correctly installed on your system, ### and the tqt version is the one requested by this version of kvirc. ### (Usually a greater version is OK too)
[...]
My configure options:
./configure \ --disable-rpath \ --prefix=$INSTALL_DIR \ --sysconfdir=$SYS_CONF_DIR \ --libdir=$LIBDIR \ --mandir=$MANDIR \ --with-qt-dir=$INSTALL_DIR \ --with-qt-includes=$INSTALL_DIR/include \ --with-qt-libraries=$INSTALL_DIR/lib$LIBDIRSUFFIX \ --enable-closure || exit 1
This is more of a guess since I can't replicate the problem, but can you try replacing --with-qt-includes and --with-qt-libraries with --with-tqt-include-dir and --with-tqt-library-dir respectively? The --with-qt* options don't exist in the generated configure file.
The --with-tqt-include-dir should point to the directory which contains "tqiconview.h". (for example: /usr/include/tqt3)
The --with-tqt-library-dir should point to the directory which contains libtqt-mt.so and libtqt.so. (for example: /usr/lib/x86_64-linux-gnu)
You may also need to use --with-kde-include-dir and --with-kde-library-dir which work in similar ways.
mio