From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CCD1A1381F3 for ; Sat, 27 Jul 2013 16:36:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78753E09E4; Sat, 27 Jul 2013 16:36:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 09A89E09E4 for ; Sat, 27 Jul 2013 16:36:22 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1A8BB33DF46 for ; Sat, 27 Jul 2013 16:36:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 7D6C3E468F for ; Sat, 27 Jul 2013 16:36:20 +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: <1374942958.0af92599c900298290cab56bb568f868e89bf938.grknight.pub@gentoo> Subject: [gentoo-commits] proj/mysql:master commit in: dev-db/myodbc/ X-VCS-Repository: proj/mysql X-VCS-Files: dev-db/myodbc/myodbc-5.2.5.ebuild X-VCS-Directories: dev-db/myodbc/ X-VCS-Committer: grknight.pub X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 0af92599c900298290cab56bb568f868e89bf938 X-VCS-Branch: master Date: Sat, 27 Jul 2013 16:36:20 +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: 0200fbe8-ab4c-403e-9fdc-c6bb25ec54a6 X-Archives-Hash: bb4c616363061bda1be2d9cf21ec4be7 commit: 0af92599c900298290cab56bb568f868e89bf938 Author: Brian Evans lavabit com> AuthorDate: Sat Jul 27 16:35:58 2013 +0000 Commit: Brian Evans lavabit com> CommitDate: Sat Jul 27 16:35:58 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mysql.git;a=commit;h=0af92599 [myodbc] Fix detection of mysql library location by using mysql_config --- dev-db/myodbc/myodbc-5.2.5.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-db/myodbc/myodbc-5.2.5.ebuild b/dev-db/myodbc/myodbc-5.2.5.ebuild index 7b16467..9661e94 100644 --- a/dev-db/myodbc/myodbc-5.2.5.ebuild +++ b/dev-db/myodbc/myodbc-5.2.5.ebuild @@ -35,8 +35,9 @@ src_prepare() { } src_configure() { - # The RPM_BUILD flag does nothing except detect /usr/lib64 when "x86_64" - mycmakeargs+=( -DWITH_UNIXODBC=1 -DRPM_BUILD=1 ) + # The RPM_BUILD flag does nothing except install to /usr/lib64 when "x86_64" + mycmakeargs+=( -DWITH_UNIXODBC=1 -DRPM_BUILD=1 + -DMYSQL_LIB="$(mysql_config --variable=pkglibdir)/libmysqlclient_r.so" ) cmake-utils_src_configure }