all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Bootstrap fails --without-x
@ 2004-11-06 17:54 Lőrentey Károly
  2004-11-07  4:51 ` Eli Zaretskii
  0 siblings, 1 reply; 2+ messages in thread
From: Lőrentey Károly @ 2004-11-06 17:54 UTC (permalink / 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

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Bootstrap fails --without-x
  2004-11-06 17:54 Bootstrap fails --without-x Lőrentey Károly
@ 2004-11-07  4:51 ` Eli Zaretskii
  0 siblings, 0 replies; 2+ messages in thread
From: Eli Zaretskii @ 2004-11-07  4:51 UTC (permalink / raw)


> From: Karoly.Lorentey@cern.ch (=?utf-8?Q?L=C5=91rentey_K=C3=A1roly?=)
> Date: Sat, 06 Nov 2004 18:54:15 +0100
> 
> 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:

Thanks, I made a temporary fix to work around this.  There's a
discussion of the way to correct this in the thread "gdb-ui.el assumes
images support" (believe it or not, I bumped into this problem
independently).

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2004-11-07  4:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-06 17:54 Bootstrap fails --without-x Lőrentey Károly
2004-11-07  4:51 ` Eli Zaretskii

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.