From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Dawe Newsgroups: gmane.emacs.bugs Subject: Building Emacs CVS against DJGPP CVS Date: Mon, 06 Jan 2003 22:36:08 +0000 Sender: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: <3E1A04D8.BA074B08@phekda.freeserve.co.uk> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1041977564 19458 80.91.224.249 (7 Jan 2003 22:12:44 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 7 Jan 2003 22:12:44 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18W1xj-00053h-00 for ; Tue, 07 Jan 2003 23:12:43 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18VyPZ-00073y-08 for gnu-bug-gnu-emacs@m.gmane.org; Tue, 07 Jan 2003 13:25:13 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18VfsM-0008EQ-00 for bug-gnu-emacs@gnu.org; Mon, 06 Jan 2003 17:37:42 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18Vfs3-0007sh-00 for bug-gnu-emacs@gnu.org; Mon, 06 Jan 2003 17:37:25 -0500 Original-Received: from cmailg1.svr.pol.co.uk ([195.92.195.171]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18Vfs2-0007oi-00 for bug-gnu-emacs@gnu.org; Mon, 06 Jan 2003 17:37:22 -0500 Original-Received: from modem-157.silicon.dialup.pol.co.uk ([62.136.13.157] helo=phekda.freeserve.co.uk) by cmailg1.svr.pol.co.uk with esmtp (Exim 3.35 #1) id 18Vfrz-0003mZ-00 for bug-gnu-emacs@gnu.org; Mon, 06 Jan 2003 22:37:20 +0000 Original-Received: from iolanthe.int.phekda.freeserve.co.uk ([192.168.1.1] helo=phekda.freeserve.co.uk ident=rich) by phekda.freeserve.co.uk with esmtp (Exim 3.22 #1) id 18Vfqr-0001RU-00; Mon, 06 Jan 2003 22:36:09 +0000 X-Mailer: Mozilla 4.77 [en] (X11; U; Linux 2.2.23 i586) X-Accept-Language: de,fr Original-To: bug-gnu-emacs@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.bugs:4152 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:4152 Hello. I seem to be having problems building recent Emacs CVS against DJGPP CVS. The problem is that I can't bootstrap, because byte-compiling the elisp files fails due to a unsatisfied reference to 'set-fontset-font' in lisp/term/x-win.el. 'set-fontset-font' is defined in src/fontset.c, which is not compiled in in the DJGPP build. I tried modifying src/Makefile.in to include it, but that failed, because 'struct face' has no font member for non-X-Windows builds like DJGPP. I compared lisp/term/x-win.el from CVS with that from some Emacs 21.0.98 sources I had lying around at it seems that the requirement on the fontset module used to be conditional: --- /develop/emacs-21.0.98/lisp/term/x-win.el 2000-11-27 17:10:16.000000000 +0000 +++ x-win.el 2002-12-29 13:01:34.000000000 +0000 @@ -75,8 +75,7 @@ (require 'faces) (require 'select) (require 'menu-bar) -(if (fboundp 'new-fontset) - (require 'fontset)) +(require 'fontset) (Note that I've trimmed the diff to show only one chunk.) I couldn't see anything in ChangeLog about the changes. Any help would be appreciated. Please CC me on reply, because I'm not subscribed to bug-gnu-emacs. Thanks, bye, Rich =] -- Richard Dawe [ http://www.phekda.freeserve.co.uk/richdawe/ ]