mirror of
https://github.com/novatiq/packages.git
synced 2026-07-30 23:33:06 +01:00
gerbera: fix compilation with libcxx 10
Missing header for pid_t. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
--- a/src/util/process.h
|
||||
+++ b/src/util/process.h
|
||||
@@ -35,6 +35,8 @@
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
+#include <unistd.h>
|
||||
+
|
||||
// forward declaration
|
||||
class Config;
|
||||
|
||||
--- a/src/util/process_executor.h
|
||||
+++ b/src/util/process_executor.h
|
||||
@@ -35,6 +35,8 @@
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
+#include <unistd.h>
|
||||
+
|
||||
#include "executor.h"
|
||||
|
||||
class ProcessExecutor : public Executor {
|
||||
Reference in New Issue
Block a user