Merge pull request #33063 from yeonghoey/mingw-secure-api-31

Specify MINGW_HAS_SECURE_API=1
This commit is contained in:
Rémi Verschelde 2019-10-25 21:59:42 +02:00 committed by GitHub
commit 34d4c2ed81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -331,6 +331,7 @@ def configure_mingw(env):
env.Append(LIBS=['mingw32', 'opengl32', 'dsound', 'ole32', 'd3d9', 'winmm', 'gdi32', 'iphlpapi', 'shlwapi', 'wsock32', 'ws2_32', 'kernel32', 'oleaut32', 'dinput8', 'dxguid', 'ksuser', 'imm32', 'bcrypt', 'avrt', 'uuid'])
env.Append(CPPFLAGS=['-DMINGW_ENABLED'])
env.Append(CPPFLAGS=['-DMINGW_HAS_SECURE_API=1'])
# resrc
env.Append(BUILDERS={'RES': env.Builder(action=build_res_file, suffix='.o', src_suffix='.rc')})