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 A1E04139083 for ; Sat, 16 Dec 2017 20:58:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7B15E0C3D; Sat, 16 Dec 2017 20:58:43 +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 AB7A3E0C3D for ; Sat, 16 Dec 2017 20:58:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C7BFA33BF01 for ; Sat, 16 Dec 2017 20:58:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B127AE70 for ; Sat, 16 Dec 2017 20:58:41 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1513457904.774e88bd1e08bd92a228f09c09395839755cddde.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/lmdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/lmdb/lmdb-0.9.19.ebuild X-VCS-Directories: dev-db/lmdb/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 774e88bd1e08bd92a228f09c09395839755cddde X-VCS-Branch: master Date: Sat, 16 Dec 2017 20:58:41 +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: a2efa443-6bdd-4319-a48a-58ff467c38fb X-Archives-Hash: 80238d6815a280c1098be39a260466de commit: 774e88bd1e08bd92a228f09c09395839755cddde Author: Fabian Groffen gentoo org> AuthorDate: Sat Dec 16 14:38:53 2017 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sat Dec 16 20:58:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=774e88bd dev-db/lmdb: fix linking on Solaris 10 Package-Manager: Portage-2.3.18-prefix, Repoman-2.3.6 dev-db/lmdb/lmdb-0.9.19.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-db/lmdb/lmdb-0.9.19.ebuild b/dev-db/lmdb/lmdb-0.9.19.ebuild index c4452f3a228..116e69d4f99 100644 --- a/dev-db/lmdb/lmdb-0.9.19.ebuild +++ b/dev-db/lmdb/lmdb-0.9.19.ebuild @@ -38,6 +38,8 @@ src_configure() { if [[ ${CHOST} == *-solaris* ]] ; then # ensure sigwait has a second sig argument append-cppflags -D_POSIX_PTHREAD_SEMANTICS + # fdatasync lives in -lrt on Solaris 10 + [[ ${CHOST#*-solaris2.} -le 10 ]] && append-ldflags -lrt fi }