summaryrefslogtreecommitdiff
path: root/usr.sbin/bootp
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>2011-06-20 07:43:56 +0000
committermrg <mrg@NetBSD.org>2011-06-20 07:43:56 +0000
commit8f84703baf93d0b2a2442796abdfab45d1a9aa41 (patch)
tree6398d06129815d976379b6189c3c3800ef8f8a93 /usr.sbin/bootp
parentae20adbfca56ded70aa2b9ee174aed2d43a9bd20 (diff)
remove most of the remaining HAVE_GCC tests that are always true in
the modern world.
Diffstat (limited to 'usr.sbin/bootp')
-rw-r--r--usr.sbin/bootp/bootptest/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bootp/bootptest/Makefile b/usr.sbin/bootp/bootptest/Makefile
index 9faa9d66f6a..2e3894717fb 100644
--- a/usr.sbin/bootp/bootptest/Makefile
+++ b/usr.sbin/bootp/bootptest/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2008/08/29 00:02:25 gmcgarry Exp $
+# $NetBSD: Makefile,v 1.4 2011/06/20 07:44:01 mrg Exp $
PROG= bootptest
SRCS= bootptest.c print-bootp.c getether.c
@@ -6,6 +6,6 @@ MAN= bootptest.8
.include <bsd.prog.mk>
-.if (defined(HAVE_GCC) && ${HAVE_GCC} == 4) || defined(HAVE_PCC)
+.if defined(HAVE_GCC) || defined(HAVE_PCC)
COPTS.print-bootp.c+= -Wno-pointer-sign
.endif