diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-06 01:34:36 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-06 01:34:36 +0000 |
commit | 508d9d750b6502e07b3c8978b7c2261a1892c640 (patch) | |
tree | b5143fc3e72c520263352ffff2d85d7b1a72683c /sys | |
parent | 427f60dd4777b8e472114218365901b898ba0cfe (diff) |
Remove -Wcast-qual unless someone has a way to make it not care
about discarding "volatile". Implicit casts via prototypes cause
major headaches in conjunction with volatile variables.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/alpha/conf/Makefile.alpha | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/conf/Makefile.alpha b/sys/arch/alpha/conf/Makefile.alpha index 81c9c73fc7d..ab66b0b0c69 100644 --- a/sys/arch/alpha/conf/Makefile.alpha +++ b/sys/arch/alpha/conf/Makefile.alpha @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.alpha,v 1.13 1997/04/20 10:57:23 niklas Exp $ +# $OpenBSD: Makefile.alpha,v 1.14 1997/07/06 01:34:35 millert Exp $ # $NetBSD: Makefile.alpha,v 1.27 1996/12/01 06:12:25 jonathan Exp $ # Makefile for OpenBSD @@ -38,7 +38,7 @@ INCLUDES= -I. -I$S/arch -I$S -nostdinc CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -Dalpha CDIAGFLAGS?= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ - -Wcast-qual -Wno-uninitialized -Wno-format + -Wno-uninitialized -Wno-format CMACHFLAGS= -mno-fp-regs CFLAGS= ${DEBUG} -O2 ${CDIAGFLAGS} ${CMACHFLAGS} ${COPTS} |