diff options
author | Oleksandr Shulgin <oleksandr.shulgin@zalando.de> | 2015-10-27 18:21:24 +0100 |
---|---|---|
committer | Oleksandr Shulgin <oleksandr.shulgin@zalando.de> | 2015-10-27 18:21:24 +0100 |
commit | fbcf99ad070a3eae67c258d357ab86bda29793fd (patch) | |
tree | d475cc78d9608e2ed81efcb9e16fce943fc61ada /setup.py | |
parent | 433fb957cbca459810eaa2c962bf4b6c5d4fac0d (diff) | |
download | psycopg2-fbcf99ad070a3eae67c258d357ab86bda29793fd.tar.gz |
Move replication connection to C level.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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', |