I am building qt 4.3.4 with mingw on windows vista pro.
on mingw32-make I have the following error:
Qt Code:
  1. gcc -c -O2 -Wall -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_BOOTSTRAPPED -DQT_RCC -DQT_LITE_UNICODE
  2. -DQT_NO_DATASTREAM -DQT_NO_THREAD
  3. -DQT_NO_QOBJECT -DQT_NO_UNICODETABLES -DQT_NO_LIBRARY -DQT_NO_SYSTEMLOCALE -DQT_NO_GEOM_VARIAN
  4. T -DQT_NODLL -I"..\..\corelib\arch\
  5. generic" -I"..\..\..\include" -I"." -I"..\..\..\include\QtCore" -I"..\..\..\include\QtXml" -I"
  6. ..\..\3rdparty\zlib" -I"." -I"..\..
  7. \..\mkspecs\win32-g++" -o tmp\obj\release_shared\crc32.o ..\..\3rdparty\zlib\crc32.c
  8. In file included from ..\..\3rdparty\zlib\crc32.c:29:
  9. ..\..\3rdparty\zlib\/zutil.h:21:24: stddef.h: No such file or directory
  10. ..\..\3rdparty\zlib\/zutil.h:23:22: string.h: No such file or directory
  11. ..\..\3rdparty\zlib\/zutil.h:24:22: stdlib.h: No such file or directory
  12. ..\..\3rdparty\zlib\/zutil.h:38:23: errno.h: No such file or directory
  13. ..\..\3rdparty\zlib\crc32.c:36:24: limits.h: No such file or directory
  14. mingw32-make[4]: *** [tmp/obj/release_shared/crc32.o] Error 1
  15. mingw32-make[4]: Leaving directory `D:/qt/qt-win-opensource-src-4.3.4/src/tools/rcc'
  16. mingw32-make[3]: *** [release] Error 2
  17. mingw32-make[3]: Leaving directory `D:/qt/qt-win-opensource-src-4.3.4/src/tools/rcc'
  18. mingw32-make[2]: *** [all] Error 2
  19. mingw32-make[2]: Leaving directory `D:/qt/qt-win-opensource-src-4.3.4/src/tools/rcc'
  20. mingw32-make[1]: *** [sub-rcc-make_default-ordered] Error 2
  21. mingw32-make[1]: Leaving directory `D:/qt/qt-win-opensource-src-4.3.4'
  22. mingw32-make: *** [all] Error 2
To copy to clipboard, switch view to plain text mode 

the headers are in the path c:\mingw\include
Qt Code:
  1. D:\qt\qt-win-opensource-src-4.3.4>path
  2. PATH=C:\Windows\system32;C\Windows;C\Windows\System32\Wbem;C:\mingw\libexec\gcc\mingw32\3.4.2;C:\MinGW\bin;C\mingw\include;C:\mingw\lib
To copy to clipboard, switch view to plain text mode 
and with configure I have:
Qt Code:
  1. Environment:
  2. INCLUDE=
  3. Unset
  4. LIB=
  5. Unset
  6. PATH=
  7. C:\Windows\system32
  8. C:\Windows
  9. C:\Windows\System32\Wbem
  10. C:\mingw\libexec\gcc\mingw32\3.4.2
  11. C:\MinGW\bin
  12. C:\mingw\include
  13. c:\mingw\lib
To copy to clipboard, switch view to plain text mode 
any Idea ? thanks ...