summaryrefslogtreecommitdiff
path: root/lib/libcrypt
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 /lib/libcrypt
parentae20adbfca56ded70aa2b9ee174aed2d43a9bd20 (diff)
remove most of the remaining HAVE_GCC tests that are always true in
the modern world.
Diffstat (limited to 'lib/libcrypt')
-rw-r--r--lib/libcrypt/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypt/Makefile b/lib/libcrypt/Makefile
index 6783cc582ed..befd1162231 100644
--- a/lib/libcrypt/Makefile
+++ b/lib/libcrypt/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.21 2008/08/29 00:02:22 gmcgarry Exp $
+# $NetBSD: Makefile,v 1.22 2011/06/20 07:43:58 mrg Exp $
USE_SHLIBDIR= yes
@@ -25,6 +25,6 @@ LDSTATIC?= -static
.include <bsd.lib.mk>
.endif
-.if (defined(HAVE_GCC) && ${HAVE_GCC} == 4) || defined(HAVE_PCC)
+.if defined(HAVE_GCC) || defined(HAVE_PCC)
COPTS.crypt-sha1.c+= -Wno-pointer-sign
.endif