aboutsummaryrefslogtreecommitdiff
path: root/audio/ladish/files/patch-daemon_loader.c
blob: 13312c9c7a0b2c5d2fbac22ed0940f0fe74caebe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- daemon/loader.c.orig	2023-12-18 22:30:22 UTC
+++ daemon/loader.c
@@ -30,10 +30,18 @@
 
 #include <unistd.h>
 #include <fcntl.h>
-#include <pty.h>                /* forkpty() */
+#if !defined(__FreeBSD__)
+#  include <pty.h>                /* forkpty() */
+#else
+#  include <sys/types.h>
+#  include <sys/ioctl.h>
+#  include <termios.h>
+#  include <libutil.h>
+#endif
 #include <sys/wait.h>
 #include <sys/time.h>
 #include <sys/resource.h>
+#include <signal.h>
 
 #include "loader.h"
 #include "../proxies/conf_proxy.h"