Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 Oct 2013 15:55:14 +0000 (UTC)
From:      Bernhard Froehlich <decke@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r329470 - head/databases/mysql56-server/files
Message-ID:  <201310051555.r95FtE8k079155@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310051555.r95FtE8k079155>