1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 11:15:13 +03:00
aports/community/thrift/missing-signal-h.patch
2021-07-28 19:12:50 +00:00

14 lines
342 B
Diff

Add missing include for signal.h
--- a/lib/cpp/test/TNonblockingSSLServerTest.cpp
+++ b/lib/cpp/test/TNonblockingSSLServerTest.cpp
@@ -30,6 +30,10 @@
#include <event.h>
+#ifdef __linux__
+#include <signal.h>
+#endif
+
using namespace apache::thrift;
using apache::thrift::concurrency::Guard;
using apache::thrift::concurrency::Monitor;