fix compilation / ensure this check only runs when compiling on windows
This commit is contained in:
parent
536b20b164
commit
3c2de70564
@ -473,7 +473,10 @@ elif GetOption('release'):
|
||||
|
||||
if GetOption('static'):
|
||||
if platform == "Windows":
|
||||
env.Append(CPPDEFINES=['_PTW32_STATIC_LIB'])
|
||||
if compilePlatform == "Windows":
|
||||
env.Append(CPPDEFINES=['_PTW32_STATIC_LIB'])
|
||||
else:
|
||||
env.Append(CPPDEFINES=['PTW32_STATIC_LIB'])
|
||||
if msvc:
|
||||
env.Append(CPPDEFINES=['ZLIB_WINAPI'])
|
||||
else:
|
||||
|
@ -17,8 +17,8 @@
|
||||
#undef GetUserName
|
||||
|
||||
// Fix deprecation warnings with recent pthread versions on Windows
|
||||
#ifdef _PTW32_STATIC_LIB
|
||||
#if PTW32_VERSION =< 2, 8, 0, 0
|
||||
#if defined(_PTW32_STATIC_LIB) && defined(WIN)
|
||||
#if PTW32_VERSION <= 2, 8, 0, 0
|
||||
#define PTW32_STATIC_LIB
|
||||
#endif
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user