unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* build is broken on OSX today
@ 2012-06-28 17:33 Randal L. Schwartz
  2012-06-28 18:08 ` Dmitry Antipov
  2012-06-28 18:43 ` Drew Raines
  0 siblings, 2 replies; 5+ messages in thread
From: Randal L. Schwartz @ 2012-06-28 17:33 UTC (permalink / raw)
  To: emacs-devel


Compiled just fine yesterday.  Latest commit I see is:

commit e7620eddea6d3b60309125d3ca958f39a68a6f59
Author: Dmitry Antipov <dmantipov@yandex.ru>
Date:   Thu Jun 28 16:29:37 2012 +0400

    * window.h (struct window): Change type of 'hscroll',
    'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
    'last_modified' and 'last_overlay_modified' to EMACS_INT.
    Adjust users accordingly.
    * xdisp.c (try_cursor_movement): Replace type check with eassert.
    * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
    from EMACS_INT to ptrdiff_t.
    (make_window): Omit redundant initialization.


If I get time, I'll bisect it.

-- 
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] 5+ messages in thread

* Re: build is broken on OSX today
  2012-06-28 17:33 build is broken on OSX today Randal L. Schwartz
@ 2012-06-28 18:08 ` Dmitry Antipov
  2012-06-28 18:43 ` Drew Raines
  1 sibling, 0 replies; 5+ messages in thread
From: Dmitry Antipov @ 2012-06-28 18:08 UTC (permalink / raw)
  To: emacs-devel

On 06/28/2012 09:33 PM, Randal L. Schwartz wrote:
>
> Compiled just fine yesterday.  Latest commit I see is:
>
> commit e7620eddea6d3b60309125d3ca958f39a68a6f59
> Author: Dmitry Antipov <dmantipov@yandex.ru>
> Date:   Thu Jun 28 16:29:37 2012 +0400
>
>      * window.h (struct window): Change type of 'hscroll',
>      'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
>      'last_modified' and 'last_overlay_modified' to EMACS_INT.
>      Adjust users accordingly.
>      * xdisp.c (try_cursor_movement): Replace type check with eassert.
>      * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
>      from EMACS_INT to ptrdiff_t.
>      (make_window): Omit redundant initialization.
>
>
> If I get time, I'll bisect it.

Oops, sorry. Can you post error messages here?

Dmitry



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: build is broken on OSX today
  2012-06-28 17:33 build is broken on OSX today Randal L. Schwartz
  2012-06-28 18:08 ` Dmitry Antipov
@ 2012-06-28 18:43 ` Drew Raines
  2012-06-29  1:40   ` Dmitry Antipov
  1 sibling, 1 reply; 5+ messages in thread
From: Drew Raines @ 2012-06-28 18:43 UTC (permalink / raw)
  To: emacs-devel

Randal L. Schwartz wrote:

> Compiled just fine yesterday.  Latest commit I see is:
>
> commit e7620eddea6d3b60309125d3ca958f39a68a6f59

[...]

> If I get time, I'll bisect it.

I found the same thing this morning and bisected.  git told me it was:

    commit 564ebbd2a22ff6fbed4b1678a48710c7ffd6e7df
    Author: Dmitry Antipov <dmantipov@yandex.ru>
    Date:   Thu Jun 28 11:50:27 2012 +0400
    
        Generalize run-time debugging checks.
        * configure.in (ENABLE_CHECKING): Update comment.
        * src/dispextern.h (XASSERTS): Remove.
        * src/fontset.c (xassert): Remove.
        Convert from xassert to eassert.
        * src/alloc.c: Convert from xassert to eassert.
        * src/bidi.c: Likewise.
        * src/dispnew.c: Likewise.
    
        [...]

The error I see is:

    Undefined symbols:
      "_xassert", referenced from:
          _ns_after_update_window_line in nsterm.o
          _update_frame_tool_bar in nsmenu.o
    ld: symbol(s) not found
    collect2: ld returned 1 exit status
    make[2]: *** [temacs] Error 1
    make[1]: *** [src] Error 2
    make: *** [bootstrap] Error 2

A little more context: http://p.draines.com/1340908901307eb95d24b.txt

-Drew




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: build is broken on OSX today
  2012-06-28 18:43 ` Drew Raines
@ 2012-06-29  1:40   ` Dmitry Antipov
  2012-06-29 13:41     ` Drew Raines
  0 siblings, 1 reply; 5+ messages in thread
From: Dmitry Antipov @ 2012-06-29  1:40 UTC (permalink / raw)
  To: Drew Raines, Randal L. Schwartz; +Cc: Emacs development discussions

On 06/28/2012 10:43 PM, Drew Raines wrote:

> Randal L. Schwartz wrote:
>
>> Compiled just fine yesterday.  Latest commit I see is:
>>
>> commit e7620eddea6d3b60309125d3ca958f39a68a6f59
>
> [...]
>
>> If I get time, I'll bisect it.
>
> I found the same thing this morning and bisected.  git told me it was:

Should be fixed now.

Dmitry




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: build is broken on OSX today
  2012-06-29  1:40   ` Dmitry Antipov
@ 2012-06-29 13:41     ` Drew Raines
  0 siblings, 0 replies; 5+ messages in thread
From: Drew Raines @ 2012-06-29 13:41 UTC (permalink / raw)
  To: emacs-devel

Dmitry Antipov wrote:

> Should be fixed now.

It is.  Thanks!

-Drew




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-06-29 13:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-28 17:33 build is broken on OSX today Randal L. Schwartz
2012-06-28 18:08 ` Dmitry Antipov
2012-06-28 18:43 ` Drew Raines
2012-06-29  1:40   ` Dmitry Antipov
2012-06-29 13:41     ` Drew Raines

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).