diff options
author | Brad House <bradmssw@php.net> | 2004-05-30 14:33:45 +0000 |
---|---|---|
committer | Brad House <bradmssw@php.net> | 2004-05-30 14:33:45 +0000 |
commit | 43db887482d63311df6642b189862bc4cf958912 (patch) | |
tree | 28be87f82f6b03f6abb817dd2f83bf83ec1276e3 /ext/mcve | |
parent | 39729083ee124f0020a1bc47f41841c626c1e9e6 (diff) | |
download | php-git-43db887482d63311df6642b189862bc4cf958912.tar.gz |
manually check for egrep
Diffstat (limited to 'ext/mcve')
-rw-r--r-- | ext/mcve/config.m4 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/mcve/config.m4 b/ext/mcve/config.m4 index 6c19e2fe58..7f104f876d 100644 --- a/ext/mcve/config.m4 +++ b/ext/mcve/config.m4 @@ -7,6 +7,9 @@ PHP_ARG_WITH(openssl-dir,OpenSSL dir for MCVE, [ --with-openssl-dir[=DIR] MCVE: openssl install prefix.], no, no) if test "$PHP_MCVE" != "no"; then + dnl determine egrep command for AC_EGREP_CPP below + AC_CHECK_PROG(EGREP, egrep, grep -E) + AC_SUBST(EGREP) if test "$PHP_OPENSSL_DIR" != "no"; then PHP_OPENSSL=$PHP_OPENSSL_DIR |