1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 04:35:39 +03:00
aports/testing/thrift/missing-signal-h.patch
Patrick Gansterer 6fddbb97eb testing/thrift: new aport
https://thrift.apache.org/
Language-independent software stack for RPC implementation
2020-06-10 18:51:16 +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;