diff options
author | cjep <cjep@pkgsrc.org> | 2002-05-20 16:46:29 +0000 |
---|---|---|
committer | cjep <cjep@pkgsrc.org> | 2002-05-20 16:46:29 +0000 |
commit | 011c2c23546ec66b87fd0ff748b6e2606da0bcdc (patch) | |
tree | 1ed52dd7a70617ed4d64e6426537f0255c67da45 | |
parent | 0e53473f707de4bfb3e1ae5a8a222b879b632eb7 (diff) | |
download | pkgsrc-011c2c23546ec66b87fd0ff748b6e2606da0bcdc.tar.gz |
On arm32, use gcc-2.95.3 to avoid egcs compiler error:
/usr/src/gnu/usr.bin/egcs/common/../../../dist/gcc/caller-save.c:657:
Internal compiler error in function insert_save_restore
-rw-r--r-- | editors/xemacs-current/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/editors/xemacs-current/Makefile b/editors/xemacs-current/Makefile index 0262808ac1b..bedc31db56f 100644 --- a/editors/xemacs-current/Makefile +++ b/editors/xemacs-current/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2002/04/05 18:44:01 magick Exp $ +# $NetBSD: Makefile,v 1.7 2002/05/20 16:46:29 cjep Exp $ DISTNAME= xemacs-21.5.5 CATEGORIES= editors @@ -17,6 +17,10 @@ HAS_CONFIGURE= YES PLIST_SUBST+= EMACSVER=xemacs-21.5-b5 MESSAGE_SUBST+= EMACSVER=xemacs-21.5-b5 +.if (${MACHINE_ARCH} == "arm32") +.include "../../lang/gcc/Makefile.gcc" +.endif + .include "../../mk/bsd.prefs.mk" XEMACS_WIDGETS?= lucid |