diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-06-04 19:05:10 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-06-04 19:05:10 +0000 |
commit | 17dab2c4d889413f3bf2a2229066abf757e5fdc0 (patch) | |
tree | aa1294f536edda45c990a66c96d8229d7f336ff4 /usr.bin/aucat | |
parent | 125ceacbd8639e2c4e49cd684b22e8f7eb665210 (diff) |
don't trust the compiler to generate warnings we care about,
remove -Werror.
ok ratchov@
Diffstat (limited to 'usr.bin/aucat')
-rw-r--r-- | usr.bin/aucat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/aucat/Makefile b/usr.bin/aucat/Makefile index a13dfd5e87b..993d2609fe9 100644 --- a/usr.bin/aucat/Makefile +++ b/usr.bin/aucat/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.7 2008/10/28 21:57:39 miod Exp $ +# $OpenBSD: Makefile,v 1.8 2009/06/04 19:05:09 jsg Exp $ PROG= aucat SRCS= aucat.c abuf.c aparams.c aproc.c dev.c file.c headers.c \ safile.c sock.c pipe.c listen.c wav.c legacy.c -CFLAGS+= -DDEBUG -Wall -Wstrict-prototypes -Werror -Wundef +CFLAGS+= -DDEBUG -Wall -Wstrict-prototypes -Wundef LDADD+= -lsndio .include <bsd.prog.mk> |