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-341741-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1QHRl3-0002O2-Kg
	for garchives@archives.gentoo.org; Wed, 04 May 2011 02:24:10 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id D88161C02D;
	Wed,  4 May 2011 02:24:02 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	by pigeon.gentoo.org (Postfix) with ESMTP id A7EE61C02D
	for <gentoo-commits@lists.gentoo.org>; Wed,  4 May 2011 02:24:02 +0000 (UTC)
Received: from pelican.gentoo.org (unknown [66.219.59.40])
	(using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 3E1D71B4018
	for <gentoo-commits@lists.gentoo.org>; Wed,  4 May 2011 02:24:02 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by pelican.gentoo.org (Postfix) with ESMTP id 4F8D280505
	for <gentoo-commits@lists.gentoo.org>; Wed,  4 May 2011 02:24:01 +0000 (UTC)
From: "Anthony G. Basile" <blueness@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" <blueness@gentoo.org>
Message-ID: <1fb52919d087775b883174d6efdd3c02b325484e.blueness@gentoo>
Subject: [gentoo-commits] proj/elfix:master commit in: /
X-VCS-Repository: proj/elfix
X-VCS-Files: configure.ac
X-VCS-Directories: /
X-VCS-Committer: blueness
X-VCS-Committer-Name: Anthony G. Basile
X-VCS-Revision: 1fb52919d087775b883174d6efdd3c02b325484e
Date: Wed,  4 May 2011 02:24:01 +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: 
X-Archives-Hash: 66ce18841cb5ac644aa1c345156e25fe

commit:     1fb52919d087775b883174d6efdd3c02b325484e
Author:     Anthony G. Basile <basile <AT> opensource <DOT> dyc <DOT> edu=
>
AuthorDate: Wed May  4 02:23:56 2011 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Wed May  4 02:23:56 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=3Dproj/elfix.git;a=3D=
commit;h=3D1fb52919

configure.ac: added check for more headers

---
 configure.ac |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index dd6e6dd..fe326ec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -31,7 +31,15 @@ AM_CONDITIONAL([TEST],[test "x$has_yasm" =3D "xyes"])
 AC_CHECK_LIB([elf], [elf_begin])
=20
 # Checks for header files.
-AC_CHECK_HEADERS([fcntl.h stdlib.h unistd.h])
+AC_CHECK_HEADERS([error.h])
+AC_CHECK_HEADERS([fcntl.h])
+AC_CHECK_HEADERS([gelf.h])
+AC_CHECK_HEADERS([stdio.h])
+AC_CHECK_HEADERS([stdlib.h])
+AC_CHECK_HEADERS([string.h])
+AC_CHECK_HEADERS([sys/stat.h])
+AC_CHECK_HEADERS([sys/types.h])
+AC_CHECK_HEADERS([unistd.h])
=20
 # Checks for typedefs, structures, and compiler characteristics.
 AC_TYPE_SIZE_T