Re: Qt 4.4.0 compile error
Quote:
dshow.h: No such file or directory
Looks like you don't have the necessary DirectShow/DirectX SDK installed.
Re: Qt 4.4.0 compile error
AAA, I understood that it is not mandatory to have it.
Re: Qt 4.4.0 compile error
I've installed it, how do i tell now qt 4.4.0 installation where are these files?
Re: Qt 4.4.0 compile error
Quote:
Originally Posted by
jpn
Looks like you don't have the necessary DirectShow/DirectX SDK installed.
It's MinGW - there's no DirectX-SDK. They're shipped with MinGW's w32api package which is installed by default (but maybe not the latest version, currently it's 3.11)
Re: Qt 4.4.0 compile error
Well, I've ugpraded mingw to latest version - same error shown.
Re: Qt 4.4.0 compile error
As I said before - dshow.h is part of mingw. It's in MinGW\include . If it isn't there, you're MinGW installation is either broken or to old. Try to update to latest w32api !!
Re: Qt 4.4.0 compile error
I've done everything you asked in your latest post, I still get error ...
Re: Qt 4.4.0 compile error
Why won't you understand???
Is dshow.h in MinGW\include
-> NO -> your MinGW installation is broken
-> YES -> you don't use the gcc from the MinGW installation but another one
Re: Qt 4.4.0 compile error
ok ok, sorry man for misunderstanding, it's morning. :D
Ok:
- I have dshow.h in include dir
- the only compiler installed on this comp is the one in mingw directory
Do I need to specify additional include directories while running configure or mingw32-make?
Re: Qt 4.4.0 compile error
Normally you don't have to do this - MinGW finds it's own headers alone. But in this case it's worth a try. Also try a small test application (only a simple main function) where you include <dshow.h> and see if it compiles on commandline.