summaryrefslogtreecommitdiff
path: root/databases/mysql55-client/patches
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2011-09-16 07:13:47 +0000
committeradam <adam@pkgsrc.org>2011-09-16 07:13:47 +0000
commitc8ec7785eef3d9e4bd40323f44f8f83ea82bb6d8 (patch)
treecc830bc0d0bb975fad3ac0713444fa68060d1c49 /databases/mysql55-client/patches
parentd156436aa30ae2922b43c28c90c2dc4f8c2cecd4 (diff)
downloadpkgsrc-c8ec7785eef3d9e4bd40323f44f8f83ea82bb6d8.tar.gz
Changes 5.5.16:
* The default thread-handling model in MySQL Server executes statements using one thread per client connection. * Commercial distributions of MySQL now include two plugins that enable MySQL Server to use external authentication methods to authenticate MySQL users * Important Change: Replication: The RESET SLAVE statement has been extended with an ALL keyword. * A new utility, mysql_plugin, enables MySQL administrators to manage which plugins a MySQL server loads. * Bugs fixed.
Diffstat (limited to 'databases/mysql55-client/patches')
-rw-r--r--databases/mysql55-client/patches/patch-mysys_my_init.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/databases/mysql55-client/patches/patch-mysys_my_init.c b/databases/mysql55-client/patches/patch-mysys_my_init.c
deleted file mode 100644
index 2238e5a1d4f..00000000000
--- a/databases/mysql55-client/patches/patch-mysys_my_init.c
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-mysys_my_init.c,v 1.1 2011/08/25 04:37:18 adam Exp $
-
-Fix for Max OS X 10.7 where pthread_init() exists, but isn't a public interface.
-
---- mysys/my_init.c.orig 2011-08-25 04:24:59.000000000 +0000
-+++ mysys/my_init.c
-@@ -99,7 +99,7 @@ my_bool my_init(void)
- fastmutex_global_init(); /* Must be called early */
- #endif
-
--#if defined(HAVE_PTHREAD_INIT)
-+#if defined(HAVE_PTHREAD_INIT) && !defined(__APPLE__)
- pthread_init(); /* Must be called before DBUG_ENTER */
- #endif
-