Quote Originally Posted by toreo View Post
Hi,

I had the same problem building 4.6 (SDK 2009.05) with MinGW. I discovered that the source as shipped from Nokia contains generated files in tmp\moc. I did a brute-force removal of all such generated files (find . -path '*/tmp/moc/* -type f -exec rm {} \; in cygwin) and were able to successfully build afterwards (crossing fingers, it's building the examples now so I guess the src is good :-)

HTH,
Tore
Thank you! This is it.

I've now been using:
Qt Code:
  1. configure -debug-and-release -opensource -shared -no-qt3support -platform win32-msvc2003 -plugin-sql-oci
To copy to clipboard, switch view to plain text mode 
and it works like a charm.

Hopefully (for all other Qt users) this will be fixed in the distribution.

-Dieter