diff options
author | tron <tron@pkgsrc.org> | 1999-09-03 22:00:52 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-09-03 22:00:52 +0000 |
commit | a9af877984f7b430d48340603595473605fd204d (patch) | |
tree | 26bf200091d87b3629bde9a752928611eea97ae5 /mail | |
parent | 8806522d1706ce8f1f4dce2fe1a0452f191d880e (diff) | |
download | pkgsrc-a9af877984f7b430d48340603595473605fd204d.tar.gz |
Compare "${USE_INET6}" explicitly with "YES" so that you can override
settings at the command line.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/fetchmail/Makefile | 4 | ||||
-rw-r--r-- | mail/qpopper/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile index 5f59f06adbc..f87133a3e1e 100644 --- a/mail/fetchmail/Makefile +++ b/mail/fetchmail/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.51 1999/08/22 20:20:57 frueauf Exp $ +# $NetBSD: Makefile,v 1.52 1999/09/03 22:00:52 tron Exp $ # DISTNAME= fetchmail-5.0.7 @@ -23,7 +23,7 @@ BUILD_DEFS+= USE_KERBEROS4 USE_INET6 CONFIGURE_ARGS+=--with-kerberos=yes RESTRICTED= uses Kerberos encryption code .endif -.if defined(USE_INET6) +.if defined(USE_INET6) && ${USE_INET6} == YES CONFIGURE_ARGS+=--enable-inet6 .endif diff --git a/mail/qpopper/Makefile b/mail/qpopper/Makefile index 4a0f0769fe4..5e163faa3c0 100644 --- a/mail/qpopper/Makefile +++ b/mail/qpopper/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 1999/08/18 09:01:49 agc Exp $ +# $NetBSD: Makefile,v 1.18 1999/09/03 22:00:52 tron Exp $ # DISTNAME= qpopper2.53 @@ -24,7 +24,7 @@ BUILD_DEFS+= QPOPPER_SERVERMODE USE_INET6 .if defined(QPOPPER_SERVERMODE) CONFIGURE_ARGS+= --enable-servermode .endif -.if defined(USE_INET6) +.if defined(USE_INET6) && ${USE_INET6} == YES CONFIGURE_ENV+= O_DEFS="${O_DEFS}" CFLAGS="-DINET6" .endif |