summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorgrant <grant>2002-08-21 02:43:44 +0000
committergrant <grant>2002-08-21 02:43:44 +0000
commit7604f97b1d74bc2b7d797c847a3b7322a7108e02 (patch)
treeddc8b0a52d3c8d0a0a20293b67556dd0432d6554 /www
parent98b4f6b824060459431620cbdfbab5a201eb15a7 (diff)
downloadpkgsrc-7604f97b1d74bc2b7d797c847a3b7322a7108e02.tar.gz
check that USE_INET6 is defined.
remove extraneous parenthesis around .if (${FOO} ..) conditions.
Diffstat (limited to 'www')
-rw-r--r--www/bozohttpd/Makefile4
-rw-r--r--www/wwwoffle/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/www/bozohttpd/Makefile b/www/bozohttpd/Makefile
index 76a47530cd2..cabaca38364 100644
--- a/www/bozohttpd/Makefile
+++ b/www/bozohttpd/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.20 2002/08/05 16:37:49 mrg Exp $
+# $NetBSD: Makefile,v 1.21 2002/08/21 02:43:45 grant Exp $
#
DISTNAME= bozohttpd-5.13
@@ -19,7 +19,7 @@ MAKE_ENV+= BINDIR=${PREFIX}/libexec MANDIR=${PREFIX}/man
.include "../../mk/bsd.prefs.mk"
-.if defined(USE_INET6) && (${USE_INET6} == "YES")
+.if defined(USE_INET6) && ${USE_INET6} == "YES"
CPPFLAGS+= -DINET6
.endif
diff --git a/www/wwwoffle/Makefile b/www/wwwoffle/Makefile
index 5a9056f46c5..86428e3fe91 100644
--- a/www/wwwoffle/Makefile
+++ b/www/wwwoffle/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.42 2002/08/19 22:03:04 fredb Exp $
+# $NetBSD: Makefile,v 1.43 2002/08/21 02:43:45 grant Exp $
DISTNAME= wwwoffle-2.7d
CATEGORIES= www
@@ -77,7 +77,7 @@ finish:
.include "../../mk/bsd.prefs.mk"
-.if ${USE_INET6} == "YES"
+.if defined(USE_INET6) && ${USE_INET6} == "YES"
CONFIGURE_ARGS+= --with-ipv6
.endif