diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2018-08-22 12:10:42 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2018-08-22 12:12:06 +0200 |
commit | f8435e261c1b3ddd8c0f4d316c431e8f03f5646a (patch) | |
tree | 78c51e1bf66e626b44547f8935836263ac6008da /cmake | |
parent | 6162b63d5e05a7ba6b82800a41c1eecc6cb1d647 (diff) | |
download | libssh-f8435e261c1b3ddd8c0f4d316c431e8f03f5646a.tar.gz libssh-f8435e261c1b3ddd8c0f4d316c431e8f03f5646a.tar.xz libssh-f8435e261c1b3ddd8c0f4d316c431e8f03f5646a.zip |
cmake: Disable include_guard as oss-fuzz's cmake version is too old
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/Modules/CheckCCompilerFlagSSP.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/Modules/CheckCCompilerFlagSSP.cmake b/cmake/Modules/CheckCCompilerFlagSSP.cmake index 870f68a1..e421091a 100644 --- a/cmake/Modules/CheckCCompilerFlagSSP.cmake +++ b/cmake/Modules/CheckCCompilerFlagSSP.cmake @@ -15,8 +15,8 @@ # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. - -include_guard(GLOBAL) +# Requires cmake 3.10 +#include_guard(GLOBAL) include(CheckCSourceCompiles) macro(CHECK_C_COMPILER_FLAG_SSP _FLAG _RESULT) |