From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Eli Zaretskii" Newsgroups: gmane.emacs.devel Subject: Re: Emacs CVS & DJGPP CVS: "make bootstrap" fails Date: Sat, 18 Jan 2003 13:23:59 +0300 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <2110-Sat18Jan2003132358+0200-eliz@is.elta.co.il> References: <3E270D14.6DE95026@phekda.freeserve.co.uk> Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1042889169 15511 80.91.224.249 (18 Jan 2003 11:26:09 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 18 Jan 2003 11:26:09 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18Zr72-00041v-00 for ; Sat, 18 Jan 2003 12:26:08 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18ZrGu-0001Hz-00 for ; Sat, 18 Jan 2003 12:36:20 +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 18Zr7n-000646-05 for emacs-devel@quimby.gnus.org; Sat, 18 Jan 2003 06:26:55 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18Zr6z-0005XF-00 for emacs-devel@gnu.org; Sat, 18 Jan 2003 06:26:05 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18Zr6U-0005Ai-00 for emacs-devel@gnu.org; Sat, 18 Jan 2003 06:25:37 -0500 Original-Received: from bilbo.inter.net.il ([192.114.186.18]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18Zr6T-00058W-00 for emacs-devel@gnu.org; Sat, 18 Jan 2003 06:25:33 -0500 Original-Received: from zaretsky ([80.230.194.52]) by bilbo.inter.net.il (Mirapoint Messaging Server MOS 3.2.1-GA) with ESMTP id ADG18929; Sat, 18 Jan 2003 13:25:26 +0200 (IST) Original-To: rich@phekda.freeserve.co.uk X-Mailer: emacs 21.3.50 (via feedmail 8 I) and Blat ver 1.8.9 In-reply-to: <3E270D14.6DE95026@phekda.freeserve.co.uk> (message from Richard Dawe on Thu, 16 Jan 2003 19:50:44 +0000) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:10841 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:10841 > Date: Thu, 16 Jan 2003 19:50:44 +0000 > From: Richard Dawe > > xmenu.o: In function `_Fx_popup_menu': > xmenu.c:738: undefined reference to `_DefaultRootWindow' > xmenu.c(.text+0x1010): undefined reference to `_XQueryPointer' > xmenu.c:761: undefined reference to `_FRAME_OUTER_TO_INNER_DIFF_X' > xmenu.c:763: undefined reference to `_FRAME_OUTER_TO_INNER_DIFF_Y' > collect2: ld returned 1 exit status > make.exe[1]: *** [temacs] Error 1 The DJGPP port uses the non-toolkit part of xmenu.c (to emulate X menus). For this to work, any X-specific stuff in that part of xmenu should be either (1) emulated by the code in msdos.c/msdos.h, or (2) defined away in msdos.h, or (3) defined in msdos.h to some innocent replacements (like "typedef int XFooBar" or some such). I'm guessing that some recent changes violated this arrangement.