diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-10-30 09:37:47 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-10-30 09:37:47 +0000 |
commit | 794da55486ff276f86c745e18e9ed58e6afd6343 (patch) | |
tree | e827089045aad97b46841c001eeccdad56ac9ff1 /databases/py-MySQLdb-devel/files | |
parent | Upgrade to TET v3.3f (diff) |
Update to 0.3.0b1.
Diffstat (limited to 'databases/py-MySQLdb-devel/files')
-rw-r--r-- | databases/py-MySQLdb-devel/files/patch-ab | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/databases/py-MySQLdb-devel/files/patch-ab b/databases/py-MySQLdb-devel/files/patch-ab new file mode 100644 index 000000000000..3892458d0db6 --- /dev/null +++ b/databases/py-MySQLdb-devel/files/patch-ab @@ -0,0 +1,26 @@ +--- setup.py.orig Fri Oct 27 04:09:37 2000 ++++ setup.py Mon Oct 30 11:24:59 2000 +@@ -9,10 +9,10 @@ + # You may need to edit this script to point to the location of your + # MySQL installation. It should be sufficient to change the value of + # the MYSQL_DIR variable below. +-MYSQL_INCLUDE_DIR = '/usr/include/mysql' +-MYSQL_LIB_DIR = '/usr/lib/mysql' +-#mysqlclient = "mysqlclient" # maybe not thread-safe +-mysqlclient = "mysqlclient_r" # thread-safe ++MYSQL_INCLUDE_DIR = '/usr/local/include/mysql' ++MYSQL_LIB_DIR = '/usr/local/lib/mysql' ++mysqlclient = "mysqlclient" # maybe not thread-safe ++#mysqlclient = "mysqlclient_r" # thread-safe + + + setup (# Distribution meta-data +@@ -32,7 +32,7 @@ + sources=['_mysqlmodule.c'], + include_dirs=[MYSQL_INCLUDE_DIR], + # maybe comment to force dynamic libraries +- #library_dirs=[MYSQL_LIB_DIR], ++ library_dirs=[MYSQL_LIB_DIR], + # uncomment if linking against dynamic libraries + #runtime_library_dirs=[MYSQL_LIB_DIR], + libraries=[ |