On Tue, Dec 14, 2004 at 06:58:06PM +0100, Enrico Weigelt wrote:
> * Joe Orton <[EMAIL PROTECTED]> wrote:
>
> > Yeah, that was fixed in 1.5.10. For an autoconf 2.59-generated
> > configure script the only reference to "grep -E" is in the test to see
> > whether grep -E works or not, so that looks fixed to me too.
>
> well, i've tried to regenerate configure with the newest autoconf,
> but without any effect. new and old files dont differ.
You must run buildconf to regenerate the APR configure script, which is
the one which configures libtool and has references to egrep. Again, it
looks fine here with autoconf 2.59:
$ cd httpd-2.0.52
$ grep egrep srclib/apr/configure
...
if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
if $LD --help 2>&1 | egrep 'no-whole-archive' > /dev/null; then
$ ./buildconf
rebuilding srclib/apr/configure
buildconf: checking installation...
buildconf: autoconf version 2.59 (ok)
buildconf: libtool version 1.5.8 (ok)
...
$ grep egrep srclib/apr/configure
echo "$as_me:$LINENO: checking for egrep" >&5
echo $ECHO_N "checking for egrep... $ECHO_C" >&6
if test "${ac_cv_prog_egrep+set}" = set; then
then ac_cv_prog_egrep='grep -E'
else ac_cv_prog_egrep='egrep'
echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
echo "${ECHO_T}$ac_cv_prog_egrep" >&6
EGREP=$ac_cv_prog_egrep