From owner-svn-ports-head@FreeBSD.ORG Sat Oct 5 15:55:14 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 579BD52C; Sat, 5 Oct 2013 15:55:14 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 454262870; Sat, 5 Oct 2013 15:55:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r95FtEd8079156; Sat, 5 Oct 2013 15:55:14 GMT (envelope-from decke@svn.freebsd.org) Received: (from decke@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r95FtE8k079155; Sat, 5 Oct 2013 15:55:14 GMT (envelope-from decke@svn.freebsd.org) Message-Id: <201310051555.r95FtE8k079155@svn.freebsd.org> From: Bernhard Froehlich Date: Sat, 5 Oct 2013 15:55:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r329470 - head/databases/mysql56-server/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Oct 2013 15:55:14 -0000 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 + #include + #include ++/* solve clash between libc++ bitset::test() and test macro from my_global.h */ ++#undef test + #include + #include + #include