Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/audio/aeolus/files/patch-imidi.h
16461 views
1
--- imidi.h.orig 2022-05-05 04:24:13 UTC
2
+++ imidi.h
3
@@ -25,7 +25,7 @@
4
#include <stdlib.h>
5
#include <stdio.h>
6
#include <clthreads.h>
7
-#ifdef __linux__
8
+#if defined(__linux__) || defined(__FreeBSD__)
9
#include <alsa/asoundlib.h>
10
#endif
11
#ifdef __APPLE__
12
@@ -61,7 +61,7 @@ class Imidi : public A_thread (private)
13
Lfq_u8 *_qmidi;
14
uint16_t *_midimap;
15
const char *_appname;
16
-#ifdef __linux__
17
+#if defined(__linux__) || defined(__FreeBSD__)
18
snd_seq_t *_handle;
19
#endif
20
#ifdef __APPLE__
21
22