summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authorIngo Feinerer <feinerer@logic.at>2020-05-09 12:03:20 +0200
committerAaron Marcher <me@drkhsh.at>2020-11-30 21:24:33 +0100
commit9ac721c23fb640de2a6d1f84c84a79b2ccc26691 (patch)
tree39236fa49f4142ff526ca55ba1958e307cf0e6a9 /config.mk
parentaaf279f6ddfb48146fc1a579efd83a55722910b5 (diff)
downloadslstatus-9ac721c23fb640de2a6d1f84c84a79b2ccc26691.tar.gz
Use the sioctl_open(3) OpenBSD API to access vol
Starting with OpenBSD 6.7 regular users cannot access raw audio devices anymore, for improved security. Instead use the sioctl_open(3) API to access and manipulate audio controls exposed by sndiod(8). On the first call a permanent connection is established with the running sndiod daemon, and call-back functions are registered which are triggered when audio controls are changed (e.g., a USB headset is attached) or when the volume is modified. On subsequent calls we poll for changes; if there are no volume changes this costs virtually nothing. Joint work with Alexandre Ratchov
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/config.mk b/config.mk
index 3b32b7c..d88695c 100644
--- a/config.mk
+++ b/config.mk
@@ -14,6 +14,7 @@ X11LIB = /usr/X11R6/lib
CPPFLAGS = -I$(X11INC) -D_DEFAULT_SOURCE
CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os
LDFLAGS = -L$(X11LIB) -s
+# OpenBSD: add -lsndio
LDLIBS = -lX11
# compiler and linker