diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2014-01-18 05:54:53 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2014-01-18 05:54:53 +0000 |
commit | 7dc5604e11eec9135f58378678431ee785a75b8c (patch) | |
tree | dd11f8c4174da0ab949a8e9f7843df03707c1886 /usr.sbin/smtpd/makemap/Makefile | |
parent | f3065c77d0cca5857a685d04097de6b8fea0ca84 (diff) |
Remove -Wbounded: it is now the compiler default.
Diffstat (limited to 'usr.sbin/smtpd/makemap/Makefile')
-rw-r--r-- | usr.sbin/smtpd/makemap/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/makemap/Makefile b/usr.sbin/smtpd/makemap/Makefile index ce47caaefb1..ef2c24fb256 100644 --- a/usr.sbin/smtpd/makemap/Makefile +++ b/usr.sbin/smtpd/makemap/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.21 2013/07/19 21:14:52 eric Exp $ +# $OpenBSD: Makefile,v 1.22 2014/01/18 05:54:51 martynas Exp $ .PATH: ${.CURDIR}/.. @@ -16,7 +16,7 @@ CFLAGS+= -g3 -ggdb -I${.CURDIR}/.. CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wmissing-declarations CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual -CFLAGS+= -Wsign-compare -Wbounded +CFLAGS+= -Wsign-compare CFLAGS+= -DNO_IO SRCS= aliases.c dict.c expand.c limit.c log.c makemap.c parse.y \ |