summaryrefslogtreecommitdiff
path: root/mail/cucipop
diff options
context:
space:
mode:
authorfredb <fredb@pkgsrc.org>2000-12-01 21:08:03 +0000
committerfredb <fredb@pkgsrc.org>2000-12-01 21:08:03 +0000
commitf338b71c658538d80372d8ac4e9522e68ef4bdff (patch)
treef116b11589eae94719391746fa4108fdb888fc99 /mail/cucipop
parent964806d26f7b76071466d9599e58b87c8167f1c7 (diff)
downloadpkgsrc-f338b71c658538d80372d8ac4e9522e68ef4bdff.tar.gz
Make this work on pre-1.5 systems -- check if USE_INET6 is defined
before testing it's value.
Diffstat (limited to 'mail/cucipop')
-rw-r--r--mail/cucipop/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/cucipop/Makefile b/mail/cucipop/Makefile
index 6681e2cb97a..d017b3a85ab 100644
--- a/mail/cucipop/Makefile
+++ b/mail/cucipop/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2000/11/22 13:05:58 itojun Exp $
+# $NetBSD: Makefile,v 1.3 2000/12/01 21:08:03 fredb Exp $
#
DISTNAME= cucipop-1.31
@@ -18,7 +18,7 @@ BUILD_DEFS+= USE_INET6
.include "../../mk/bsd.prefs.mk"
# to be friendly with pre-1.5 systems
-.if ${USE_INET6} == "YES"
+.if defined(USE_INET6) && ${USE_INET6} == "YES"
MAKE_ENV+= CFLAGS_INET6=-DINET6
.endif