From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: storm@cua.dk (Kim F. Storm) Newsgroups: gmane.emacs.devel Subject: Re: gdb-ui.el assumes images support Date: Mon, 08 Nov 2004 13:47:18 +0100 Message-ID: References: <01c4c422$Blat.v2.2.2$ae5429e0@zahav.net.il> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1099918075 28069 80.91.229.6 (8 Nov 2004 12:47:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 8 Nov 2004 12:47:55 +0000 (UTC) Cc: Eli Zaretskii , emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Nov 08 13:47:40 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CR8vs-00010b-00 for ; Mon, 08 Nov 2004 13:47:40 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CR94D-00066Z-VZ for ged-emacs-devel@m.gmane.org; Mon, 08 Nov 2004 07:56:18 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CR945-00066S-SW for emacs-devel@gnu.org; Mon, 08 Nov 2004 07:56:10 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CR945-00066G-Fq for emacs-devel@gnu.org; Mon, 08 Nov 2004 07:56:09 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CR945-00066D-CD for emacs-devel@gnu.org; Mon, 08 Nov 2004 07:56:09 -0500 Original-Received: from [212.88.64.25] (helo=mail-relay.sonofon.dk) by monty-python.gnu.org with smtp (Exim 4.34) id 1CR8vL-0008Ke-DP for emacs-devel@gnu.org; Mon, 08 Nov 2004 07:47:07 -0500 Original-Received: (qmail 52464 invoked from network); 8 Nov 2004 12:47:05 -0000 Original-Received: from unknown (HELO kfs-l.imdomain.dk.cua.dk) (213.83.150.2) by 0 with SMTP; 8 Nov 2004 12:47:05 -0000 Original-To: rms@gnu.org In-Reply-To: (Richard Stallman's message of "Sun, 07 Nov 2004 13:04:20 -0500") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/21.3.50 (gnu/linux) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:29570 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:29570 Richard Stallman writes: > This line from gdb-ui.el: > > (define-fringe-bitmap 'breakpoint > "\x3c\x7e\xff\xff\xff\xff\x7e\x3c") > > causes the Emacs build to fail if it is configured --without-x, since > fringe.c is not compiled then. > > Would moving the definition of this function to another file > solve the problem? It is defined in fringe.c when HAVE_WINDOW_SYSTEM, so it's not easy to move. Perhaps we could add this to subr.el: (unless widow-system (defun define-fringe-bitmap (&optional rest) "Dummy function for text-only terminals.")) -- Kim F. Storm http://www.cua.dk