mingw-w64: Use --enable-idl so widl can be used.

Any attempt to generate headers for an idl that imports a "standard" idl
will fail if the respective idl files are not in the include path.

MingW-W64 copies the idl .h files but not the idl files unless --enable-idl
is used.
This commit is contained in:
Sérgio Faria 2015-01-07 01:23:41 +00:00
parent 2fb7a2eb8d
commit 3ad2f98da0
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,8 @@ define $(PKG)_BUILD_mingw-w64
cd '$(1).headers-build' && '$(1)/mingw-w64-headers/configure' \
--host='$(TARGET)' \
--prefix='$(PREFIX)/$(TARGET)' \
--enable-sdk=all
--enable-sdk=all \
--enable-idl
$(MAKE) -C '$(1).headers-build' install
endef