diff options
author | markd <markd@pkgsrc.org> | 2004-04-19 15:39:34 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2004-04-19 15:39:34 +0000 |
commit | ff99c6f0707daedc51eeedfda6419356243f7fb3 (patch) | |
tree | b546b4c6531592421a7f1ecdf45bd412a32cdcfb /editors | |
parent | 1c06e42f21398566d51a7c21718d478f9136a069 (diff) | |
download | pkgsrc-ff99c6f0707daedc51eeedfda6419356243f7fb3.tar.gz |
Move include of bsd.prefs.mk before the test of EMACS_USE_XAW3D so the
later can actually work.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/emacs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/emacs/Makefile b/editors/emacs/Makefile index 8b2296a5775..07b9766d4e6 100644 --- a/editors/emacs/Makefile +++ b/editors/emacs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.71 2004/04/12 10:53:07 xtraeme Exp $ +# $NetBSD: Makefile,v 1.72 2004/04/19 15:39:34 markd Exp $ # FreeBSD Id: Makefile,v 1.30 1997/12/14 02:03:53 asami Exp DISTNAME= emacs-21.3 @@ -35,12 +35,12 @@ CONFIGURE_ARGS+= --with-gif .include "../../graphics/png/buildlink3.mk" CONFIGURE_ARGS+= --with-png +.include "../../mk/bsd.prefs.mk" + .if defined(EMACS_USE_XAW3D) && !empty(EMACS_USE_XAW3D:M[Yy][Ee][Ss]) .include "../../x11/Xaw3d/buildlink3.mk" .endif -.include "../../mk/bsd.prefs.mk" - # This matches NetBSD <1.7 releases and 1.6A-1.6P, where ld is <2.13.2.1. .if ${OPSYS} == "NetBSD" && \ (empty(OS_VERSION:M1.[0-5]*) && \ |