diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-04-06 16:24:55 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-04-06 16:24:55 +0100 |
commit | 1453a30a4401a291cc236fa8db1d0ddd798024be (patch) | |
tree | 6f9a2a6b325218d5b44ceee115118dd76f294341 /src/libcryptobox | |
parent | cc26eb2ccafa9543bd24e65bdc5e8e975fc19390 (diff) | |
download | rspamd-1453a30a4401a291cc236fa8db1d0ddd798024be.tar.gz rspamd-1453a30a4401a291cc236fa8db1d0ddd798024be.zip |
[Minor] Oops, fix macro condition
Diffstat (limited to 'src/libcryptobox')
-rw-r--r-- | src/libcryptobox/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcryptobox/CMakeLists.txt b/src/libcryptobox/CMakeLists.txt index dbc49eba9..82a477a8a 100644 --- a/src/libcryptobox/CMakeLists.txt +++ b/src/libcryptobox/CMakeLists.txt @@ -72,7 +72,7 @@ IF("${ARCH}" STREQUAL "x86_64") #endif #ifndef __clang__ -#if __GNUC__ <= 5 && __GNUC_MINOR__ <= 0 +#if __GNUC__ < 6 #error Broken due to compiler bug #endif #endif |