diff options
author | Sérgio Faria <sergio91pt@gmail.com> | 2015-01-07 01:23:41 (GMT) |
---|---|---|
committer | Sérgio Faria <sergio91pt@gmail.com> | 2015-01-07 01:55:51 (GMT) |
commit | 3ad2f98da0e37bf66dfa13279b54567e8fd80dcb (patch) | |
tree | 8051d1a1e42838628abd2ed6ede4ea0ce89c3bf9 /src/mingw-w64.mk | |
parent | 2fb7a2eb8d3237e46747b0f923475b9dc3cac921 (diff) | |
download | mxe-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.
Diffstat (limited to 'src/mingw-w64.mk')
-rw-r--r-- | src/mingw-w64.mk | 3 |
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 |