remove most of the remaining HAVE_GCC tests that are always true in

the modern world.
This commit is contained in:
mrg
2011-06-20 07:43:56 +00:00
parent e56c1f58dd
commit 174f8a4a36
3 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.10 2008/08/29 00:02:25 gmcgarry Exp $
# $NetBSD: Makefile,v 1.11 2011/06/20 07:44:03 mrg Exp $
PROG= mopd
SRCS= mopd.c process.c
@@ -9,6 +9,6 @@ DPADD+= ${LIBUTIL}
.include <bsd.prog.mk>
.if (defined(HAVE_GCC) && ${HAVE_GCC} == 4) || defined(HAVE_PCC)
.if defined(HAVE_GCC) || defined(HAVE_PCC)
COPTS.process.c+= -Wno-pointer-sign
.endif