aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2007-08-25 20:12:48 +0000
committerStefan Monnier2007-08-25 20:12:48 +0000
commitd7e2a28f59f4475f927b8ee553684949f1d5d34b (patch)
tree6da08ac18ab93a31323ef03deecd6ea7ebdabc1c /src
parente60c4e15efd282dfd4cf94af1eff96f540fe586a (diff)
downloademacs-d7e2a28f59f4475f927b8ee553684949f1d5d34b.tar.gz
emacs-d7e2a28f59f4475f927b8ee553684949f1d5d34b.zip
Redirect to intel386.h if compiling for i386.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/m/amdx86-64.h9
2 files changed, 11 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b775844bf3b..ee9eac3172c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12007-08-25 Stefan Monnier <monnier@iro.umontreal.ca> 12007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
4
3 * xdisp.c (Finvisible_p): New function. 5 * xdisp.c (Finvisible_p): New function.
4 (syms_of_xdisp): defsubr it. 6 (syms_of_xdisp): defsubr it.
5 7
diff --git a/src/m/amdx86-64.h b/src/m/amdx86-64.h
index 681be8b0647..1f759cc9ec6 100644
--- a/src/m/amdx86-64.h
+++ b/src/m/amdx86-64.h
@@ -18,6 +18,14 @@ along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19Boston, MA 02110-1301, USA. */ 19Boston, MA 02110-1301, USA. */
20 20
21#ifdef i386
22/* Although we're running on an amd64 kernel, we're actually compiling for
23 the x86 architecture. The user should probably have provided an
24 explicit --build to `configure', but if everything else than the kernel
25 is running in i386 mode, then the bug is really ours: we should have
26 guessed better. */
27#include "m/intel386.h"
28#else
21 29
22/* The following line tells the configuration script what sort of 30/* The following line tells the configuration script what sort of
23 operating system this machine is likely to run. 31 operating system this machine is likely to run.
@@ -156,6 +164,7 @@ Boston, MA 02110-1301, USA. */
156#endif 164#endif
157 165
158#endif /* __FreeBSD__ */ 166#endif /* __FreeBSD__ */
167#endif /* !i386 */
159 168
160/* arch-tag: 8a5e001d-e12e-4692-a3a6-0b15ba271c6e 169/* arch-tag: 8a5e001d-e12e-4692-a3a6-0b15ba271c6e
161 (do not change this comment) */ 170 (do not change this comment) */