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 00774139694 for ; Sat, 22 Apr 2017 08:34:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34501E0BC1; Sat, 22 Apr 2017 08:34:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0B68CE0BC1 for ; Sat, 22 Apr 2017 08:34:03 +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 9379134071C for ; Sat, 22 Apr 2017 08:34:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0B7973F3 for ; Sat, 22 Apr 2017 08:34:00 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1492850039.93fa016c35ea45398acbbc88d73687125af6cd45.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mongo-c-driver/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/mongo-c-driver/mongo-c-driver-0.7.1-r1.ebuild dev-libs/mongo-c-driver/mongo-c-driver-0.8.1-r1.ebuild X-VCS-Directories: dev-libs/mongo-c-driver/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 93fa016c35ea45398acbbc88d73687125af6cd45 X-VCS-Branch: master Date: Sat, 22 Apr 2017 08:34:00 +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: 5042d357-2061-4b98-bbc7-81d0202dbc9f X-Archives-Hash: ef1778e4eb9a2c0f864f0b58101f8617 commit: 93fa016c35ea45398acbbc88d73687125af6cd45 Author: Jeroen Roovers gentoo org> AuthorDate: Sat Apr 22 08:27:44 2017 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Apr 22 08:33:59 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93fa016c dev-libs/mongo-c-driver: Work around "error: storage size of ‘ai_hints’ isn’t known" (bug #564334 by Marcin Mirosław). Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-libs/mongo-c-driver/mongo-c-driver-0.7.1-r1.ebuild | 5 +++-- dev-libs/mongo-c-driver/mongo-c-driver-0.8.1-r1.ebuild | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/dev-libs/mongo-c-driver/mongo-c-driver-0.7.1-r1.ebuild b/dev-libs/mongo-c-driver/mongo-c-driver-0.7.1-r1.ebuild index 4a4f4366d13..7226e95ee5d 100644 --- a/dev-libs/mongo-c-driver/mongo-c-driver-0.7.1-r1.ebuild +++ b/dev-libs/mongo-c-driver/mongo-c-driver-0.7.1-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 PYTHON_COMPAT=(python2_7) -inherit multilib python-r1 toolchain-funcs +inherit flag-o-matic multilib python-r1 toolchain-funcs DESCRIPTION="C Driver for MongoDB" HOMEPAGE="http://www.mongodb.org/ https://github.com/mongodb/mongo-c-driver" @@ -35,6 +35,7 @@ src_prepare() { } src_compile() { + append-cflags -D_POSIX_C_SOURCE=200112L emake use doc && make -C docs/source/sphinx html } diff --git a/dev-libs/mongo-c-driver/mongo-c-driver-0.8.1-r1.ebuild b/dev-libs/mongo-c-driver/mongo-c-driver-0.8.1-r1.ebuild index 17902af5511..aaf844fa1fc 100644 --- a/dev-libs/mongo-c-driver/mongo-c-driver-0.8.1-r1.ebuild +++ b/dev-libs/mongo-c-driver/mongo-c-driver-0.8.1-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" PYTHON_COMPAT=( python2_7 ) -inherit base multilib python-any-r1 toolchain-funcs +inherit base flag-o-matic multilib python-any-r1 toolchain-funcs DESCRIPTION="C Driver for MongoDB" HOMEPAGE="http://www.mongodb.org/ https://github.com/mongodb/mongo-c-driver" @@ -34,6 +34,7 @@ src_unpack() { } src_compile() { + append-cflags -D_POSIX_C_SOURCE=200112L tc-export CC emake use doc && make -C docs/source/sphinx html