mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-03-12 20:05:48 +03:00
Merge branch 'solaris-round' into maint_2_4
This commit is contained in:
commit
50b68aa987
2
NEWS
2
NEWS
|
@ -2,6 +2,8 @@ What's new in psycopg 2.4.7
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
- Properly cleanup memory of broken connections (ticket #142).
|
- Properly cleanup memory of broken connections (ticket #142).
|
||||||
|
- Fixed build on Solaris 10 and 11 where the round() function is already
|
||||||
|
declared (:ticket:`#146`).
|
||||||
- Fixed bad interaction of setup.py with other dependencies in
|
- Fixed bad interaction of setup.py with other dependencies in
|
||||||
Distribute project on Python 3 (ticket #153).
|
Distribute project on Python 3 (ticket #153).
|
||||||
|
|
||||||
|
|
|
@ -141,7 +141,10 @@ static int pthread_mutex_init(pthread_mutex_t *mutex, void* fake)
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (defined(__FreeBSD__) && __FreeBSD_version < 503000) || (defined(_WIN32) && !defined(__GNUC__)) || defined(__sun__) || defined(sun)
|
#if (defined(__FreeBSD__) && __FreeBSD_version < 503000) \
|
||||||
|
|| (defined(_WIN32) && !defined(__GNUC__)) \
|
||||||
|
|| (defined(sun) || defined(__sun__)) \
|
||||||
|
&& (defined(__SunOS_5_8) || defined(__SunOS_5_9))
|
||||||
/* what's this, we have no round function either? */
|
/* what's this, we have no round function either? */
|
||||||
static double round(double num)
|
static double round(double num)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user