-Wpointer-sign is supported by gcc 4 only.
authormiod <miod@openbsd.org>
Fri, 23 Jan 2015 21:21:23 +0000 (21:21 +0000)
committermiod <miod@openbsd.org>
Fri, 23 Jan 2015 21:21:23 +0000 (21:21 +0000)
regress/usr.bin/ssh/unittests/Makefile.inc

index 2f43134..c022b04 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.inc,v 1.2 2014/06/24 01:14:18 djm Exp $
+#      $OpenBSD: Makefile.inc,v 1.3 2015/01/23 21:21:23 miod Exp $
 
 .include <bsd.own.mk>
 .include <bsd.obj.mk>
@@ -29,7 +29,6 @@ CDIAGFLAGS+=  -Wmissing-declarations
 CDIAGFLAGS+=   -Wmissing-prototypes
 CDIAGFLAGS+=   -Wparentheses
 CDIAGFLAGS+=   -Wpointer-arith
-CDIAGFLAGS+=   -Wpointer-sign
 CDIAGFLAGS+=   -Wreturn-type
 CDIAGFLAGS+=   -Wshadow
 CDIAGFLAGS+=   -Wsign-compare
@@ -40,6 +39,7 @@ CDIAGFLAGS+=  -Wtrigraphs
 CDIAGFLAGS+=   -Wuninitialized
 CDIAGFLAGS+=   -Wunused
 .if ${COMPILER_VERSION} == "gcc4"
+CDIAGFLAGS+=   -Wpointer-sign
 CDIAGFLAGS+=   -Wold-style-definition
 .endif