* still getting build errors
@ 2012-07-11 22:12 Susan Cragin
2012-07-12 16:08 ` Randal L. Schwartz
0 siblings, 1 reply; 4+ messages in thread
From: Susan Cragin @ 2012-07-11 22:12 UTC (permalink / raw)
To: EMACS development team
/home/susan/emacs/lib-src/movemail.c: In function ‘main’:
/home/susan/emacs/lib-src/movemail.c:296:7: warning: implicit declaration of function ‘concat’ [-Wimplicit-function-declaration]
/home/susan/emacs/lib-src/movemail.c:296:16: warning: assignment makes pointer from integer without a cast [enabled by default]
/tmp/cczg7VJU.o: In function `main':
/home/susan/emacs/lib-src/movemail.c:296: undefined reference to `concat'
collect2: ld returned 1 exit status
make[1]: *** [movemail] Error 1
make[1]: Leaving directory `/home/susan/emacs/lib-src'
make: *** [lib-src] Error 2
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: still getting build errors
2012-07-11 22:12 still getting build errors Susan Cragin
@ 2012-07-12 16:08 ` Randal L. Schwartz
2012-07-12 16:33 ` OSX Build broken (bisect results attached) (was Re: still getting build errors) Randal L. Schwartz
2012-07-12 17:00 ` still getting build errors Paul Eggert
0 siblings, 2 replies; 4+ messages in thread
From: Randal L. Schwartz @ 2012-07-12 16:08 UTC (permalink / raw)
To: emacs-devel
And I'm getting build errors in nsterm.m (since two days ago):
/Users/merlyn/MIRROR/emacs-GIT/src/../lib -MMD -MF deps/nsterm.d -MP -g -O2 nsterm.m
nsterm.m: In function 'ns_timeout':
nsterm.m:422: error: 'timeout' undeclared (first use in this function)
nsterm.m:422: error: (Each undeclared identifier is reported only once
nsterm.m:422: error: for each function it appears in.)
nsterm.m: In function 'ns_get_color':
nsterm.m:1449: warning: passing argument 2 of '__builtin___snprintf_chk' makes integer from pointer without a cast
nsterm.m:1449: warning: passing argument 5 of '__builtin___snprintf_chk' makes pointer from integer without a cast
make[2]: *** [nsterm.o] Error 1
make[1]: *** [src] Error 2
make: *** [bootstrap] Error 2
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc.
See http://methodsandmessages.posterous.com/ for Smalltalk discussion
^ permalink raw reply [flat|nested] 4+ messages in thread
* OSX Build broken (bisect results attached) (was Re: still getting build errors)
2012-07-12 16:08 ` Randal L. Schwartz
@ 2012-07-12 16:33 ` Randal L. Schwartz
2012-07-12 17:00 ` still getting build errors Paul Eggert
1 sibling, 0 replies; 4+ messages in thread
From: Randal L. Schwartz @ 2012-07-12 16:33 UTC (permalink / raw)
To: emacs-devel
>>>>> "Randal" == Randal L Schwartz <merlyn@stonehenge.com> writes:
Randal> And I'm getting build errors in nsterm.m (since two days ago):
Randal> /Users/merlyn/MIRROR/emacs-GIT/src/../lib -MMD -MF deps/nsterm.d -MP -g -O2 nsterm.m
Randal> nsterm.m: In function 'ns_timeout':
Randal> nsterm.m:422: error: 'timeout' undeclared (first use in this function)
Randal> nsterm.m:422: error: (Each undeclared identifier is reported only once
Randal> nsterm.m:422: error: for each function it appears in.)
Randal> nsterm.m: In function 'ns_get_color':
Randal> nsterm.m:1449: warning: passing argument 2 of '__builtin___snprintf_chk' makes integer from pointer without a cast
Randal> nsterm.m:1449: warning: passing argument 5 of '__builtin___snprintf_chk' makes pointer from integer without a cast
Randal> make[2]: *** [nsterm.o] Error 1
Randal> make[1]: *** [src] Error 2
Randal> make: *** [bootstrap] Error 2
Here's the commit that broke the build on OSX:
commit a747ace964290726190617148e99ac955ab9a3f2
Author: Paul Eggert <eggert@cs.ucla.edu>
Date: Tue Jul 10 16:24:36 2012 -0700
EMACS_TIME simplification (Bug#11875).
This replaces macros (which typically do not work in GDB)
with functions, typedefs and enums, making the code easier to debug.
The functional style also makes code easier to read and maintain.
* lib-src/profile.c (TV2): Remove no-longer-needed static var.
* src/systime.h: Include <sys/time.h> on all hosts, not just if
WINDOWSNT, since 'struct timeval' is needed in general.
(EMACS_TIME): Now a typedef, not a macro.
(EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
not macros.
(EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
(EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
(EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
(EMACS_TIME_LE): Now functions, not macros.
(EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
(EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
which are not functions. All uses rewritten to use:
(make_emacs_time): New function.
(EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
(EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
not functions. All uses rewritten to use the following,
respectively:
(emacs_secs_addr, invalid_emacs_time, get_emacs_time)
(add_emacs_time, sub_emacs_time): New functions.
* src/atimer.c: Don't include <sys/time.h>, as "systime.h" does
this.
* src/fileio.c (Fcopy_file):
* src/xterm.c (XTflash): Get the current time closer to when it's
used.
* src/makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc.
See http://methodsandmessages.posterous.com/ for Smalltalk discussion
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: still getting build errors
2012-07-12 16:08 ` Randal L. Schwartz
2012-07-12 16:33 ` OSX Build broken (bisect results attached) (was Re: still getting build errors) Randal L. Schwartz
@ 2012-07-12 17:00 ` Paul Eggert
1 sibling, 0 replies; 4+ messages in thread
From: Paul Eggert @ 2012-07-12 17:00 UTC (permalink / raw)
To: Randal L. Schwartz; +Cc: emacs-devel
On 07/12/2012 09:08 AM, Randal L. Schwartz wrote
> nsterm.m:422: error: 'timeout' undeclared (first use in this function)
> ...
> nsterm.m:1449: warning: passing argument 2 of '__builtin___snprintf_chk' makes integer from pointer without a cast
Thanks, these didn't turn up in my Fedora 15 --with-ns build.
I just now checked in what I hope is a fix as trunk bzr 109053.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-07-12 17:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-11 22:12 still getting build errors Susan Cragin
2012-07-12 16:08 ` Randal L. Schwartz
2012-07-12 16:33 ` OSX Build broken (bisect results attached) (was Re: still getting build errors) Randal L. Schwartz
2012-07-12 17:00 ` still getting build errors Paul Eggert
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).