* bug#8637: emacs-23 doesn't build on Ubuntu 11.04
@ 2011-05-08 16:21 Paul Eggert
2011-05-08 18:03 ` Sven Joachim
0 siblings, 1 reply; 2+ messages in thread
From: Paul Eggert @ 2011-05-08 16:21 UTC (permalink / raw)
To: 8637
The emacs-23 branch (and, I assume, Emacs 23) does not
build on Ubuntu 11.04 x86. I'd like to install the following
fix. Normally I don't mess with the emacs-23 branch so I'm
being cautious and filing this bug report rather than simply
installing it.
=== modified file 'src/ChangeLog'
--- src/ChangeLog 2011-04-29 14:23:44 +0000
+++ src/ChangeLog 2011-05-08 16:20:25 +0000
@@ -1,3 +1,7 @@
+2011-05-08 Paul Eggert <eggert@cs.ucla.edu>
+
+ * Makefile.in (i386): #undef, for Ubuntu 11.04 x86.
+
2011-04-29 Eli Zaretskii <eliz@gnu.org>
* w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
=== modified file 'src/Makefile.in'
--- src/Makefile.in 2011-02-19 17:34:50 +0000
+++ src/Makefile.in 2011-05-08 16:20:25 +0000
@@ -100,6 +100,14 @@
#undef X11
#endif
+/* Do not let CFLAGs get messed up on systems like Ubuntu 11.04 x86.
+ For example, DBUS_CFLAGS should contain
+ "-I/usr/lib/i386-linux-gnu/dbus-1.0/include",
+ but the preprocessor expands "i386" to "1 ". */
+#ifdef i386
+#undef i386
+#endif
+
/* On some machines #define register is done in config;
do not let it interfere with this file. */
#undef register
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-05-08 18:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-08 16:21 bug#8637: emacs-23 doesn't build on Ubuntu 11.04 Paul Eggert
2011-05-08 18:03 ` Sven Joachim
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.