From: Karoly.Lorentey@cern.ch (Lőrentey Károly)
Subject: Bootstrap fails --without-x
Date: Sat, 06 Nov 2004 18:54:15 +0100 [thread overview]
Message-ID: <lorentey.g.e.devel.87d5yqx3qw.elte@eris.elte.hu> (raw)
[-- Attachment #1.1.1: Type: text/plain, Size: 522 bytes --]
Bootstrap fails if X support was disabled by ./configure:
$ make maintainer-clean
$ ./configure --without-x
$ make bootstrap
...
Compiling /home/lorentey/emacs--cvs-trunk--0--patch-671/lisp/./tooltip.el
In toplevel form:
tooltip.el:33:13:Error: Symbol's function definition is void: define-fringe-bitmap
make[1]: *** [compile] Error 1
make[1]: Leaving directory `/home/lorentey/emacs--cvs-trunk--0--patch-671/lisp'
make: *** [bootstrap] Error 2
The error is caused by an unprotected define-fringe-bitmap in
gdb-ui.el:
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1.2: Type: text/x-patch, Size: 422 bytes --]
--- orig/lisp/progmodes/gdb-ui.el
+++ mod/lisp/progmodes/gdb-ui.el
@@ -1077,8 +1077,9 @@
"Icon for disabled breakpoint in display margin.")
;; Bitmap for breakpoint in fringe
-(define-fringe-bitmap 'breakpoint
- "\x3c\x7e\xff\xff\xff\xff\x7e\x3c")
+(when (fboundp 'define-fringe-bitmap)
+ (define-fringe-bitmap 'breakpoint
+ "\x3c\x7e\xff\xff\xff\xff\x7e\x3c"))
(defface breakpoint-enabled-bitmap-face
'((t
[-- Attachment #1.1.3: Type: text/plain, Size: 16 bytes --]
--
Károly
[-- Attachment #1.2: Type: application/pgp-signature, Size: 188 bytes --]
[-- Attachment #2: Type: text/plain, Size: 142 bytes --]
_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-devel
next reply other threads:[~2004-11-06 17:54 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-11-06 17:54 Lőrentey Károly [this message]
2004-11-07 4:51 ` Bootstrap fails --without-x Eli Zaretskii
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=lorentey.g.e.devel.87d5yqx3qw.elte@eris.elte.hu \
--to=karoly.lorentey@cern.ch \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.