Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-gnome
Path: blob/main/emulators/frodo/files/patch-CmdPipe.cpp
16166 views
1
--- CmdPipe.cpp.orig 2002-01-02 21:19:34 UTC
2
+++ CmdPipe.cpp
3
@@ -17,9 +17,11 @@ extern "C" {
4
#include <string.h>
5
#include <signal.h>
6
7
+#if !defined(__FreeBSD__)
8
#if defined(__alpha__)
9
#include <cma.h>
10
#endif
11
+#endif
12
13
#if defined(AIX)
14
#include <sys/select.h>
15
@@ -30,6 +32,9 @@ extern "C" {
16
#if defined(__linux__)
17
#include <sys/time.h>
18
#endif
19
+#if defined(__FreeBSD__)
20
+ #include <sys/time.h>
21
+#endif
22
23
#include <time.h>
24
#include <errno.h>
25
26