Emacs decides between v8 and v9 based on "__arch64__". So define it.

Desired by:	tmm
This commit is contained in:
David E. O'Brien 2002-09-12 17:19:09 +00:00
parent 4d90773dea
commit 3b812710d0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103261

View File

@ -18,10 +18,13 @@ You should have received a copy of the GNU General Public License
along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* FreeBSD needs's the platform name (sparc64) defined. */
/* $FreeBSD$ */
/* FreeBSD needs's the platform name (sparc64) defined.
Emacs needs to know if the arch is 64 or 32-bits. */
#undef CPP_CPU64_DEFAULT_SPEC
#define CPP_CPU64_DEFAULT_SPEC "-D__sparc64__ -D__sparc_v9__"
#define CPP_CPU64_DEFAULT_SPEC "-D__sparc64__ -D__sparc_v9__ -D__arch64__"
#undef CPP_PREDEFINES
#define CPP_PREDEFINES FBSD_CPP_PREDEFINES