mirror of
https://github.com/mariadb-corporation/mariadb-connector-python.git
synced 2025-08-07 11:39:43 +00:00
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:
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user