This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
Fix a build error on FreeBSD
Include <signal.h> in order to make `kill`, `SIGKILL` available.
tags/v2.1-rc1
JP Cimalando
Filipe Coelho
<falktx@falktx.com>
5 years ago
parent
462bb589cc
commit
84b069810a
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
source/bridges-plugin/CarlaBridgePlugin.cpp
+ 4
- 1
source/bridges-plugin/CarlaBridgePlugin.cpp
View File
@@ -26,9 +26,12 @@
#include "CarlaMainLoop.hpp"
#include "CarlaMIDI.h"
#ifdef CARLA_OS_UNIX
# include <signal.h>
#endif
#ifdef CARLA_OS_LINUX
# include <sched.h>
# include <signal.h>
# define SCHED_RESET_ON_FORK 0x40000000
#endif
Write
Preview
Loading…
Cancel
Save