diff options
author | marcel <marcel@FreeBSD.org> | 2004-07-18 19:33:56 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2004-07-18 19:33:56 +0000 |
commit | 820f19dbd57754ea107b71b5f1dde3bfd5b89c58 (patch) | |
tree | 810f49278d9023960d6f3a1cf637059b88cdfa4f /lib/libthread_db | |
parent | bfb6f90a9eeb6d250ab63fba2e7501f78a24821a (diff) | |
download | FreeBSD-src-820f19dbd57754ea107b71b5f1dde3bfd5b89c58.zip FreeBSD-src-820f19dbd57754ea107b71b5f1dde3bfd5b89c58.tar.gz |
This library is not WARNS=2 clean for -O2 builds, because we include
headers from libpthread that are not WARNS=2 clean for -O2 builds.
Lower the WARNS level to 1. This is the highest level possible for
now.
Diffstat (limited to 'lib/libthread_db')
-rw-r--r-- | lib/libthread_db/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthread_db/Makefile b/lib/libthread_db/Makefile index 5825cc9..c94636b 100644 --- a/lib/libthread_db/Makefile +++ b/lib/libthread_db/Makefile @@ -9,7 +9,7 @@ SRCS+= libpthread_db.c libpthread_md.c SRCS+= libc_r_db.c libc_r_md.c SRCS+= libthr_db.c INCS= thread_db.h -WARNS?= 2 +WARNS?= 1 CFLAGS+=-I. -I${.CURDIR} |