Mercurial > emacs
comparison src/m/macppc.h @ 44601:4be8406ebef9
Don't define HAVE_ALLOCA, C_ALLOCA and STACK_DIRECTION, now set by autoconf.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Mon, 15 Apr 2002 13:23:33 +0000 |
parents | 0bd966523c89 |
children | 695cf19ef79e d7ddb3e565de |
comparison
equal
deleted
inserted
replaced
44600:42f01619b785 | 44601:4be8406ebef9 |
---|---|
1 /* machine description file For the powerpc Macintosh. | 1 /* machine description file For the powerpc Macintosh. |
2 Copyright (C) 1994, 2001 Free Software Foundation, Inc. | 2 Copyright (C) 1994, 2001, 2002 Free Software Foundation, Inc. |
3 | 3 |
4 This file is part of GNU Emacs. | 4 This file is part of GNU Emacs. |
5 | 5 |
6 GNU Emacs is free software; you can redistribute it and/or modify | 6 GNU Emacs is free software; you can redistribute it and/or modify |
7 it under the terms of the GNU General Public License as published by | 7 it under the terms of the GNU General Public License as published by |
48 #define LOAD_AVE_TYPE long | 48 #define LOAD_AVE_TYPE long |
49 | 49 |
50 /* Convert that into an integer that is 100 for a load average of 1.0 */ | 50 /* Convert that into an integer that is 100 for a load average of 1.0 */ |
51 | 51 |
52 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) | 52 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) |
53 | |
54 /* Define C_ALLOCA if this machine does not support a true alloca | |
55 and the one written in C should be used instead. | |
56 Define HAVE_ALLOCA to say that the system provides a properly | |
57 working alloca function and it should be used. | |
58 Define neither one if an assembler-language alloca | |
59 in the file alloca.s should be used. */ | |
60 | |
61 #define HAVE_ALLOCA | |
62 | 53 |
63 /* Some really obscure 4.2-based systems (like Sequent DYNIX) | 54 /* Some really obscure 4.2-based systems (like Sequent DYNIX) |
64 * do not support asynchronous I/O (using SIGIO) on sockets, | 55 * do not support asynchronous I/O (using SIGIO) on sockets, |
65 * even though it works fine on tty's. If you have one of | 56 * even though it works fine on tty's. If you have one of |
66 * these systems, define the following, and then use it in | 57 * these systems, define the following, and then use it in |