mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-01-31 09:24:07 +03:00
More cross-platform build fixes
This commit is contained in:
parent
5c0cfa86bf
commit
4077711050
|
@ -1,3 +1,8 @@
|
|||
2009-03-02 Federico Di Gregorio <fog@initd.org>
|
||||
|
||||
* psycopg/config.h: applied patch from Jason Erickson to build
|
||||
with MSVC. Solaris version of isinf() is now a macro.
|
||||
|
||||
2009-02-27 Federico Di Gregorio <fog@initd.org>
|
||||
|
||||
* psycopg/config.h: added check to provide compatible isinf()
|
||||
|
|
|
@ -127,6 +127,15 @@ static struct tm *localtime_r(time_t *t, struct tm *tm)
|
|||
}
|
||||
/* remove the inline keyword, since it doesn't work unless C++ file */
|
||||
#define inline
|
||||
|
||||
/* Hmmm, MSVC doesn't have a isnan/isinf function, but has _isnan function */
|
||||
#if defined (_MSC_VER)
|
||||
#define isnan(x) (_isnan(x))
|
||||
/* The following line was hacked together from simliar code by Bjorn Reese
|
||||
* in libxml2 code */
|
||||
#define isinf(x) ((_fpclass(x) == _FPCLASS_PINF) ? 1 \
|
||||
: ((_fpclass(x) == _FPCLASS_NINF) ? -1 : 0))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if (defined(__FreeBSD__) && __FreeBSD_version < 503000) || (defined(_WIN32) && !defined(__GNUC__)) || defined(__sun__) || defined(sun)
|
||||
|
@ -142,10 +151,10 @@ static double round(double num)
|
|||
#define PQfreemem free
|
||||
#endif
|
||||
|
||||
/* resolve missing isinf() function for Solaris **/
|
||||
/* resolve missing isinf() function for Solaris */
|
||||
#if defined (__SVR4) && defined (__sun)
|
||||
#include <ieeefp.h>
|
||||
int isinf(double x) { return !finite(x) && x==x; }
|
||||
#define isinf(x) (!finite((x)) && (x)==(x))
|
||||
#endif
|
||||
|
||||
#endif /* !defined(PSYCOPG_CONFIG_H) */
|
||||
|
|
Loading…
Reference in New Issue
Block a user