mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-25 10:23:43 +03:00
Small changes and fixes for RC 1.
This commit is contained in:
parent
20013f6ff9
commit
3e3084e4c6
|
@ -1,3 +1,7 @@
|
|||
2005-08-07 Federico Di Gregorio <fog@debian.org>
|
||||
|
||||
* psycopg/config.h: added __sun__ to the symbols checked for round()
|
||||
|
||||
2005-07-21 Federico Di Gregorio <fog@debian.org>
|
||||
|
||||
* psycopg/adapter_datetime.c (psyco_XXXFromTicks): fixed the 1900
|
||||
|
|
7
NEWS
7
NEWS
|
@ -1,3 +1,10 @@
|
|||
What's new in psycopg 2.0 rc 1
|
||||
------------------------------
|
||||
|
||||
* First (and probably last) release candidate.
|
||||
|
||||
* Fixed all known bugs.
|
||||
|
||||
What's new in psycopg 2.0 beta 4
|
||||
--------------------------------
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ static struct tm *gmtime_r(time_t *t, struct tm *tm)
|
|||
#define inline
|
||||
#endif
|
||||
|
||||
#if defined(__FreeBSD__) || defined(_WIN32)
|
||||
#if defined(__FreeBSD__) || defined(_WIN32) || defined(__sun__)
|
||||
/* what's this, we have no round function either? */
|
||||
static double round(double num)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user