Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/elfix:master commit in: /
Date: Wed, 04 May 2011 02:24:10
Message-Id: 1fb52919d087775b883174d6efdd3c02b325484e.blueness@gentoo
1 commit: 1fb52919d087775b883174d6efdd3c02b325484e
2 Author: Anthony G. Basile <basile <AT> opensource <DOT> dyc <DOT> edu>
3 AuthorDate: Wed May 4 02:23:56 2011 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Wed May 4 02:23:56 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=1fb52919
7
8 configure.ac: added check for more headers
9
10 ---
11 configure.ac | 10 +++++++++-
12 1 files changed, 9 insertions(+), 1 deletions(-)
13
14 diff --git a/configure.ac b/configure.ac
15 index dd6e6dd..fe326ec 100644
16 --- a/configure.ac
17 +++ b/configure.ac
18 @@ -31,7 +31,15 @@ AM_CONDITIONAL([TEST],[test "x$has_yasm" = "xyes"])
19 AC_CHECK_LIB([elf], [elf_begin])
20
21 # Checks for header files.
22 -AC_CHECK_HEADERS([fcntl.h stdlib.h unistd.h])
23 +AC_CHECK_HEADERS([error.h])
24 +AC_CHECK_HEADERS([fcntl.h])
25 +AC_CHECK_HEADERS([gelf.h])
26 +AC_CHECK_HEADERS([stdio.h])
27 +AC_CHECK_HEADERS([stdlib.h])
28 +AC_CHECK_HEADERS([string.h])
29 +AC_CHECK_HEADERS([sys/stat.h])
30 +AC_CHECK_HEADERS([sys/types.h])
31 +AC_CHECK_HEADERS([unistd.h])
32
33 # Checks for typedefs, structures, and compiler characteristics.
34 AC_TYPE_SIZE_T