_why, I think the change from "*anim*" to "*timer*" in "*
shoes_quartz_animate*" has a name clash.

works fine @rev 430
3521    #ifdef SHOES_QUARTZ
3522    pascal void
3523    shoes_quartz_animate(EventLoopTimerRef *timer*, void* userData)
3524    {
3525      VALUE *anim* = (VALUE)userData;
3526      shoes_anim_call(anim);
3527    }
3528    #endif

breaks down @rev 434
3530    #ifdef SHOES_QUARTZ
3531    pascal void
3532    shoes_quartz_animate(EventLoopTimerRef *timer*, void* userData)
3533    {
3534      VALUE *timer *= (VALUE)userData; */* Name Clash I think */*
3535      shoes_timer_call(timer);
3536    }
3537    #endif
--Tom




On Thu, Feb 28, 2008 at 2:40 PM, David Torres <[EMAIL PROTECTED]> wrote:

> After build r432 I started having problems when I ran rake.
> I am on Leopard 10.5.2 (Intel Macbook)
> using why's precompiled deps and I have some new error messages that I
> haven't seen before.
>
> The start like this;
>
> {standard input}:17447:non-relocatable subtraction expression, "_cTimer"
> minus "L00000000131$pb"
> {standard input}:17447:symbol: "_cTimer" can't be undefined in a
> subtraction expression
> {standard input}:17392:non-relocatable subtraction expression, "_s_leave"
> minus "L00000000130$pb"
> {standard input}:17392:symbol: "_s_leave" can't be undefined in a
> subtraction expression
> {standard input}:17326:non-relocatable subtraction expression, "_s_hover"
> minus "L00000000129$pb"
> {standard input}:17326:symbol: "_s_hover" can't be undefined in a
> subtraction expression
> {standard input}:
>
> I included the build in case someone can make sense of it.
>
> D
>
>
>

Reply via email to