Commit 4b5079fe authored by kaa@polly.local's avatar kaa@polly.local

Merge polly.local:/home/kaa/src/maint/mysql-5.0-maint

into  polly.local:/home/kaa/src/maint/mysql-5.1-maint
parents 2b8bad59 3bed4639
...@@ -847,13 +847,20 @@ typedef SOCKET_SIZE_TYPE size_socket; ...@@ -847,13 +847,20 @@ typedef SOCKET_SIZE_TYPE size_socket;
#define SSIZE_MAX ((~((size_t) 0)) / 2) #define SSIZE_MAX ((~((size_t) 0)) / 2)
#endif #endif
#ifndef HAVE_FINITE
#define finite(x) (1.0 / fabs(x) > 0.0)
#endif
#ifndef HAVE_ISNAN
#define isnan(x) ((x) != (x))
#endif
#if !defined(HAVE_ISINF) #if !defined(HAVE_ISINF)
/* The configure check for "isinf with math.h" has failed */ /* The configure check for "isinf with math.h" has failed */
#ifdef isinf #ifdef isinf
#undef isinf #undef isinf
#endif #endif
/* Define isinf to never say that X is infinite */ #define isinf(X) (!finite(X) && !isnan(X))
#define isinf(X) 0
#endif #endif
/* Define missing math constants. */ /* Define missing math constants. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment