Browse Source

Merge pull request #3759 from H27CK/opus-mingw-w64

Set _FORTIFY_SOURCE=0 if building Opus with mingw-w64
pull/15/merge
Mat M 6 years ago
committed by GitHub
parent
commit
6ce3d174b7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      externals/opus/CMakeLists.txt

6
externals/opus/CMakeLists.txt

@ -203,7 +203,11 @@ endif()
target_compile_definitions(opus PRIVATE OPUS_BUILD ENABLE_HARDENING)
if(NOT MSVC)
target_compile_definitions(opus PRIVATE _FORTIFY_SOURCE=2)
if(MINGW)
target_compile_definitions(opus PRIVATE _FORTIFY_SOURCE=0)
else()
target_compile_definitions(opus PRIVATE _FORTIFY_SOURCE=2)
endif()
endif()
# It is strongly recommended to uncomment one of these VAR_ARRAYS: Use C99

Loading…
Cancel
Save