diff options
author | tron <tron@pkgsrc.org> | 1999-08-23 08:09:45 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-08-23 08:09:45 +0000 |
commit | e8d095ec727f52991f8422108ed7b4e1f8aece16 (patch) | |
tree | 705a5530fd298c764d422749c534c684aeadd6c9 /editors/xemacs | |
parent | a38e1aab2de6c6123bcdad6a0fe5bb37775bf315 (diff) | |
download | pkgsrc-e8d095ec727f52991f8422108ed7b4e1f8aece16.tar.gz |
Compare "${USE_XFACE}" explicitly with "YES" to allow overriding it via
the command line.
Diffstat (limited to 'editors/xemacs')
-rw-r--r-- | editors/xemacs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/xemacs/Makefile b/editors/xemacs/Makefile index 45f8415b26d..2efddd269eb 100644 --- a/editors/xemacs/Makefile +++ b/editors/xemacs/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.10 1999/08/18 09:13:09 agc Exp $ +# $NetBSD: Makefile,v 1.11 1999/08/23 08:09:45 tron Exp $ # FreeBSD Id: Makefile,v 1.1.1.1 1997/09/03 19:27:57 gj Exp -DISTNAME= xemacs-21.1.4 +DISTNAME= xemacs-21.1.6 CATEGORIES= editors MASTER_SITES= ftp://ftp.xemacs.org/pub/xemacs/xemacs-21.1/ \ ftp://ftp.mpi-sb.mpg.de/pub/gnu/mirror/ftp.xemacs.org/xemacs/xemacs-21.1/ \ @@ -31,7 +31,7 @@ BUILD_DEFS+= USE_XFACE WITH_DIALOGS= --with-dialogs=athena3d -.if defined(USE_XFACE) +.if defined(USE_XFACE) && ${USE_XFACE} == YES WITH_XFACE= --with-xface=yes DEPENDS+= faces-1.6.1:../../mail/faces .else |