summaryrefslogtreecommitdiffstats
path: root/debian/patches/enable-strsignal.patch
blob: dacd6ded00ce503a79674bc3e3672c4c7fea0d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: This defines HAVE_REENTRANT_STRSIGNAL as sys_siglist no longer
  exists with glibc 2.32 and all programs should use strsignal instead.
Forwarded: no
Last-Update: 2020-09-21

Index: ceph/CMakeLists.txt
===================================================================
--- ceph.orig/CMakeLists.txt
+++ ceph/CMakeLists.txt
@@ -505,7 +505,7 @@ if(WITH_THREAD_SAFE_RES_QUERY)
   set(HAVE_THREAD_SAFE_RES_QUERY 1 CACHE INTERNAL "Thread safe res_query supported.")
 endif()
 
-option(WITH_REENTRANT_STRSIGNAL "strsignal is reentrant" OFF)
+option(WITH_REENTRANT_STRSIGNAL "strsignal is reentrant" ON)
 if(WITH_REENTRANT_STRSIGNAL)
   set(HAVE_REENTRANT_STRSIGNAL 1 CACHE INTERNAL "Reentrant strsignal is supported.")
 endif()