From de7a1d4592311281499973aaa1b76ea07e8e5309 Mon Sep 17 00:00:00 2001
From: Sam Hocevar <sam@videolan.org>
Date: Sat, 28 Dec 2002 01:53:40 +0000
Subject: [PATCH]   * ./configure.ac.in: removed AC_PROG_EGREP because it's for
 autoconf 2.54+     and used AC_EGREP_CPP instead.

---
 configure.ac.in | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/configure.ac.in b/configure.ac.in
index adefc3228765..49b9ac9502f2 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -32,7 +32,9 @@ AC_PROG_CPP
 AC_PROG_CXX
 AC_PROG_MAKE_SET
 AC_PROG_INSTALL
-AC_PROG_EGREP
+
+dnl AC_PROG_EGREP only exists in autoconf 2.54+
+AC_EGREP_CPP(foo,foo)
 
 dnl AC_PROG_OBJC doesn't seem to exist, this is the KDE workaround
 AC_MSG_CHECKING(for an Objective-C compiler)
-- 
GitLab