summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSérgio Faria <sergio91pt@gmail.com>2015-01-07 01:23:41 (GMT)
committerSérgio Faria <sergio91pt@gmail.com>2015-01-07 01:55:51 (GMT)
commit3ad2f98da0e37bf66dfa13279b54567e8fd80dcb (patch)
tree8051d1a1e42838628abd2ed6ede4ea0ce89c3bf9
parent2fb7a2eb8d3237e46747b0f923475b9dc3cac921 (diff)
downloadmxe-3ad2f98da0e37bf66dfa13279b54567e8fd80dcb.zip
mxe-3ad2f98da0e37bf66dfa13279b54567e8fd80dcb.tar.gz
mxe-3ad2f98da0e37bf66dfa13279b54567e8fd80dcb.tar.bz2
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.
-rw-r--r--src/mingw-w64.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mingw-w64.mk b/src/mingw-w64.mk
index fffd282..0dd8d47 100644
--- a/src/mingw-w64.mk
+++ b/src/mingw-w64.mk
@@ -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