diff options
author | grant <grant@pkgsrc.org> | 2004-12-18 16:09:49 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-12-18 16:09:49 +0000 |
commit | 9606ed5d4f19c38b9ae500a22c409628f9961fef (patch) | |
tree | 20d518f33447ca7a8c39cba1270b4af4f0594dc5 /mail/cue | |
parent | e316b8c552c2d1bd5c3de99a830406f00cbfd181 (diff) | |
download | pkgsrc-9606ed5d4f19c38b9ae500a22c409628f9961fef.tar.gz |
make sure IDEA support is only included if USE_IDEA == yes.
fixes part of PR pkg/28542 from Georg Schwarz.
Diffstat (limited to 'mail/cue')
-rw-r--r-- | mail/cue/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/cue/Makefile b/mail/cue/Makefile index 027d57bf7a9..2a2579fdf60 100644 --- a/mail/cue/Makefile +++ b/mail/cue/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.40 2004/12/05 23:03:58 cube Exp $ +# $NetBSD: Makefile,v 1.41 2004/12/18 16:09:49 grant Exp $ DISTNAME= cue-snap-20041025 PKGNAME= cue-20041025 @@ -30,7 +30,7 @@ CONFIGURE_ARGS+= --with-canna=${BUILDLINK_PREFIX.canna} CONFIGURE_ARGS+= --without-canna .endif CONFIGURE_ARGS+= --with-openssl=${SSLBASE} -.if defined(USE_IDEA) +.if defined(USE_IDEA) && !empty(USE_IDEA:M[Yy][Ee][Ss]) CONFIGURE_ARGS+= --enable-idea .endif |