svn commit: r329470 - head/databases/mysql56-server/files
Bernhard Froehlich
decke at FreeBSD.org
Sat Oct 5 15:55:14 UTC 2013
Author: decke
Date: Sat Oct 5 15:55:13 2013
New Revision: 329470
URL: http://svnweb.freebsd.org/changeset/ports/329470
Log:
- Fix build problem on HEAD where libc++ bitset::test() and the
mysql built in macro test() from my_global.h clash.
The port requires another fix to properly compile on HEAD which
will be committed to libc++/include/memory on HEAD soon.
With hat: portmgr
Added:
head/databases/mysql56-server/files/patch-plugin_password_validation_validate_password.cc (contents, props changed)
Added: head/databases/mysql56-server/files/patch-plugin_password_validation_validate_password.cc
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/mysql56-server/files/patch-plugin_password_validation_validate_password.cc Sat Oct 5 15:55:13 2013 (r329470)
@@ -0,0 +1,11 @@
+--- plugin/password_validation/validate_password.cc.orig 2013-09-10 07:38:25.000000000 +0000
++++ plugin/password_validation/validate_password.cc 2013-10-05 15:40:20.790380179 +0000
+@@ -16,6 +16,8 @@
+ #include <my_sys.h>
+ #include <string>
+ #include <mysql/plugin_validate_password.h>
++/* solve clash between libc++ bitset::test() and test macro from my_global.h */
++#undef test
+ #include <set>
+ #include <iostream>
+ #include <fstream>
More information about the svn-ports-all
mailing list