[Gambas-user] Issue 242 in gambas: Gamba forms fail on Debian ARM
gambas at ...2524...
gambas at ...2524...
Thu Apr 26 06:17:56 CEST 2012
Comment #8 on issue 242 by tvijlbr... at ...626...: Gamba forms fail on Debian
ARM
http://code.google.com/p/gambas/issues/detail?id=242
gamba3 runs after a recompile and install.
I restored the config.h and I'm now doing a recompile with the critical
gbx_math.c definitions changed to:
...
#ifndef __arm__
#ifndef HAVE_POWL
long double powl(long double x, long double y)
{
return pow((double) x, (double) y);
}
#endif
#ifndef HAVE_MODFL
long double modfl(long double x, long double *iptr)
{
double val;
double retval= modf((double)x, &val);
*iptr = val;
return retval;
}
#endif
#endif
...
More information about the User
mailing list