Am Montag 21 September 2009 10:58:15 schrieb Łukasz Pankowski: > Hi > > I have removed libeflvala from dependencies in ffalarms.bb as ffalarms.c > is included in the source tarball so valac should not start if you > compile from source tarball. > > It is that way to minimize compilation problems, for example I compiled > ffalarms 0.2.4 with valac 0.7.5 (0.7.6 was not yet in Debian that day) > and the problem you encountered is with valac 0.7.6. I just committed a > quick fix to subversion repository [1]. > > > [1] The change > (http://projects.openmoko.org/plugins/scmsvn/viewcvs.php/trunk/?root=ffala > rms): > > --- trunk/ffalarms.vala 2009/09/19 12:02:37 53 > +++ trunk/ffalarms.vala 2009/09/21 08:30:14 54 > @@ -60,7 +60,7 @@ > time_t next_hm(int hour, int minute) > { > var now = time_t(); > - var t = Time.local(now) { hour=hour, minute=minute, second=0 }; > + var t = Time.local(now); t.hour=hour; t.minute=minute; t.second=0; > var timestamp = t.mktime(); > if (timestamp <= now) { > t.day += 1; > Thanks it's working now :) I sent a patch to update ffalarms in SHR to 0.2.4
_______________________________________________ Openmoko community mailing list [email protected] http://lists.openmoko.org/mailman/listinfo/community

