Mercurial > p > mysql-python > mysqldb-2
annotate site.cfg @ 48:f4fd8c20511c MySQLdb
Read a default file in the test setUp. Since Python 2.4, int() will return longs if needed so make all long references int as in Python 3.0 there is no more long due to int/long unification (new ints are old longs).
author | adustman |
---|---|
date | Sun, 22 Feb 2009 20:01:31 +0000 |
parents | 0e37ee00beb7 |
children |
rev | line source |
---|---|
9
0e37ee00beb7
Merge changes from 1.2 branch (r470:483): Mostly build-related.
adustman
parents:
5
diff
changeset
|
1 [options] |
0 | 2 # embedded: link against the embedded server library |
3 # threadsafe: use the threadsafe client | |
4 # static: link against a static library (probably required for embedded) | |
5 | |
6 embedded = False | |
7 threadsafe = True | |
8 static = False | |
9 | |
9
0e37ee00beb7
Merge changes from 1.2 branch (r470:483): Mostly build-related.
adustman
parents:
5
diff
changeset
|
10 # The path to mysql_config. |
0e37ee00beb7
Merge changes from 1.2 branch (r470:483): Mostly build-related.
adustman
parents:
5
diff
changeset
|
11 # Only use this if mysql_config is not on your PATH, or you have some weird |
0e37ee00beb7
Merge changes from 1.2 branch (r470:483): Mostly build-related.
adustman
parents:
5
diff
changeset
|
12 # setup that requires it. |
0e37ee00beb7
Merge changes from 1.2 branch (r470:483): Mostly build-related.
adustman
parents:
5
diff
changeset
|
13 #mysql_config = /usr/local/bin/mysql_config |
0 | 14 |
9
0e37ee00beb7
Merge changes from 1.2 branch (r470:483): Mostly build-related.
adustman
parents:
5
diff
changeset
|
15 # The Windows registry key for MySQL. |
0e37ee00beb7
Merge changes from 1.2 branch (r470:483): Mostly build-related.
adustman
parents:
5
diff
changeset
|
16 # This has to be set for Windows buildsto work. |
0e37ee00beb7
Merge changes from 1.2 branch (r470:483): Mostly build-related.
adustman
parents:
5
diff
changeset
|
17 # Only change this if you have a different version. |
0e37ee00beb7
Merge changes from 1.2 branch (r470:483): Mostly build-related.
adustman
parents:
5
diff
changeset
|
18 registry_key = SOFTWARE\MySQL AB\MySQL Server 5.0 |