summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2006-02-02 19:11:56 -0800
committerTim Rice <tim@multitalents.net>2006-02-02 19:11:56 -0800
commitfd80ddcb2349e2ac28f4fc6f682c20c8d1dc06ad (patch)
tree2c1e1a5f9d932aebafc6c7975e7394a6d228a5a8 /configure.ac
parentcc7c212830e3f5adabe1996e6b498f01e963cfee (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.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 6b5ec863..fe034aca 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.323 2006/02/02 07:44:19 dtucker Exp $
+# $Id: configure.ac,v 1.324 2006/02/03 03:11:56 tim Exp $
#
# Copyright (c) 1999-2004 Damien Miller
#
@@ -27,6 +27,7 @@ AC_PROG_AWK
AC_PROG_CPP
AC_PROG_RANLIB
AC_PROG_INSTALL
+AC_PROG_EGREP
AC_PATH_PROG(AR, ar)
AC_PATH_PROG(CAT, cat)
AC_PATH_PROG(KILL, kill)