Builds again on win32 (closes: #132).

This commit is contained in:
Federico Di Gregorio 2006-10-29 03:12:51 +00:00
parent 0f5e4e7340
commit f4dc6936a2
11 changed files with 15 additions and 10 deletions

View File

@ -1,3 +1,8 @@
2006-10-29 Federico Di Gregorio <fog@initd.org>
* Applied patch from Jason Erickson to make psycopg build
again on win32 (closes: #132).
2006-09-30 Federico Di Gregorio <fog@initd.org>
* ZpsycopgDA/DA.py: applied the infinity patch from 1.1 (fixes #122).

View File

@ -31,7 +31,7 @@ extern "C" {
extern PyTypeObject asisType;
typedef struct {
PyObject_HEAD;
PyObject_HEAD
/* this is the real object we wrap */
PyObject *wrapped;

View File

@ -32,7 +32,7 @@ extern "C" {
extern PyTypeObject binaryType;
typedef struct {
PyObject_HEAD;
PyObject_HEAD
PyObject *wrapped;
PyObject *buffer;

View File

@ -31,7 +31,7 @@ extern "C" {
extern PyTypeObject pydatetimeType;
typedef struct {
PyObject_HEAD;
PyObject_HEAD
PyObject *wrapped;
int type;

View File

@ -31,7 +31,7 @@ extern "C" {
extern PyTypeObject listType;
typedef struct {
PyObject_HEAD;
PyObject_HEAD
PyObject *wrapped;
PyObject *connection;

View File

@ -31,7 +31,7 @@ extern "C" {
extern PyTypeObject mxdatetimeType;
typedef struct {
PyObject_HEAD;
PyObject_HEAD
PyObject *wrapped;
int type;

View File

@ -31,7 +31,7 @@ extern "C" {
extern PyTypeObject pbooleanType;
typedef struct {
PyObject_HEAD;
PyObject_HEAD
/* this is the real object we wrap */
PyObject *wrapped;

View File

@ -31,7 +31,7 @@ extern "C" {
extern PyTypeObject qstringType;
typedef struct {
PyObject_HEAD;
PyObject_HEAD
PyObject *wrapped;
PyObject *buffer;

View File

@ -38,7 +38,7 @@ extern "C" {
extern PyTypeObject connectionType;
typedef struct {
PyObject_HEAD;
PyObject_HEAD
pthread_mutex_t lock; /* the global connection lock */

View File

@ -34,7 +34,7 @@ extern "C" {
extern PyTypeObject cursorType;
typedef struct {
PyObject_HEAD;
PyObject_HEAD
connectionObject *conn; /* connection owning the cursor */

View File

@ -32,7 +32,7 @@ extern "C" {
extern PyTypeObject isqlquoteType;
typedef struct {
PyObject_HEAD;
PyObject_HEAD
PyObject *wrapped;