From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3FFFC138334 for ; Tue, 23 Oct 2018 00:12:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3C0CE0968; Tue, 23 Oct 2018 00:12:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8DA31E0968 for ; Tue, 23 Oct 2018 00:12:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3120D335D0F for ; Tue, 23 Oct 2018 00:12:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D26E9449 for ; Tue, 23 Oct 2018 00:12:45 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1540253507.27250c4031ebd8502062cea753ade01d155a486c.grknight@gentoo> Subject: [gentoo-commits] proj/mysql-extras:master commit in: / X-VCS-Repository: proj/mysql-extras X-VCS-Files: 20001_all_fix-minimal-build-cmake-mysql-5.7.23.patch X-VCS-Directories: / X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 27250c4031ebd8502062cea753ade01d155a486c X-VCS-Branch: master Date: Tue, 23 Oct 2018 00:12:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7520f06e-3dec-49dd-a239-137e0e485fdd X-Archives-Hash: 46178f6bbee5e37ac0d2114bdffeb5b8 commit: 27250c4031ebd8502062cea753ade01d155a486c Author: Brian Evans gentoo org> AuthorDate: Tue Oct 23 00:11:47 2018 +0000 Commit: Brian Evans gentoo org> CommitDate: Tue Oct 23 00:11:47 2018 +0000 URL: https://gitweb.gentoo.org/proj/mysql-extras.git/commit/?id=27250c40 Respin minimal build patch for bug 669236 Signed-off-by: Brian Evans gentoo.org> ..._all_fix-minimal-build-cmake-mysql-5.7.23.patch | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/20001_all_fix-minimal-build-cmake-mysql-5.7.23.patch b/20001_all_fix-minimal-build-cmake-mysql-5.7.23.patch new file mode 100644 index 0000000..915ad1d --- /dev/null +++ b/20001_all_fix-minimal-build-cmake-mysql-5.7.23.patch @@ -0,0 +1,26 @@ +diff -aurwN mysql.orig/CMakeLists.txt mysql/CMakeLists.txt +--- a/CMakeLists.txt 2014-07-18 11:48:39.000000000 -0400 ++++ b/CMakeLists.txt 2014-08-01 12:54:52.612732241 -0400 +@@ -531,7 +531,9 @@ + # Add bundled yassl/taocrypt or system openssl. + MYSQL_CHECK_SSL() + # Add libevent +-MYSQL_CHECK_LIBEVENT() ++IF(NOT WITHOUT_SERVER) ++ MYSQL_CHECK_LIBEVENT() ++ENDIF() + # Add lz4 library + MYSQL_CHECK_LZ4() + # Add protoc and libprotobuf +@@ -626,10 +626,10 @@ + # scripts/mysql_config depends on client and server targets loaded above. + # It is referenced by some of the directories below, so we insert it here. + ADD_SUBDIRECTORY(scripts) ++ADD_SUBDIRECTORY(support-files) + + IF(NOT WITHOUT_SERVER) + ADD_SUBDIRECTORY(mysql-test) + ADD_SUBDIRECTORY(mysql-test/lib/My/SafeProcess) +- ADD_SUBDIRECTORY(support-files) + IF(EXISTS ${CMAKE_SOURCE_DIR}/internal/CMakeLists.txt) + ADD_SUBDIRECTORY(internal)