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 67BAF1382C5 for ; Mon, 7 May 2018 23:21:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B91FE08EC; Mon, 7 May 2018 23:21:05 +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 44E53E08E5 for ; Mon, 7 May 2018 23:21:05 +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 E6630335C43 for ; Mon, 7 May 2018 23:21:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 80326257 for ; Mon, 7 May 2018 23:21:02 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1525199353.f4e2142089487b7f5c99da949d7bf8d038724df7.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: mk/ X-VCS-Repository: proj/openrc X-VCS-Files: mk/os-Linux.mk X-VCS-Directories: mk/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: f4e2142089487b7f5c99da949d7bf8d038724df7 X-VCS-Branch: master Date: Mon, 7 May 2018 23:21:02 +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: 3bcac0b3-5da0-4193-b1ea-7e38953e5c65 X-Archives-Hash: ae9ff8e3d2ab702350f66efd400c2761 commit: f4e2142089487b7f5c99da949d7bf8d038724df7 Author: William Hubbs gmail com> AuthorDate: Tue May 1 18:28:57 2018 +0000 Commit: William Hubbs gentoo org> CommitDate: Tue May 1 18:29:13 2018 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=f4e21420 Add _POSIX_C_SOURCE definition to Linux build We need this to allow builds on uclibc-ng based systems. X-Gentoo-Bug: 650908 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=650908 mk/os-Linux.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/os-Linux.mk b/mk/os-Linux.mk index 2479ff5b..9e8a1485 100644 --- a/mk/os-Linux.mk +++ b/mk/os-Linux.mk @@ -11,7 +11,7 @@ SFX= .Linux.in PKG_PREFIX?= /usr -CPPFLAGS+= -D_DEFAULT_SOURCE +CPPFLAGS+= -D_DEFAULT_SOURCE -D_POSIX_C_SOURCE=200809L LIBDL= -Wl,-Bdynamic -ldl ifeq (${MKSELINUX},yes)