1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

devel/folly: Fix build by adding missing #include <signal.h>

Reported by:	fallout
This commit is contained in:
Yuri Victorovich 2021-08-26 16:40:37 -07:00
parent c1ce749c29
commit aa8568904f

View File

@ -0,0 +1,13 @@
- workaround for https://github.com/facebook/folly/issues/1637
--- folly/executors/QueueObserver.h.orig 2021-08-26 23:37:53 UTC
+++ folly/executors/QueueObserver.h
@@ -23,6 +23,8 @@
#include <folly/Portability.h>
+#include <signal.h>
+
namespace folly {
class RequestContext;