aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/m/powermac.h73
2 files changed, 2 insertions, 73 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 98865bfae13..7767dedd291 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12008-07-10 Dan Nicolaescu <dann@ics.uci.edu> 12008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
2 2
3 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
4
3 * m/powermac.h: Remove boilerplate comments. 5 * m/powermac.h: Remove boilerplate comments.
4 (NO_REMAP): Remove unused definition. 6 (NO_REMAP): Remove unused definition.
5 7
diff --git a/src/m/powermac.h b/src/m/powermac.h
deleted file mode 100644
index 4c7cc27d411..00000000000
--- a/src/m/powermac.h
+++ /dev/null
@@ -1,73 +0,0 @@
1/* Machine description file for Apple Power Macintosh
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20
21/* The following line tells the configuration script what sort of
22 operating system this machine is likely to run.
23 USUAL-OPSYS="darwin" */
24
25/* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word
26 is the most significant byte. */
27
28#define WORDS_BIG_ENDIAN
29
30/* Define NO_ARG_ARRAY if you cannot take the address of the first of a
31 * group of arguments and treat it as an array of the arguments. */
32
33#define NO_ARG_ARRAY
34
35/* Define WORD_MACHINE if addresses and such have
36 * to be corrected before they can be used as byte counts. */
37
38/* #define WORD_MACHINE */
39
40/* Now define a symbol for the cpu type, if your compiler
41 does not define it automatically:
42 Ones defined so far include vax, m68000, ns16000, pyramid,
43 orion, tahoe, APOLLO and many others */
44
45/* Use type int rather than a union, to represent Lisp_Object */
46/* This is desirable for most machines. */
47
48#define NO_UNION_TYPE
49
50/* Data type of load average, as read out of kmem. */
51
52#define LOAD_AVE_TYPE long
53
54/* Convert that into an integer that is 100 for a load average of 1.0 */
55
56#define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE)
57
58/* Some really obscure 4.2-based systems (like Sequent DYNIX)
59 * do not support asynchronous I/O (using SIGIO) on sockets,
60 * even though it works fine on tty's. If you have one of
61 * these systems, define the following, and then use it in
62 * config.h (or elsewhere) to decide when (not) to use SIGIO.
63 *
64 * You'd think this would go in an operating-system description file,
65 * but since it only occurs on some, but not all, BSD systems, the
66 * reasonable place to select for it is in the machine description
67 * file.
68 */
69
70/* #define NO_SOCK_SIGIO */
71
72/* arch-tag: d8af08a6-48b3-4c8a-94a0-0b4acae5e1f0
73 (do not change this comment) */