diff options
author | tron <tron> | 1999-08-26 14:51:47 +0000 |
---|---|---|
committer | tron <tron> | 1999-08-26 14:51:47 +0000 |
commit | 393e33f78a94f1a6a99366346841a46ca8795053 (patch) | |
tree | 2bb5a14494ccb1997ac92a42bc7100269741f61d /editors | |
parent | f5913b2e85da6efe16f83885d41df6127b1a19df (diff) | |
download | pkgsrc-393e33f78a94f1a6a99366346841a46ca8795053.tar.gz |
Use "--with-dialogs=athena" instead of "--with-dialogs=athena3d" if
"${XAW_TYPE}" is set to "standard". Fixes PR pkg/8279.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/xemacs/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/editors/xemacs/Makefile b/editors/xemacs/Makefile index 4865c6a022c..ce922d07323 100644 --- a/editors/xemacs/Makefile +++ b/editors/xemacs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 1999/08/25 13:37:35 agc Exp $ +# $NetBSD: Makefile,v 1.13 1999/08/26 14:51:47 tron Exp $ # FreeBSD Id: Makefile,v 1.1.1.1 1997/09/03 19:27:57 gj Exp DISTNAME= xemacs-21.1.6 @@ -32,7 +32,11 @@ BUILD_DEFS+= USE_XFACE XAW_TYPE?= 3d +.if (${XAW_TYPE} == "standard") +WITH_DIALOGS= --with-dialogs=athena +.else WITH_DIALOGS= --with-dialogs=athena3d +.endif .if defined(USE_XFACE) && ${USE_XFACE} == YES WITH_XFACE= --with-xface=yes |