diff options
author | Tim Rice <tim@multitalents.net> | 2006-02-02 19:16:11 -0800 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2006-02-02 19:16:11 -0800 |
commit | e9d6269fc51cf153cdca40cc82c5ec188df74c17 (patch) | |
tree | 95ef349ea1f783fe60c3972ab7aab46815fdcd83 /configure.ac | |
parent | a983b762cd5b717f30d011823cfb47540d5320c0 (diff) |
- (tim) [configure.ac] test for egrep (AC_PROG_EGREP) before first
AC_CHECK_HEADERS test. Without it, if AC_CHECK_HEADERS is first run
by a platform specific check, builtin standard includes tests will be
skipped on the other platforms.
Analysis and suggestion by vinschen at redhat.com, patch by dtucker@.
OK tim@, djm@.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8e1ea9764..20b15c622 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.322.2.1 2006/02/02 07:44:05 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.322.2.2 2006/02/03 03:16:11 tim Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 1999-2004 Damien Miller | 3 | # Copyright (c) 1999-2004 Damien Miller |
4 | # | 4 | # |
@@ -27,6 +27,7 @@ AC_PROG_AWK | |||
27 | AC_PROG_CPP | 27 | AC_PROG_CPP |
28 | AC_PROG_RANLIB | 28 | AC_PROG_RANLIB |
29 | AC_PROG_INSTALL | 29 | AC_PROG_INSTALL |
30 | AC_PROG_EGREP | ||
30 | AC_PATH_PROG(AR, ar) | 31 | AC_PATH_PROG(AR, ar) |
31 | AC_PATH_PROG(CAT, cat) | 32 | AC_PATH_PROG(CAT, cat) |
32 | AC_PATH_PROG(KILL, kill) | 33 | AC_PATH_PROG(KILL, kill) |