mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-15 11:10:58 +08:00
Version 1.1.4
* setup.py: changed include and library path order * MySQLdb/connections.py: fix super class reference in autocommit() * Tested against MySQL-4.1.4a with InnoDB tables
This commit is contained in:
@ -18,18 +18,20 @@ embedded_server = (mysqlclient == 'mysqld')
|
||||
name = "MySQL-%s" % os.path.basename(sys.executable)
|
||||
if embedded_server:
|
||||
name = name + "-embedded"
|
||||
version = "1.1.3"
|
||||
version = "1.1.4"
|
||||
|
||||
# include files and library locations should cover most platforms
|
||||
include_dirs = [
|
||||
'/usr/include/mysql', '/usr/local/include/mysql',
|
||||
'/usr/local/include/mysql',
|
||||
'/usr/local/mysql/include',
|
||||
'/usr/local/mysql/include/mysql'
|
||||
'/usr/include/mysql',
|
||||
]
|
||||
library_dirs = [
|
||||
'/usr/lib/mysql', '/usr/local/lib/mysql',
|
||||
'/usr/local/lib/mysql',
|
||||
'/usr/local/mysql/lib',
|
||||
'/usr/local/mysql/lib/mysql'
|
||||
'/usr/local/mysql/lib/mysql',
|
||||
'/usr/lib/mysql',
|
||||
]
|
||||
|
||||
libraries = [mysqlclient] + mysqloptlibs
|
||||
|
Reference in New Issue
Block a user