aboutsummaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorClement Laforet <clement@FreeBSD.org>2004-07-31 20:13:16 +0000
committerClement Laforet <clement@FreeBSD.org>2004-07-31 20:13:16 +0000
commit1928b42c5faaab304ea19846bbf7d42ee5b4be4e (patch)
tree6bb7fd84c25593dbe8e87d3b61fe861d4a1df9c7 /databases
parent0c6a5caf4ec5c97aff1d2307108e3156444eb7de (diff)
downloadports-1928b42c5faaab304ea19846bbf7d42ee5b4be4e.tar.gz
ports-1928b42c5faaab304ea19846bbf7d42ee5b4be4e.zip
- Fix build with MySQL 4.1.3
Reported by: crappy, thierry Submitted by: thierry Obtained from: http://sourceforge.net/tracker/index.php?func=detail&aid=998151&group_id=22307&atid=374934
Notes
Notes: svn path=/head/; revision=115175
Diffstat (limited to 'databases')
-rw-r--r--databases/py-MySQLdb-devel/files/patch-_mysql.c21
-rw-r--r--databases/py-MySQLdb/files/patch-_mysql.c21
2 files changed, 42 insertions, 0 deletions
diff --git a/databases/py-MySQLdb-devel/files/patch-_mysql.c b/databases/py-MySQLdb-devel/files/patch-_mysql.c
new file mode 100644
index 000000000000..c595576ce69d
--- /dev/null
+++ b/databases/py-MySQLdb-devel/files/patch-_mysql.c
@@ -0,0 +1,21 @@
+Index: MySQLdb/_mysql.c
+===================================================================
+RCS file: /cvsroot/mysql-python/MySQLdb/_mysql.c,v
+retrieving revision 1.49
+diff -u -r1.49 _mysql.c
+--- _mysql.c 7 Jun 2004 03:44:38 -0000 1.49
++++ _mysql.c 26 Jul 2004 16:58:29 -0000
+@@ -1542,7 +1542,13 @@
+ if (!PyArg_ParseTuple(args, "")) return NULL;
+ check_connection(self);
+ Py_BEGIN_ALLOW_THREADS
++
++#if MYSQL_VERSION_ID >= 040103
++ r = mysql_shutdown(&(self->connection),
++ SHUTDOWN_DEFAULT);
++#else
+ r = mysql_shutdown(&(self->connection));
++#endif
+ Py_END_ALLOW_THREADS
+ if (r) return _mysql_Exception(self);
+ Py_INCREF(Py_None);
diff --git a/databases/py-MySQLdb/files/patch-_mysql.c b/databases/py-MySQLdb/files/patch-_mysql.c
new file mode 100644
index 000000000000..c595576ce69d
--- /dev/null
+++ b/databases/py-MySQLdb/files/patch-_mysql.c
@@ -0,0 +1,21 @@
+Index: MySQLdb/_mysql.c
+===================================================================
+RCS file: /cvsroot/mysql-python/MySQLdb/_mysql.c,v
+retrieving revision 1.49
+diff -u -r1.49 _mysql.c
+--- _mysql.c 7 Jun 2004 03:44:38 -0000 1.49
++++ _mysql.c 26 Jul 2004 16:58:29 -0000
+@@ -1542,7 +1542,13 @@
+ if (!PyArg_ParseTuple(args, "")) return NULL;
+ check_connection(self);
+ Py_BEGIN_ALLOW_THREADS
++
++#if MYSQL_VERSION_ID >= 040103
++ r = mysql_shutdown(&(self->connection),
++ SHUTDOWN_DEFAULT);
++#else
+ r = mysql_shutdown(&(self->connection));
++#endif
+ Py_END_ALLOW_THREADS
+ if (r) return _mysql_Exception(self);
+ Py_INCREF(Py_None);