summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorMatthew Woodcraft <matthew@woodcraft.me.uk>2013-03-17 16:41:15 +0000
committerMatthew Woodcraft <matthew@woodcraft.me.uk>2013-03-17 16:41:15 +0000
commitc75a3bbab4a257745fc2342c1be2b643f4a59e8f (patch)
treeb4eb632b07702cac6d8c5ca11eeba7d44cdc1e94 /setup.py
parente8db9954d16e412903cbf412f6636939ad6c437d (diff)
downloadpsycopg2-c75a3bbab4a257745fc2342c1be2b643f4a59e8f.tar.gz
Work-in-progress support for retrieving PG_DIAG result error fields.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 3791c14..e270689 100644
--- a/setup.py
+++ b/setup.py
@@ -424,6 +424,7 @@ sources = [
'connection_int.c', 'connection_type.c',
'cursor_int.c', 'cursor_type.c',
+ 'diagnostics_type.c',
'lobject_int.c', 'lobject_type.c',
'notify_type.c', 'xid_type.c',
@@ -437,7 +438,7 @@ sources = [
depends = [
# headers
'config.h', 'pgtypes.h', 'psycopg.h', 'python.h',
- 'connection.h', 'cursor.h', 'green.h', 'lobject.h',
+ 'connection.h', 'cursor.h', 'diagnostics.h', 'green.h', 'lobject.h',
'notify.h', 'pqpath.h', 'xid.h',
'adapter_asis.h', 'adapter_binary.h', 'adapter_datetime.h',