GNU bug report logs - #14073
24.3.50; build failed for the configuration with --enable-check-lisp-object-type

Previous Next

Package: emacs;

Reported by: OKAZAKI Tetsurou <okazaki.tetsurou <at> gmail.com>

Date: Thu, 28 Mar 2013 11:30:02 UTC

Severity: normal

Found in version 24.3.50

Done: Eli Zaretskii <eliz <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 14073 in the body.
You can then email your comments to 14073 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#14073; Package emacs. (Thu, 28 Mar 2013 11:30:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to OKAZAKI Tetsurou <okazaki.tetsurou <at> gmail.com>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Thu, 28 Mar 2013 11:30:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: OKAZAKI Tetsurou <okazaki.tetsurou <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: 24.3.50; build failed for the configuration with
	--enable-check-lisp-object-type
Date: Thu, 28 Mar 2013 20:26:36 +0900
[Message part 1 (text/plain, inline)]
$ uname -s -r -v -m -o
CYGWIN_NT-6.1-WOW64 1.7.17(0.262/5/3) 2012-10-19 14:39 i686 Cygwin

$ bzr pull
$ ./autogen.sh
$ env CFLAGS="-ggdb3 -O2" ./configure --with-w32 --without-x --enable-check-lisp-object-type
$ make bootstrap

...
gcc -std=gnu99 -c -I/usr/include/noX -Demacs  -I. -I/home/tetsurou/Checkout/bzr.savannah.gnu.org/emacs/local/src  -I../lib -I/home/tetsurou/Checkout/bzr.savannah.gnu.org/emacs/local/src/../lib           -I/usr/include/libxml2           -MMD -MF deps/w32fns.d -MP   -I/usr/include/p11-kit-1      -ggdb3 -O2 w32fns.c
w32fns.c: In function ‘Fx_show_tip’:
w32fns.c:5795:26: error: request for member ‘i’ in something not a structure or union
Makefile:327: recipe for target `w32fns.o' failed
make[2]: *** [w32fns.o] Error 1



[Fx_show_tip-w32fns.c.patch (application/octet-stream, attachment)]

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#14073; Package emacs. (Thu, 28 Mar 2013 12:10:02 GMT) Full text and rfc822 format available.

Message #8 received at 14073 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: OKAZAKI Tetsurou <okazaki.tetsurou <at> gmail.com>
Cc: 14073 <at> debbugs.gnu.org
Subject: Re: bug#14073: 24.3.50; build failed for the configuration
	with	--enable-check-lisp-object-type
Date: Thu, 28 Mar 2013 14:07:01 +0200
> Date: Thu, 28 Mar 2013 20:26:36 +0900
> From: OKAZAKI Tetsurou <okazaki.tetsurou <at> gmail.com>
> 
> $ uname -s -r -v -m -o
> CYGWIN_NT-6.1-WOW64 1.7.17(0.262/5/3) 2012-10-19 14:39 i686 Cygwin
> 
> $ bzr pull
> $ ./autogen.sh
> $ env CFLAGS="-ggdb3 -O2" ./configure --with-w32 --without-x --enable-check-lisp-object-type
> $ make bootstrap
> 
> ...
> gcc -std=gnu99 -c -I/usr/include/noX -Demacs  -I. -I/home/tetsurou/Checkout/bzr.savannah.gnu.org/emacs/local/src  -I../lib -I/home/tetsurou/Checkout/bzr.savannah.gnu.org/emacs/local/src/../lib           -I/usr/include/libxml2           -MMD -MF deps/w32fns.d -MP   -I/usr/include/p11-kit-1      -ggdb3 -O2 w32fns.c
> w32fns.c: In function ‘Fx_show_tip’:
> w32fns.c:5795:26: error: request for member ‘i’ in something not a structure or union

There's no 'i' on line 5795 of w32fns.c on the trunk.  That line says:

  w->left_col = 0;

Perhaps some Cygwin specific preprocessor macro converts left_col into
something that triggers the error?  The file compiles fine for me (as
part of the native w32 build).

Please show a preprocessed source of w32fns.c (replace "-c" by "-E" in
the above command, and add "-o w32fns.ii", then post w32fns.ii).




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#14073; Package emacs. (Thu, 28 Mar 2013 13:25:02 GMT) Full text and rfc822 format available.

Message #11 received at 14073 <at> debbugs.gnu.org (full text, mbox):

From: Stefan Monnier <monnier <at> iro.umontreal.ca>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: 14073 <at> debbugs.gnu.org, OKAZAKI Tetsurou <okazaki.tetsurou <at> gmail.com>
Subject: Re: bug#14073: 24.3.50; build failed for the configuration
	with	--enable-check-lisp-object-type
Date: Thu, 28 Mar 2013 09:21:47 -0400
>> w32fns.c:5795:26: error: request for member ‘i’ in something not a structure or union

This message normally means "we got an int where a Lisp_Object was expected".

> There's no 'i' on line 5795 of w32fns.c on the trunk.  That line says:

Might be a different version of w32fns.c.  On line 5795 I have

  FRAME_TOTAL_COLS (f) = XINT (w->total_cols);


-- Stefan




Reply sent to Eli Zaretskii <eliz <at> gnu.org>:
You have taken responsibility. (Thu, 28 Mar 2013 13:50:02 GMT) Full text and rfc822 format available.

Notification sent to OKAZAKI Tetsurou <okazaki.tetsurou <at> gmail.com>:
bug acknowledged by developer. (Thu, 28 Mar 2013 13:50:02 GMT) Full text and rfc822 format available.

Message #16 received at 14073-done <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Stefan Monnier <monnier <at> iro.umontreal.ca>
Cc: 14073-done <at> debbugs.gnu.org, okazaki.tetsurou <at> gmail.com
Subject: Re: bug#14073: 24.3.50; build failed for the configuration
	with	--enable-check-lisp-object-type
Date: Thu, 28 Mar 2013 15:46:38 +0200
> From: Stefan Monnier <monnier <at> iro.umontreal.ca>
> Cc: OKAZAKI Tetsurou <okazaki.tetsurou <at> gmail.com>,  14073 <at> debbugs.gnu.org
> Date: Thu, 28 Mar 2013 09:21:47 -0400
> 
> >> w32fns.c:5795:26: error: request for member ‘i’ in something not a structure or union
> 
> This message normally means "we got an int where a Lisp_Object was expected".
> 
> > There's no 'i' on line 5795 of w32fns.c on the trunk.  That line says:
> 
> Might be a different version of w32fns.c.  On line 5795 I have
> 
>   FRAME_TOTAL_COLS (f) = XINT (w->total_cols);

Thanks, fixed.





bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 26 Apr 2013 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 11 years and 25 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.