forked from Lainports/freebsd-ports
osquery exposes an operating system as a high-performance relational database. This allows you to write SQL-based queries to explore operating system data. With osquery, SQL tables represent abstract concepts such as running processes, loaded kernel modules, open network connections, browser plugins, hardware events or file hashes. WWW: https://osquery.io/ Sponsored by: Beer from wxs@
14 lines
357 B
C++
14 lines
357 B
C++
--- include/osquery/flags.h.orig 2015-05-05 00:16:41 UTC
|
|
+++ include/osquery/flags.h
|
|
@@ -19,7 +19,11 @@
|
|
|
|
#include <osquery/core.h>
|
|
|
|
+#ifdef FREEBSD
|
|
+#define GFLAGS_NAMESPACE gflags
|
|
+#elif !defined(GFLAGS_NAMESPACE)
|
|
#define GFLAGS_NAMESPACE google
|
|
+#endif
|
|
|
|
namespace boost {
|
|
/// We define a lexical_cast template for boolean for Gflags boolean string
|