pkgsrc-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: Anyone working on KDE4?



On Fri, May 18, 2007 at 11:06:18PM +0100, Raymond Meyer wrote:
> Well I Googled and turns out others hade similar problems with isinf on
> Solaris. Something to do with GCC optimising calls to isinf during configure
> tests, so that it returns 0 and it appears as if isinf is implemented. I'll
> look at it in more details when I've got time.

Change the code to use a global variable as argument like:

#include <math.h>

double foo;

int main()
{
        return isinf(foo);
}

I have no idea what got commited to CVS.

Joerg



Home | Main Index | Thread Index | Old Index