This is a known problem when compiling....................it has to do with the qt libs and kde being out of sync with all the latest changes in code being done in kde............the UIC is the User Interface Compiler, and compiles the widgets used for the GUI....
There's a workaround, but is not always reliable.................open up the 'configure' script file in a text editor and search for this phrase: [code:1]grep klineedit [/code:1] You should come across a line similar to this: [code:1] if test -f actest.cpp && grep klineedit actest.cpp > /dev/null; then [/code:1]
Change the part with 'grep klineedit' to read: [code:1]grep -i klineedit[/code:1] -OR- [code:1]grep KLineEdit [/code:1]
While this will allow the configure to go smoothly, it's hit or miss whether the 'make' command will work or not.................................Another workaround is to revert back to an earlier version of QT than the version you currently have installed......
HTH
---thegeekster