diff options
author | My Karlsson <mk@acc.umu.se> | 2017-10-26 20:11:51 +0200 |
---|---|---|
committer | My Karlsson <mk@acc.umu.se> | 2017-10-26 20:21:30 +0200 |
commit | f54783ae6e6de44dafcecefdc8963c58a2ed98b9 (patch) | |
tree | 21cc7dd2f781b9a8cd3c7d24534a3f5c3e3395f0 /setup.py | |
parent | 46d8529dde6368e2075b4028150229811429e260 (diff) | |
download | psycopg2-f54783ae6e6de44dafcecefdc8963c58a2ed98b9.tar.gz |
Emulate timeradd and timersub on Solaris
Solaris does not have timeradd and timersub. Add solaris_support.c which
provides emulated versions of them on Solaris.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -480,7 +480,7 @@ data_files = [] sources = [ 'psycopgmodule.c', 'green.c', 'pqpath.c', 'utils.c', 'bytes_format.c', - 'libpq_support.c', 'win32_support.c', + 'libpq_support.c', 'win32_support.c', 'solaris_support.c', 'connection_int.c', 'connection_type.c', 'cursor_int.c', 'cursor_type.c', |