From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?ISO-8859-1?Q?Jan_Dj=E4rv?= Newsgroups: gmane.emacs.devel Subject: Re: xterm.c compile error (May 29th) Date: Mon, 29 May 2006 08:32:48 +0200 Message-ID: <447A9590.5020209@swipnet.se> References: <20060529132802.3548@henman-np.b-eng.it.to-be.co.jp> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1148884414 7375 80.91.229.2 (29 May 2006 06:33:34 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 29 May 2006 06:33:34 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon May 29 08:33:32 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FkbJd-0003sl-37 for ged-emacs-devel@m.gmane.org; Mon, 29 May 2006 08:33:25 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FkbJc-0003wO-Dd for ged-emacs-devel@m.gmane.org; Mon, 29 May 2006 02:33:24 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FkbJN-0003st-Sm for emacs-devel@gnu.org; Mon, 29 May 2006 02:33:09 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FkbJM-0003q6-66 for emacs-devel@gnu.org; Mon, 29 May 2006 02:33:09 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FkbJM-0003q3-0S for emacs-devel@gnu.org; Mon, 29 May 2006 02:33:08 -0400 Original-Received: from [81.228.9.185] (helo=av9-1-sn3.vrr.skanova.net) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FkbOr-0005zC-Gf for emacs-devel@gnu.org; Mon, 29 May 2006 02:38:49 -0400 Original-Received: by av9-1-sn3.vrr.skanova.net (Postfix, from userid 502) id 0963F38200; Mon, 29 May 2006 08:33:06 +0200 (CEST) Original-Received: from smtp3-2-sn3.vrr.skanova.net (smtp3-2-sn3.vrr.skanova.net [81.228.9.102]) by av9-1-sn3.vrr.skanova.net (Postfix) with ESMTP id EEA9F380A3; Mon, 29 May 2006 08:33:05 +0200 (CEST) Original-Received: from coolsville.localdomain (81-235-205-204-no59.tbcn.telia.com [81.235.205.204]) by smtp3-2-sn3.vrr.skanova.net (Postfix) with ESMTP id DF12637E42; Mon, 29 May 2006 08:33:04 +0200 (CEST) User-Agent: Thunderbird 1.5.0.2 (X11/20060501) Original-To: djh In-Reply-To: <20060529132802.3548@henman-np.b-eng.it.to-be.co.jp> 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: news.gmane.org gmane.emacs.devel:55404 Archived-At: djh skrev: > I just downloaded from cvs a new clean source to work with. > > Platform: cygwin 5.19 > > During make bootstrap the folllowing occured: > > > gcc -c -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/cygdrive/c/emacs/cvs/emacs/src -I/usr/X11R6/include/X11 -DXTHREADS -DXUSE_MTSAFE_API -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 > -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 xterm.c > > > xterm.c: In function `x_term_init': > xterm.c:10364: error: dereferencing pointer to incomplete type > make[2]: *** [xterm.o] Error 1 > > >>>From file xterm.c near line # 10364 > > #ifdef HAVE_XRMSETDATABASE > XrmSetDatabase (dpyinfo->display, xrdb); > #else > Line # 10364 dpyinfo->display->db = xrdb; > #endif > > > I have not run into this error before. > Have any changes been made within the last several days that might have caused this? > Your configure run probably doesn't find XrmSetDatabase for som reason, check config.log. There is most likely an error in the compilation or something. Nothing regarding this has changed recently. Jan D.