diff options
| author | Christos Margiolis <christos@FreeBSD.org> | 2026-01-12 16:16:35 +0200 |
|---|---|---|
| committer | Christos Margiolis <christos@FreeBSD.org> | 2026-01-12 16:16:35 +0200 |
| commit | f74f891581bc4df20431607de9b761107f6a0aa7 (patch) | |
| tree | 0fa7ada829ad2d1f1e541cfe571c348a04b5b13f /sbin | |
| parent | eccd366b0a8ba7d902fcf0b1bec447926a75c36c (diff) | |
src.opts: Introduce MK_SOUND
PR: 291853
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Reviewed by: zarychtam_plan-b.pwste.edu.pl, markj
Differential Revision: https://reviews.freebsd.org/D54456
Diffstat (limited to 'sbin')
| -rw-r--r-- | sbin/devd/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sbin/devd/Makefile b/sbin/devd/Makefile index 553aecf4ee88..3dab9f7c9a25 100644 --- a/sbin/devd/Makefile +++ b/sbin/devd/Makefile @@ -32,11 +32,6 @@ CONSOLEDIR= ${DEVDDIR} CONSOLE+= moused.conf syscons.conf CONSOLEPACKAGE= console-tools -CONFGROUPS+= SND -SNDDIR= ${DEVDDIR} -SND= snd.conf -SNDPACKAGE= sound - .if ${MK_BLUETOOTH} != "no" CONFGROUPS+= BLUETOOTH BLUETOOTHDIR= ${DEVDDIR} @@ -56,6 +51,13 @@ NVMEDIR= ${DEVDDIR} NVME+= nvmf.conf NVMEPACKAGE= nvme-tools +.if ${MK_SOUND} != "no" +CONFGROUPS+= SND +SNDDIR= ${DEVDDIR} +SND= snd.conf +SNDPACKAGE= sound +.endif + .if ${MK_USB} != "no" DEVD+= uath.conf ulpt.conf .endif |
