mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-15 11:10:58 +08:00
netbsd config
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
post-0.9.1
|
||||
|
||||
* netbsd configuration (Tage Stabell-Kuloe)
|
||||
|
||||
0.9.1
|
||||
|
||||
* The Set class wasn't being imported into MySQLdb, so
|
||||
|
@ -30,6 +30,12 @@ elif sys.platform in ("freebsd4", "openbsd2"):
|
||||
libraries = [mysqlclient, "z"]
|
||||
runtime_library_dirs = []
|
||||
extra_objects = []
|
||||
elif sys.platform == "netbsd1":
|
||||
include_dirs = ['/usr/pkg/include/mysql']
|
||||
library_dirs = ['/usr/pkg/lib/mysql']
|
||||
libraries = [mysqlclient, "z"]
|
||||
runtime_library_dirs = []
|
||||
extra_objects = []
|
||||
elif sys.platform == "sunos5": # Solaris 2.8
|
||||
include_dirs = ['/usr/local/mysql/include/mysql']
|
||||
library_dirs = ['/usr/local/mysql/lib/mysql']
|
||||
|
Reference in New Issue
Block a user