From b98e47e6801c5e31f285ac60c03d96dc173d5bc6 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Sun, 3 Jun 2012 15:52:23 +0000 Subject: [PATCH] Make autogen.sh use the ax_ prefix for m4 lookup. --- autogen.sh | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index d194906..e307073 100755 --- a/autogen.sh +++ b/autogen.sh @@ -16,7 +16,7 @@ case `uname` in esac aclocal sed -e 's/AC_PROG_AWK/dnl &/' -i aclocal.m4 -cat `aclocal --print-ac-dir`/check_gnu_make.m4 !(aclocal).m4 >> aclocal.m4 +cat `aclocal --print-ac-dir`/ax_check_gnu_make.m4 !(aclocal).m4 >> aclocal.m4 function filter() { sed -e '/no proper invocation of AM_INIT_AUTOMAKE was found\./d' \ diff --git a/configure.ac b/configure.ac index 43ca975..6cf476e 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ AC_CONFIG_SRCDIR([Console.cpp]) AC_CONFIG_AUX_DIR([.]) LT_INIT([disable-static]) PKG_PROG_PKG_CONFIG([0.22]) -CHECK_GNU_MAKE +AX_CHECK_GNU_MAKE AC_SUBST([GMAKE], [$_cv_gnu_make_command]) AC_SUBST([LTFLAGS]) AS_IF([test "x$GMAKE" = x], [AC_MSG_ERROR([You need GNU make])]) -- 2.47.2