diff options
author | 2003-05-01 23:34:51 +0000 | |
---|---|---|
committer | 2003-05-01 23:34:51 +0000 | |
commit | 55feb720ba213ac834918f86405bc70e489ca15b (patch) | |
tree | 8c969bcafb2c79aed89204c7f9bcb3f1f3f56c19 /lib/libpthread | |
parent | add eso, opl, and midi, and clean the audio stuff up a bit (diff) | |
download | wireguard-openbsd-55feb720ba213ac834918f86405bc70e489ca15b.tar.xz wireguard-openbsd-55feb720ba213ac834918f86405bc70e489ca15b.zip |
Enable compiler warning options but NOT -Werror
Diffstat (limited to 'lib/libpthread')
-rw-r--r-- | lib/libpthread/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libpthread/Makefile b/lib/libpthread/Makefile index bcccd6f9d58..3b2cbb399f0 100644 --- a/lib/libpthread/Makefile +++ b/lib/libpthread/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 2003/01/31 04:46:16 marc Exp $ +# $OpenBSD: Makefile,v 1.19 2003/05/01 23:34:51 marc Exp $ # # The pthread library is formed from the FreeBSD uthread sources of @@ -11,8 +11,8 @@ LIBCSRCDIR= ${.CURDIR}/../libc LIB= pthread LINTFLAGS= -z CFLAGS+= -DPTHREAD_KERNEL -D_POSIX_THREADS -D_THREAD_SAFE -Wall -#CFLAGS+= -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -#CFLAGS+= -Wmissing-prototypes -Wsign-compare -Werror +CFLAGS+= -Wpointer-arith -Wwrite-strings -Wstrict-prototypes +CFLAGS+= -Wmissing-prototypes -Wsign-compare # -Werror CFLAGS+= -I${SRCDIR}/uthread CFLAGS+= -I${SRCDIR}/include CFLAGS+= -I${LIBCSRCDIR}/include |