diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2008-10-26 08:49:45 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2008-10-26 08:49:45 +0000 |
commit | 13e276c156d9b9f3a5064700b447d8e90d89bebf (patch) | |
tree | 7c47aad8fcd6da2de5156ec12853b26ee468547e /lib/Makefile | |
parent | c1f6af90f771854093903e82e7de930b96a15d25 (diff) |
add minimal server capability to aucat(1). When started in server
mode, it listens on an unix socket and mixes/demultiplexes any number
of full-duplex streams, doing necessary format conversions and
resampling on the fly.
programs can use the new libsa(3) library to play and record audio.
The library provides a very simple API to connect to the audio server;
if aucat(1) isn't running, it uses the audio(4) driver transparently
instead.
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index 1a120c8555a..3f4ce25b7da 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.53 2007/10/18 19:21:36 espie Exp $ +# $OpenBSD: Makefile,v 1.54 2008/10/26 08:49:43 ratchov Exp $ # $NetBSD: Makefile,v 1.20.4.1 1996/06/14 17:22:38 cgd Exp $ SUBDIR= csu libarch libc libcompat libcurses \ libdes libedit libevent libexpat \ libform libkeynote libkvm libl libm libmenu \ libocurses libossaudio libpanel libpcap libpthread librpcsvc \ - libskey libsectok libssl libusbhid libutil libwrap liby libz + libsa libskey libsectok libssl libusbhid libutil libwrap liby libz .include <bsd.own.mk> |