Small changes and fixes for RC 1.

This commit is contained in:
Federico Di Gregorio 2005-08-07 02:20:46 +00:00
parent 20013f6ff9
commit 3e3084e4c6
3 changed files with 12 additions and 1 deletions

View File

@ -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
View File

@ -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
--------------------------------

View File

@ -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)
{