diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2022-05-04 21:50:50 -0700 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2022-05-04 21:50:50 -0700 |
commit | 1b7bb2a4d77342cf7fe341c999fa6405ebbae94c (patch) | |
tree | bcfee50747fc47f88afe9f438c5a53795394f076 /audio/aeolus/files/patch-imidi.h | |
parent | japanese/font-{mplus-ipa,std}: add NO_ARCH (diff) |
audio/aeolus: New port: Synthesised pipe organ emulator
Diffstat (limited to 'audio/aeolus/files/patch-imidi.h')
-rw-r--r-- | audio/aeolus/files/patch-imidi.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/audio/aeolus/files/patch-imidi.h b/audio/aeolus/files/patch-imidi.h new file mode 100644 index 000000000000..4051b193667a --- /dev/null +++ b/audio/aeolus/files/patch-imidi.h @@ -0,0 +1,20 @@ +--- imidi.h.orig 2022-05-05 04:24:13 UTC ++++ imidi.h +@@ -25,7 +25,7 @@ + #include <stdlib.h> + #include <stdio.h> + #include <clthreads.h> +-#ifdef __linux__ ++#if defined(__linux__) || defined(__FreeBSD__) + #include <alsa/asoundlib.h> + #endif + #ifdef __APPLE__ +@@ -61,7 +61,7 @@ class Imidi : public A_thread (private) + Lfq_u8 *_qmidi; + uint16_t *_midimap; + const char *_appname; +-#ifdef __linux__ ++#if defined(__linux__) || defined(__FreeBSD__) + snd_seq_t *_handle; + #endif + #ifdef __APPLE__ |