commit 798809ce02528d5954e0b1d524f44c29503a7407
Author:     [email protected] <[email protected]>
AuthorDate: Fri Jan 1 16:52:57 2021 +0100
Commit:     drkhsh <[email protected]>
CommitDate: Wed Oct 26 21:24:14 2022 +0200

    Make volume component work on FreeBSD
    
    - Edit compile instructions
    - Reuse OpenBSD sndio implementation

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>
diff --git a/config.def.h b/config.def.h
index 93a875a..f76b60c 100644
--- a/config.def.h
+++ b/config.def.h
@@ -59,7 +59,7 @@ static const char unknown_str[] = "n/a";
  * uptime              system uptime                   NULL
  * username            username of current user        NULL
  * vol_perc            OSS/ALSA volume in percent      mixer file (/dev/mixer)
- *                                                     NULL on OpenBSD
+ *                                                     NULL on OpenBSD/FreeBSD
  * wifi_perc           WiFi signal in percent          interface name (wlan0)
  * wifi_essid          WiFi ESSID                      interface name (wlan0)
  */
diff --git a/config.mk b/config.mk
index 2516e6e..6cce683 100644
--- a/config.mk
+++ b/config.mk
@@ -15,7 +15,7 @@ CPPFLAGS = -I$(X11INC) -D_DEFAULT_SOURCE
 CFLAGS   = -std=c99 -pedantic -Wall -Wextra -Os
 LDFLAGS  = -L$(X11LIB) -s
 # OpenBSD: add -lsndio
-# FreeBSD: add -lkvm
+# FreeBSD: add -lkvm -lsndio
 LDLIBS   = -lX11
 
 # compiler and linker

Reply via email to