aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
-rw-r--r--src/ChangeLog2
-rw-r--r--src/m/powermac.h73
5 files changed, 9 insertions, 75 deletions
diff --git a/ChangeLog b/ChangeLog
index 7e290555617..b79c6124b52 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * configure.in: Use macppc for Darwin.
4 * configure: Regenerate.
5
12008-07-05 Glenn Morris <rgm@gnu.org> 62008-07-05 Glenn Morris <rgm@gnu.org>
2 7
3 * make-dist (EMACS): Doc fix. 8 * make-dist (EMACS): Doc fix.
diff --git a/configure b/configure
index a4b821ae5d4..c5c3ee640b9 100755
--- a/configure
+++ b/configure
@@ -2462,7 +2462,7 @@ _ACEOF
2462 *-apple-darwin* ) 2462 *-apple-darwin* )
2463 case "${canonical}" in 2463 case "${canonical}" in
2464 i[3456]86-* ) machine=intel386 ;; 2464 i[3456]86-* ) machine=intel386 ;;
2465 powerpc-* ) machine=powermac ;; 2465 powerpc-* ) machine=macppc ;;
2466 * ) unported=yes ;; 2466 * ) unported=yes ;;
2467 esac 2467 esac
2468 opsys=darwin 2468 opsys=darwin
diff --git a/configure.in b/configure.in
index e6a1a7d2aa8..847e98980fe 100644
--- a/configure.in
+++ b/configure.in
@@ -365,7 +365,7 @@ dnl see the `changequote' comment above.
365 *-apple-darwin* ) 365 *-apple-darwin* )
366 case "${canonical}" in 366 case "${canonical}" in
367 i[3456]86-* ) machine=intel386 ;; 367 i[3456]86-* ) machine=intel386 ;;
368 powerpc-* ) machine=powermac ;; 368 powerpc-* ) machine=macppc ;;
369 * ) unported=yes ;; 369 * ) unported=yes ;;
370 esac 370 esac
371 opsys=darwin 371 opsys=darwin
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) */