29 lines
806 B
Diff
29 lines
806 B
Diff
|
From 13a35bdb64615e381c5e1151cdd4e78bba71a6db Mon Sep 17 00:00:00 2001
|
||
|
From: michael-grunder <michael.grunder@gmail.com>
|
||
|
Date: Fri, 28 Aug 2020 12:35:01 -0700
|
||
|
Subject: [PATCH] Explicitly set c99 in CMake
|
||
|
|
||
|
See #869
|
||
|
|
||
|
[Retrieved from:
|
||
|
https://github.com/redis/hiredis/commit/13a35bdb64615e381c5e1151cdd4e78bba71a6db]
|
||
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||
|
---
|
||
|
CMakeLists.txt | 3 +++
|
||
|
1 file changed, 3 insertions(+)
|
||
|
|
||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||
|
index 1beccc69a..4cbd438d7 100644
|
||
|
--- a/CMakeLists.txt
|
||
|
+++ b/CMakeLists.txt
|
||
|
@@ -22,6 +22,9 @@ MESSAGE("Detected version: ${VERSION}")
|
||
|
|
||
|
PROJECT(hiredis VERSION "${VERSION}")
|
||
|
|
||
|
+# Hiredis requires C99
|
||
|
+SET(CMAKE_C_STANDARD 99)
|
||
|
+
|
||
|
SET(ENABLE_EXAMPLES OFF CACHE BOOL "Enable building hiredis examples")
|
||
|
|
||
|
SET(hiredis_sources
|