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 44E651386F3 for ; Fri, 14 Aug 2015 01:00:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B7611424F; Fri, 14 Aug 2015 00:59:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1782C1424F for ; Fri, 14 Aug 2015 00:59:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 523C3340940 for ; Fri, 14 Aug 2015 00:59:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C25CC147 for ; Fri, 14 Aug 2015 00:59:54 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1439514179.66e00955bd8dd37e04c5d1c6febb50fe84b2c7e8.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/monkeyd/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/monkeyd/monkeyd-1.6.0-r1.ebuild X-VCS-Directories: www-servers/monkeyd/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 66e00955bd8dd37e04c5d1c6febb50fe84b2c7e8 X-VCS-Branch: master Date: Fri, 14 Aug 2015 00:59:54 +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: 4d907846-ab03-4ca0-9bb8-c1a42deacd88 X-Archives-Hash: 34ff174d5d91eafb3b8c9b321e3a7a62 commit: 66e00955bd8dd37e04c5d1c6febb50fe84b2c7e8 Author: Anthony G. Basile gentoo org> AuthorDate: Fri Aug 14 00:45:05 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Fri Aug 14 01:02:59 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66e00955 www-servers/monkeyd: fix build on uClibc Package-Manager: portage-2.2.20.1 www-servers/monkeyd/monkeyd-1.6.0-r1.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/www-servers/monkeyd/monkeyd-1.6.0-r1.ebuild b/www-servers/monkeyd/monkeyd-1.6.0-r1.ebuild index e265962..d07b3b8 100644 --- a/www-servers/monkeyd/monkeyd-1.6.0-r1.ebuild +++ b/www-servers/monkeyd/monkeyd-1.6.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI="5" -inherit toolchain-funcs depend.php multilib +inherit flag-o-matic toolchain-funcs multilib MY_P="${PN/d}-${PV}" DESCRIPTION="A small, fast, and scalable web server" @@ -86,6 +86,13 @@ src_configure() { myconf+=" --static-plugins=${enable_plugins%,}" fi + # For O_CLOEXEC which is guarded by _GNU_SOURCE in uClibc, + # but shouldn't because it is POSIX. This needs to be fixed + # in uClibc. Also, we really should us append-cppflags but + # monkey's build system doesn't respect CPPFLAGS. This needs + # to be fixed in monkey. + use elibc_uclibc && append-cflags -D_GNU_SOURCE + # Non-autotools configure ./configure \ --pthread-tls \