Date: Thu, 26 Aug 2021 23:41:30 GMT From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: aa8568904fd6 - main - devel/folly: Fix build by adding missing #include <signal.h> Message-ID: <202108262341.17QNfUO8014031@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=aa8568904fd662611d3d8480bcf38c6e11856477 commit aa8568904fd662611d3d8480bcf38c6e11856477 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2021-08-26 23:40:37 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2021-08-26 23:41:24 +0000 devel/folly: Fix build by adding missing #include <signal.h> Reported by: fallout --- devel/folly/files/patch-folly_executors_QueueObserver.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/devel/folly/files/patch-folly_executors_QueueObserver.h b/devel/folly/files/patch-folly_executors_QueueObserver.h new file mode 100644 index 000000000000..39963f950316 --- /dev/null +++ b/devel/folly/files/patch-folly_executors_QueueObserver.h @@ -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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108262341.17QNfUO8014031>