diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2012-11-23 07:03:29 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2012-11-23 07:03:29 +0000 |
commit | e0ec54cfb7c1e7d74bad5acd7800df96c1c4d3d4 (patch) | |
tree | dfd9738fc0938d8c3ed1cb3d3ba25202ca3a4472 /usr.bin/aucat/Makefile | |
parent | 42dd4f4c8b798c2f8b9e8544080704a71226370e (diff) |
Remplace aucat server by a new sndiod daemon aimed to be simpler
smaller and faster than aucat. It's a drop in replacement with the
following exceptions that don't affect the default setup:
- The sample rate and the encoding are a per-device parameters
thus -r and -e options must precede the corresponding -f option
- MIDI thru boxes are dynamically created and no -M option
is required anymore, so -M was removed.
- MIDI ports are exposed with a new ``midi/N'' name, rather
than abusing MIDI thru boxes.
with help from armani@, ok deraadt@
Diffstat (limited to 'usr.bin/aucat/Makefile')
-rw-r--r-- | usr.bin/aucat/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/aucat/Makefile b/usr.bin/aucat/Makefile index 18053abfc50..523da803605 100644 --- a/usr.bin/aucat/Makefile +++ b/usr.bin/aucat/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.17 2011/12/09 14:36:42 ratchov Exp $ +# $OpenBSD: Makefile,v 1.18 2012/11/23 07:03:28 ratchov Exp $ PROG= aucat SRCS= aucat.c abuf.c aparams.c aproc.c dev.c midi.c file.c headers.c \ @@ -6,6 +6,4 @@ SRCS= aucat.c abuf.c aparams.c aproc.c dev.c midi.c file.c headers.c \ MAN= aucat.1 CFLAGS+= -Wall -Wstrict-prototypes -Wundef -DDEBUG -I${.CURDIR}/../../lib/libsndio LDADD+= -lsndio -LINKS= ${BINDIR}/aucat ${BINDIR}/sndiod -MLINKS = aucat.1 sndiod.1 .include <bsd.prog.mk> |