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 89399138335 for ; Sat, 22 Sep 2018 07:07:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C72BE0884; Sat, 22 Sep 2018 07:07:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 2FFF9E0884 for ; Sat, 22 Sep 2018 07:07:31 +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 C67BF335D08 for ; Sat, 22 Sep 2018 07:07:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98A2A3E1 for ; Sat, 22 Sep 2018 07:07:26 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1537600030.0046e49dc0a3f3c9bf8aedbfb18df752152a4d03.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gtest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/gtest/gtest-9999.ebuild X-VCS-Directories: dev-cpp/gtest/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0046e49dc0a3f3c9bf8aedbfb18df752152a4d03 X-VCS-Branch: master Date: Sat, 22 Sep 2018 07:07:26 +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: 0572d557-8712-4a59-b0a3-c8f887883645 X-Archives-Hash: b3c60c8ead24cacaa90f0b45f4dc4a0e commit: 0046e49dc0a3f3c9bf8aedbfb18df752152a4d03 Author: Peter Levine gmail com> AuthorDate: Fri Sep 14 01:05:13 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Sep 22 07:07:10 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0046e49d dev-cpp/gtest: Reenable building shared libraries The doublefree bug is fixed upstream with the merge of https://github.com/google/googletest/pull/1339 Package-Manager: Portage-2.3.49, Repoman-2.3.10 dev-cpp/gtest/gtest-9999.ebuild | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/dev-cpp/gtest/gtest-9999.ebuild b/dev-cpp/gtest/gtest-9999.ebuild index a1b5e7ed14c..a2e7c57c55e 100644 --- a/dev-cpp/gtest/gtest-9999.ebuild +++ b/dev-cpp/gtest/gtest-9999.ebuild @@ -40,11 +40,7 @@ multilib_src_configure() { local mycmakeargs=( -DBUILD_GMOCK=ON -DINSTALL_GTEST=ON - - # currently only static libs work - # due to numerous ODR violations - # https://github.com/google/googletest/issues/930 - -DBUILD_SHARED_LIBS=OFF + -DBUILD_SHARED_LIBS=ON # tests -Dgmock_build_tests=$(usex test)