diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_mingw32.GNU | 3 | ||||
-rw-r--r-- | include/makeinclude/wrapper_macros.GNU | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/makeinclude/platform_mingw32.GNU b/include/makeinclude/platform_mingw32.GNU index 25147077d10..99a1fe34788 100644 --- a/include/makeinclude/platform_mingw32.GNU +++ b/include/makeinclude/platform_mingw32.GNU @@ -40,6 +40,9 @@ versioned_so=0 # MinGW doesn't have rwho rwho = 0 +# MinGW has wfmo +wfmo = 1 + # Disable auto-import warnings. The MingW linker has a problem with imports # See https://sourceforge.net/tracker/?func=detail&atid=102435&aid=683455&group_id=2435 # for the details why to do this. diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU index eae746422f0..a814245bda1 100644 --- a/include/makeinclude/wrapper_macros.GNU +++ b/include/makeinclude/wrapper_macros.GNU @@ -74,6 +74,7 @@ # variable can also be set to specify the version info # to append to the name - it should have a leading '.' - # else it defaults to .ACE_MAJOR.ACE_MINOR.ACE_BETA. +# wfmo Build with wfmo support (Win32 only) # # Usually, users do not need to be concerned with make targets. # Just enter "make" on the command line to build. A few notable @@ -903,6 +904,11 @@ ifndef rwho rwho = 1 endif +# If not explicitly is set that we have wfmo, assume we don't have it. +ifndef wfmo + wfmo = 0 +endif + #---------------------------------------------------------------------------- # Conditional macro definitions #---------------------------------------------------------------------------- |