gnustep-dev
[Top][All Lists]
Advanced

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

GNUstep-GUI win32 compilation problem


From: Alex Perez
Subject: GNUstep-GUI win32 compilation problem
Date: Wed, 02 Feb 2005 21:47:34 -0800
User-agent: Mozilla Thunderbird 1.0 (Windows/20041206)

Using Mingw+gcc3.2.3, I get:

 Compiling file NSImage.m ...
NSImage.m:57: parse error before "double"
NSImage.m:64: parse error before "double"


and the offending code is:

static double min(double x, double y) <--- line 57
{
  if (x > y)
    return y;
  else
    return x;
}
static double max(double x, double y) <--- line 57
{
  if (x < y)
    return y;
  else
    return x;
}

Any thoughts?

I thought GNUstep was supposed to still work with GCC 3.x

Cheers,
Alex Perez





reply via email to

[Prev in Thread] Current Thread [Next in Thread]