svn commit: r482782 - head/sysutils/osquery/files

Jan Beich jbeich at FreeBSD.org
Mon Oct 22 20:28:01 UTC 2018


Author: jbeich
Date: Mon Oct 22 20:27:59 2018
New Revision: 482782
URL: https://svnweb.freebsd.org/changeset/ports/482782

Log:
  sysutils/osquery: unbreak with boost 1.69
  
  In file included from osquery/remote/serializers/json.cpp:11:
  In file included from osquery/core/json.h:15:
  In file included from include/osquery/system.h:23:
  include/osquery/posix/system.h:29:39: error: expected class name
  class DropPrivileges : private boost::noncopyable {
                                        ^
  In file included from osquery/remote/serializers/json.cpp:11:
  In file included from osquery/core/json.h:15:
  include/osquery/system.h:42:36: error: expected class name
  class Initializer : private boost::noncopyable {
                                     ^
  
  PR:		232525

Added:
  head/sysutils/osquery/files/patch-boost-1.69   (contents, props changed)

Added: head/sysutils/osquery/files/patch-boost-1.69
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/osquery/files/patch-boost-1.69	Mon Oct 22 20:27:59 2018	(r482782)
@@ -0,0 +1,13 @@
+https://github.com/facebook/osquery/issues/5266
+
+--- include/osquery/system.h.orig	2018-09-19 05:51:29 UTC
++++ include/osquery/system.h
+@@ -14,6 +14,8 @@
+ #include <mutex>
+ #include <string>
+ 
++#include <boost/noncopyable.hpp>
++
+ #include <osquery/core.h>
+ #include <osquery/mutex.h>
+ 


More information about the svn-ports-all mailing list