From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Jan D." Newsgroups: gmane.emacs.devel Subject: Re: Emacs CVS & DJGPP CVS: "make bootstrap" fails Date: Sat, 18 Jan 2003 13:25:30 +0100 (MET) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <200301181320.h0IDKqDU011701@stubby.bodenonline.com> References: <2110-Sat18Jan2003132358+0200-eliz@is.elta.co.il> 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 1042892912 24364 80.91.224.249 (18 Jan 2003 12:28:32 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 18 Jan 2003 12:28:32 +0000 (UTC) Cc: rich@phekda.freeserve.co.uk Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18Zs5O-0006Kp-00 for ; Sat, 18 Jan 2003 13:28:30 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18ZsFI-0001pp-00 for ; Sat, 18 Jan 2003 13:38:44 +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 18Zs63-0006Ge-05 for emacs-devel@quimby.gnus.org; Sat, 18 Jan 2003 07:29:11 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18Zs5I-0005KA-00 for emacs-devel@gnu.org; Sat, 18 Jan 2003 07:28:24 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18Zs3Z-0003qj-00 for emacs-devel@gnu.org; Sat, 18 Jan 2003 07:26:37 -0500 Original-Received: from stubby.bodenonline.com ([193.201.16.94]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18Zs2v-000361-00 for emacs-devel@gnu.org; Sat, 18 Jan 2003 07:25:57 -0500 Original-Received: from accessno42.bodenonline.com (IDENT:root@accessno42.bodenonline.com [193.201.16.44]) h0IDKqDU011701; Sat, 18 Jan 2003 14:20:52 +0100 Original-To: eliz@is.elta.co.il In-Reply-To: <2110-Sat18Jan2003132358+0200-eliz@is.elta.co.il> from "Eli Zaretskii" at jan 18, 2003 01:23:59 X-Mailer: ELM [version 2.5 PL0pre8] Original-cc: emacs-devel@gnu.org 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:10845 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:10845 > > > 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. Yes, I did that. I checked when HAVE_MENUS gets defined, but it did not occur to me that a file in s/ (s/msdos.h) might define it. I'm guessing DJGPP does not use configure? Jan D.