diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-08-30 10:47:54 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-08-30 11:13:34 +0300 |
commit | bf3ff35d8c96315c35cf8dc8495be4b488b55cb6 (patch) | |
tree | ae5d32822c3c75a84848389c41ec98be65db447e /scp2/source/winexplorerext | |
parent | bf6c17c7f3fb97b0bd941e93e739dfa3db5eaab6 (diff) |
Adapt for MinGW cross-builds
Adapt some of the DLL names to match conventions we currently use in a
MinGW build. If those are changed to be exactly like when built with
MSVC (for SDK ABI stability reasons), will have to change here, too.
Bypass stuff that we can't build with MinGW when necessary. Should be
synchronized with the corresponding makefiles, obviously. We can't
currently build the Explorer extension or MSI installer custom actions
with MinGW due to lack of some required headers and/or import
libraries.
Diffstat (limited to 'scp2/source/winexplorerext')
-rwxr-xr-x | scp2/source/winexplorerext/makefile.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scp2/source/winexplorerext/makefile.mk b/scp2/source/winexplorerext/makefile.mk index 435ed439987d..0c193c21538a 100755 --- a/scp2/source/winexplorerext/makefile.mk +++ b/scp2/source/winexplorerext/makefile.mk @@ -43,7 +43,8 @@ SCPDEFS+=-DBUILD_X64 SCP_PRODUCT_TYPE=osl -.IF "$(GUI)"=="WNT" +# The Explorer extensions don't build with MinGW +.IF "$(GUI)" == "WNT" && "$(COM)" == "MSC" PARFILES= \ module_winexplorerext.par \ file_winexplorerext.par \ |