Comment #7 on issue 242 by tvijlbr...@gmail.com: 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 gbx_match.c  
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
...


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to