Version: 1.4.0 (using KDE KDE 3.5.1) Installed from: Compiled From Sources OS: Linux The following is primarily for my own benefit as a record of how to avoid this problem: PROBLEM: When running make -f Makefile.cvs ./configure --enable-debug --prefix=/usr you amy encounter the error: ============================== checking if UIC has KDE plugins available... no you need to install kdelibs first. If you did install kdelibs, then the Qt version that is picked up by this configure is not the same version you used to compile kdelibs. The Qt Plugin installed by kdelibs is *ONLY* loadable if it is the _same Qt version_, compiled with the _same compiler_ and the same Qt configuration settings. =============================== This is caused by (from config.log): configure:31033: /usr/lib/qt-3.3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -impl actest.h actest.ui > actest.cpp ./configure: line 31034: 17660 Segmentation fault /usr/lib/qt-3.3/bin/uic -L /usr/lib/kde3/plugins/designer -nounload -impl actest.h actest.ui >actest.cpp This in turn is caused by the presence of: /usr/lib/kde3/plugins/designer/kstwdigets.la /usr/lib/kde3/plugins/designer/kstwidgets.so Deleting these files solves the problem.
If there is a better solution please let me know. I'll close this bug report shortly.
Work around has been described