diff options
author | michaelbuch12@gmail.com <michaelbuch12@gmail.com> | 2021-01-01 16:52:57 +0100 |
---|---|---|
committer | drkhsh <me@drkhsh.at> | 2022-10-26 21:24:14 +0200 |
commit | 7d2fda143178149cc4dc352fd9ab9ffa6e287cb6 (patch) | |
tree | a76cf9a7e0531805b5014ebe9e771a5495c72c3e /components/volume.c | |
parent | 73d18b8395699ffcd1fa91184cbb5dd1c04c172c (diff) |
Make volume component work on FreeBSD
- Edit compile instructions
- Reuse OpenBSD sndio implementation
Diffstat (limited to 'components/volume.c')
-rw-r--r-- | components/volume.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/volume.c b/components/volume.c index b6665da..32f7817 100644 --- a/components/volume.c +++ b/components/volume.c @@ -7,7 +7,7 @@ #include "../util.h" -#if defined(__OpenBSD__) +#if defined(__OpenBSD__) | defined(__FreeBSD__) #include <sys/queue.h> #include <poll.h> #include <sndio.h> |