GNU bug report logs -
#58688
[Trunk] menu.c:1401:3: error: implicit declaration of function 'cancel_hourglass' is invalid in C99
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 58688 in the body.
You can then email your comments to 58688 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#58688
; Package
emacs
.
(Fri, 21 Oct 2022 14:25:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Jacob Faibussowitsch <jacob.fai <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Fri, 21 Oct 2022 14:25:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
menu.c:1401:3: error: implicit declaration of function 'cancel_hourglass' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
cancel_hourglass ();
^
Best regards,
Jacob Faibussowitsch
(Jacob Fai - booss - oh - vitch)
[config.log (application/octet-stream, attachment)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#58688
; Package
emacs
.
(Fri, 21 Oct 2022 15:30:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 58688 <at> debbugs.gnu.org (full text, mbox):
> From: Jacob Faibussowitsch <jacob.fai <at> gmail.com>
> Date: Fri, 21 Oct 2022 10:23:56 -0400
>
> menu.c:1401:3: error: implicit declaration of function 'cancel_hourglass' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
> cancel_hourglass ();
> ^
Thanks, should be fixed now.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#58688
; Package
emacs
.
(Fri, 21 Oct 2022 15:57:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 58688 <at> debbugs.gnu.org (full text, mbox):
No dice I’m afraid. It appears cancel_hourglass() is gated behind HAVE_WINDOW_SYSTEM:
// src/dispextern.h
...
#ifdef HAVE_WINDOW_SYSTEM
extern void start_hourglass (void);
extern void cancel_hourglass (void);
Which I do not appear to have:
// src/config.h
...
/* Define if you have a window system. */
/* #undef HAVE_WINDOW_SYSTEM */
This is after doing:
$ rm -f ./config.cache
$ ./config.status --recheck
$ make
Best regards,
Jacob Faibussowitsch
(Jacob Fai - booss - oh - vitch)
> On Oct 21, 2022, at 11:29, Eli Zaretskii <eliz <at> gnu.org> wrote:
>
>> From: Jacob Faibussowitsch <jacob.fai <at> gmail.com>
>> Date: Fri, 21 Oct 2022 10:23:56 -0400
>>
>> menu.c:1401:3: error: implicit declaration of function 'cancel_hourglass' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
>> cancel_hourglass ();
>> ^
>
> Thanks, should be fixed now.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#58688
; Package
emacs
.
(Fri, 21 Oct 2022 16:08:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 58688 <at> debbugs.gnu.org (full text, mbox):
> From: Jacob Faibussowitsch <jacob.fai <at> gmail.com>
> Date: Fri, 21 Oct 2022 11:55:49 -0400
> Cc: 58688 <at> debbugs.gnu.org
>
> No dice I’m afraid. It appears cancel_hourglass() is gated behind HAVE_WINDOW_SYSTEM:
>
> // src/dispextern.h
> ...
> #ifdef HAVE_WINDOW_SYSTEM
>
> extern void start_hourglass (void);
> extern void cancel_hourglass (void);
>
> Which I do not appear to have:
Well, it would help if you'd posted your Emacs configuration with the
bug report to begin with.
I've tried to fix this now.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#58688
; Package
emacs
.
(Fri, 21 Oct 2022 16:10:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 58688 <at> debbugs.gnu.org (full text, mbox):
> Well, it would help if you'd posted your Emacs configuration with the
> bug report to begin with.
I did. I attached my configure.log with the original mail. Or do attachments get scrubbed?
Best regards,
Jacob Faibussowitsch
(Jacob Fai - booss - oh - vitch)
> On Oct 21, 2022, at 12:06, Eli Zaretskii <eliz <at> gnu.org> wrote:
>
>> From: Jacob Faibussowitsch <jacob.fai <at> gmail.com>
>> Date: Fri, 21 Oct 2022 11:55:49 -0400
>> Cc: 58688 <at> debbugs.gnu.org
>>
>> No dice I’m afraid. It appears cancel_hourglass() is gated behind HAVE_WINDOW_SYSTEM:
>>
>> // src/dispextern.h
>> ...
>> #ifdef HAVE_WINDOW_SYSTEM
>>
>> extern void start_hourglass (void);
>> extern void cancel_hourglass (void);
>>
>> Which I do not appear to have:
>
> Well, it would help if you'd posted your Emacs configuration with the
> bug report to begin with.
>
> I've tried to fix this now.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#58688
; Package
emacs
.
(Fri, 21 Oct 2022 16:11:01 GMT)
Full text and
rfc822 format available.
Message #20 received at 58688 <at> debbugs.gnu.org (full text, mbox):
P.S. it builds now, thanks for the fix!
Best regards,
Jacob Faibussowitsch
(Jacob Fai - booss - oh - vitch)
> On Oct 21, 2022, at 12:09, Jacob Faibussowitsch <jacob.fai <at> gmail.com> wrote:
>
>> Well, it would help if you'd posted your Emacs configuration with the
>> bug report to begin with.
>
> I did. I attached my configure.log with the original mail. Or do attachments get scrubbed?
>
> Best regards,
>
> Jacob Faibussowitsch
> (Jacob Fai - booss - oh - vitch)
>
>> On Oct 21, 2022, at 12:06, Eli Zaretskii <eliz <at> gnu.org> wrote:
>>
>>> From: Jacob Faibussowitsch <jacob.fai <at> gmail.com>
>>> Date: Fri, 21 Oct 2022 11:55:49 -0400
>>> Cc: 58688 <at> debbugs.gnu.org
>>>
>>> No dice I’m afraid. It appears cancel_hourglass() is gated behind HAVE_WINDOW_SYSTEM:
>>>
>>> // src/dispextern.h
>>> ...
>>> #ifdef HAVE_WINDOW_SYSTEM
>>>
>>> extern void start_hourglass (void);
>>> extern void cancel_hourglass (void);
>>>
>>> Which I do not appear to have:
>>
>> Well, it would help if you'd posted your Emacs configuration with the
>> bug report to begin with.
>>
>> I've tried to fix this now.
>
Reply sent
to
Eli Zaretskii <eliz <at> gnu.org>
:
You have taken responsibility.
(Fri, 21 Oct 2022 17:15:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Jacob Faibussowitsch <jacob.fai <at> gmail.com>
:
bug acknowledged by developer.
(Fri, 21 Oct 2022 17:15:01 GMT)
Full text and
rfc822 format available.
Message #25 received at 58688-done <at> debbugs.gnu.org (full text, mbox):
> From: Jacob Faibussowitsch <jacob.fai <at> gmail.com>
> Date: Fri, 21 Oct 2022 12:09:21 -0400
> Cc: 58688 <at> debbugs.gnu.org
>
> > Well, it would help if you'd posted your Emacs configuration with the
> > bug report to begin with.
>
> I did. I attached my configure.log with the original mail. Or do attachments get scrubbed?
You aren't supposed to attach config.log, you are supposed to write
your report in the empty space before the system configuration data
collected by "M-x report-emacs-bug".
> P.S. it builds now, thanks for the fix!
Thanks for testing, closing the bug.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sat, 19 Nov 2022 12:24:10 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 268 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.