Fix for CONPY-66:

fixed typo in setup configuration for windows, which caused to link
dynamically against MySQL Connector/C.
This commit is contained in:
Georg Richter
2020-05-14 14:24:32 +02:00
parent eec5fa1ca3
commit 7142bedc62
4 changed files with 12 additions and 11 deletions

View File

@ -79,6 +79,12 @@ int clock_gettime(int dummy, struct timespec *ct);
#endif /* L64 */
#endif /* _WIN32 */
#define STRINGIFY(n) #n
#define TOSTRING(n) STRINGIFY(n)
#define PY_MARIADB_VERSION TOSTRING(PY_MARIADB_MAJOR_VERSION) "." \
TOSTRING(PY_MARIADB_MINOR_VERSION) "." TOSTRING(PY_MARIADB_PATCH_VERSION)
#define MAX_TPC_XID_SIZE 64
#define POOL_DEFAULT_SIZE 5