summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorOleksandr Shulgin <oleksandr.shulgin@zalando.de>2015-10-27 18:21:24 +0100
committerOleksandr Shulgin <oleksandr.shulgin@zalando.de>2015-10-27 18:21:24 +0100
commitfbcf99ad070a3eae67c258d357ab86bda29793fd (patch)
treed475cc78d9608e2ed81efcb9e16fce943fc61ada /setup.py
parent433fb957cbca459810eaa2c962bf4b6c5d4fac0d (diff)
downloadpsycopg2-fbcf99ad070a3eae67c258d357ab86bda29793fd.tar.gz
Move replication connection to C level.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 18c47b7..210ad83 100644
--- a/setup.py
+++ b/setup.py
@@ -466,7 +466,9 @@ sources = [
'connection_int.c', 'connection_type.c',
'cursor_int.c', 'cursor_type.c',
- 'replication_cursor_type.c', 'replication_message_type.c',
+ 'replication_connection_type.c',
+ 'replication_cursor_type.c',
+ 'replication_message_type.c',
'diagnostics_type.c', 'error_type.c',
'lobject_int.c', 'lobject_type.c',
'notify_type.c', 'xid_type.c',
@@ -482,7 +484,9 @@ depends = [
# headers
'config.h', 'pgtypes.h', 'psycopg.h', 'python.h', 'connection.h',
'cursor.h', 'diagnostics.h', 'error.h', 'green.h', 'lobject.h',
- 'replication_cursor.h', 'replication_message.h',
+ 'replication_connection.h',
+ 'replication_cursor.h',
+ 'replication_message.h',
'notify.h', 'pqpath.h', 'xid.h',
'libpq_support.h', 'win32_support.h',