summaryrefslogtreecommitdiff
path: root/debian/patches/conditional-stack-protector-all.patch
blob: d58f7eec59b0a384db4140816a5481fd7b662aaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
From: Colin Watson <cjwatson@debian.org>
Date: Fri, 21 Feb 2020 23:23:49 +0000
Subject: Only use -fstack-protector-all if it is supported

This flag isn't available on all Debian ports.

Last-Update: 2020-02-21
---
 CMakeLists.txt | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index c7c5991..07ca5e1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -114,7 +114,10 @@ else()
 	set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wbad-function-cast")
 	set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pedantic")
 	set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pedantic-errors")
-	set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fstack-protector-all")
+	check_c_compiler_flag("-fstack-protector-all" HAVE_STACK_PROTECTOR_ALL)
+	if(HAVE_STACK_PROTECTOR_ALL)
+		set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fstack-protector-all")
+	endif()
 	set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99")
 
 	set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -g2")