aboutsummaryrefslogtreecommitdiffstats
path: root/src/m
diff options
context:
space:
mode:
authorKenichi Handa2010-05-19 10:10:29 +0900
committerKenichi Handa2010-05-19 10:10:29 +0900
commit134d1bcded02e066727ece838f14ffc767f76419 (patch)
tree2187c2ac9748400146394bdaefd59f314598685d /src/m
parent2833d9158d6315b59415173df5d47515faac5310 (diff)
parent1fc0ce04bc651fe8adbe822515e4ea7a4e904249 (diff)
downloademacs-134d1bcded02e066727ece838f14ffc767f76419.tar.gz
emacs-134d1bcded02e066727ece838f14ffc767f76419.zip
merge trunk
Diffstat (limited to 'src/m')
-rw-r--r--src/m/ia64.h5
-rw-r--r--src/m/template.h7
2 files changed, 5 insertions, 7 deletions
diff --git a/src/m/ia64.h b/src/m/ia64.h
index acf6c25844f..03ec37b4269 100644
--- a/src/m/ia64.h
+++ b/src/m/ia64.h
@@ -48,11 +48,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
48/* Convert that into an integer that is 100 for a load average of 1.0 */ 48/* Convert that into an integer that is 100 for a load average of 1.0 */
49#define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) 49#define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE)
50 50
51#ifdef __ELF__
52#undef UNEXEC
53#define UNEXEC unexelf.o
54#endif
55
56#ifndef NOT_C_CODE 51#ifndef NOT_C_CODE
57 52
58#ifdef REL_ALLOC 53#ifdef REL_ALLOC
diff --git a/src/m/template.h b/src/m/template.h
index 9b8d2d63055..2807cd913ec 100644
--- a/src/m/template.h
+++ b/src/m/template.h
@@ -69,11 +69,14 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
69 reasonable place to select for it is in the machine description file. */ 69 reasonable place to select for it is in the machine description file. */
70#define NO_SOCK_SIGIO 70#define NO_SOCK_SIGIO
71 71
72/* After adding support for a new system, modify the large case 72/* After adding support for a new machine, modify the large case
73 statement in the `configure' script to recognize reasonable 73 statement in configure.in to recognize reasonable
74 configuration names, and add a description of the system to 74 configuration names, and add a description of the system to
75 `etc/MACHINES'. 75 `etc/MACHINES'.
76 76
77 Check for any tests of $machine in configure.in, and add an entry
78 for the new machine if needed.
79
77 If you've just fixed a problem in an existing configuration file, 80 If you've just fixed a problem in an existing configuration file,
78 you should also check `etc/MACHINES' to make sure its descriptions 81 you should also check `etc/MACHINES' to make sure its descriptions
79 of known problems in that configuration should be updated. */ 82 of known problems in that configuration should be updated. */