Skip to content

Commit f4dc693

Browse files
committed
Builds again on win32 (closes: psycopg#132).
1 parent 0f5e4e7 commit f4dc693

File tree

11 files changed

+15
-10
lines changed

11 files changed

+15
-10
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2006-10-29 Federico Di Gregorio <fog@initd.org>
2+
3+
* Applied patch from Jason Erickson to make psycopg build
4+
again on win32 (closes: #132).
5+
16
2006-09-30 Federico Di Gregorio <fog@initd.org>
27

38
* ZpsycopgDA/DA.py: applied the infinity patch from 1.1 (fixes #122).

psycopg/adapter_asis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ extern "C" {
3131
extern PyTypeObject asisType;
3232

3333
typedef struct {
34-
PyObject_HEAD;
34+
PyObject_HEAD
3535

3636
/* this is the real object we wrap */
3737
PyObject *wrapped;

psycopg/adapter_binary.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ extern "C" {
3232
extern PyTypeObject binaryType;
3333

3434
typedef struct {
35-
PyObject_HEAD;
35+
PyObject_HEAD
3636

3737
PyObject *wrapped;
3838
PyObject *buffer;

psycopg/adapter_datetime.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ extern "C" {
3131
extern PyTypeObject pydatetimeType;
3232

3333
typedef struct {
34-
PyObject_HEAD;
34+
PyObject_HEAD
3535

3636
PyObject *wrapped;
3737
int type;

psycopg/adapter_list.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ extern "C" {
3131
extern PyTypeObject listType;
3232

3333
typedef struct {
34-
PyObject_HEAD;
34+
PyObject_HEAD
3535

3636
PyObject *wrapped;
3737
PyObject *connection;

psycopg/adapter_mxdatetime.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ extern "C" {
3131
extern PyTypeObject mxdatetimeType;
3232

3333
typedef struct {
34-
PyObject_HEAD;
34+
PyObject_HEAD
3535

3636
PyObject *wrapped;
3737
int type;

psycopg/adapter_pboolean.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ extern "C" {
3131
extern PyTypeObject pbooleanType;
3232

3333
typedef struct {
34-
PyObject_HEAD;
34+
PyObject_HEAD
3535

3636
/* this is the real object we wrap */
3737
PyObject *wrapped;

psycopg/adapter_qstring.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ extern "C" {
3131
extern PyTypeObject qstringType;
3232

3333
typedef struct {
34-
PyObject_HEAD;
34+
PyObject_HEAD
3535

3636
PyObject *wrapped;
3737
PyObject *buffer;

psycopg/connection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ extern "C" {
3838
extern PyTypeObject connectionType;
3939

4040
typedef struct {
41-
PyObject_HEAD;
41+
PyObject_HEAD
4242

4343
pthread_mutex_t lock; /* the global connection lock */
4444

psycopg/cursor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ extern "C" {
3434
extern PyTypeObject cursorType;
3535

3636
typedef struct {
37-
PyObject_HEAD;
37+
PyObject_HEAD
3838

3939
connectionObject *conn; /* connection owning the cursor */
4040

0 commit comments

Comments
 (0)