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 E7089139085 for ; Wed, 4 Jan 2017 23:23:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43A80234027; Wed, 4 Jan 2017 23:23:20 +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 1E04B234027 for ; Wed, 4 Jan 2017 23:23:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 264683412C1 for ; Wed, 4 Jan 2017 23:23:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E24122521 for ; Wed, 4 Jan 2017 23:23:12 +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: <1483570732.7056b56b3ccc9cbde4ef8297b923919c49c7c242.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: mk/ X-VCS-Repository: proj/openrc X-VCS-Files: mk/os-GNU.mk X-VCS-Directories: mk/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 7056b56b3ccc9cbde4ef8297b923919c49c7c242 X-VCS-Branch: master Date: Wed, 4 Jan 2017 23:23:12 +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: d7e4df21-d51e-4c0c-9888-c63e18a44203 X-Archives-Hash: dee1c3b6623eca9e0088bdc08024e75d commit: 7056b56b3ccc9cbde4ef8297b923919c49c7c242 Author: Benda Xu gentoo org> AuthorDate: Wed Jan 4 22:09:09 2017 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Jan 4 22:58:52 2017 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=7056b56b Drop the use of the _BSD_SOURCE macro on GNU/Hurd X-Gentoo-Bug: 604666 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=604666 mk/os-GNU.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/os-GNU.mk b/mk/os-GNU.mk index 1fbc147..d5c4172 100644 --- a/mk/os-GNU.mk +++ b/mk/os-GNU.mk @@ -11,5 +11,5 @@ SFX= .GNU.in PKG_PREFIX?= /usr -CPPFLAGS+= -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -DMAXPATHLEN=4096 -DPATH_MAX=4096 +CPPFLAGS+= -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=700 -DMAXPATHLEN=4096 -DPATH_MAX=4096 LIBDL= -Wl,-Bdynamic -ldl