diff options
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/floatobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 2f1cbdf..1215901 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -28,7 +28,7 @@ extern double fmod(double, double); extern double pow(double, double); #endif -#ifdef sun +#if defined(sun) && !defined(__SVR4) /* On SunOS4.1 only libm.a exists. Make sure that references to all needed math functions exist in the executable, so that dynamic loading of mathmodule does not fail. */ |