From mboxrd@z Thu Jan  1 00:00:00 1970
Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org)
	by finch.gentoo.org with esmtp (Exim 4.60)
	(envelope-from <gentoo-commits+bounces-419843-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1Rp4Jb-0007oR-Ib
	for garchives@archives.gentoo.org; Sun, 22 Jan 2012 20:47:03 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 22448E075E;
	Sun, 22 Jan 2012 20:46:56 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	by pigeon.gentoo.org (Postfix) with ESMTP id DFFCAE075E
	for <gentoo-commits@lists.gentoo.org>; Sun, 22 Jan 2012 20:46:55 +0000 (UTC)
Received: from pelican.gentoo.org (unknown [66.219.59.40])
	(using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id EAEC31B400D
	for <gentoo-commits@lists.gentoo.org>; Sun, 22 Jan 2012 20:46:54 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by pelican.gentoo.org (Postfix) with ESMTP id 2326E80044
	for <gentoo-commits@lists.gentoo.org>; Sun, 22 Jan 2012 20:46:54 +0000 (UTC)
From: "William Hubbs" <williamh@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" <williamh@gentoo.org>
Message-ID: <30a565f80d6056ccabadf77e347cf17067133f7e.WilliamH@gentoo>
Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/
X-VCS-Repository: proj/openrc
X-VCS-Files: src/rc/checkpath.c
X-VCS-Directories: src/rc/
X-VCS-Committer: WilliamH
X-VCS-Committer-Name: William Hubbs
X-VCS-Revision: 30a565f80d6056ccabadf77e347cf17067133f7e
Date: Sun, 22 Jan 2012 20:46:54 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: quoted-printable
X-Archives-Salt: 15074fe6-cdef-48a7-a897-bc003a92b8cb
X-Archives-Hash: 389e20ac5d7288d09739040895e83617

commit:     30a565f80d6056ccabadf77e347cf17067133f7e
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 22 20:15:46 2012 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Jan 22 20:41:47 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D=
commit;h=3D30a565f8

Drop include for features.h

The following information is taken from the feature_test_macros man
page:

<features.h> is a Linux/glibc-specific header file.  Other systems have
an analogous file, but typically with a different name.  This header
file is automatically included by other header files as required: it is
not necessary to explicitly include it in order to employ feature test
macros.

Reported-by: Tibor Vago <tibor.vago <AT> gmail.com>
X-Gentoo-Bug: 399635
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=3D399635

---
 src/rc/checkpath.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/src/rc/checkpath.c b/src/rc/checkpath.c
index 4ad4ea7..2afbe90 100644
--- a/src/rc/checkpath.c
+++ b/src/rc/checkpath.c
@@ -32,7 +32,6 @@
 #include <sys/types.h>
 #include <sys/stat.h>
=20
-#include <features.h>
 #include <errno.h>
 #include <fcntl.h>
 #include <getopt.h>