aboutsummaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-17 06:16:00 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-17 06:16:00 +0000
commit0af038be6668320d1398811dc50c0c2ca7ac06b6 (patch)
tree32c364e4e9b83d82eb3ab1b372d977fff98eb11c /acinclude.m4
parent5835cd7dae93bdc285b8ff1a48dee62a15406206 (diff)
print a warning at the end of the configure script if the version of GNU Make
in use is a version earlier than 3.81 This is for file :) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40153 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 4 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 181773697..521b18014 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -84,10 +84,14 @@ fi
AC_DEFUN(
[AST_CHECK_GNU_MAKE], [AC_CACHE_CHECK(for GNU make, GNU_MAKE,
GNU_MAKE='Not Found' ;
+ GNU_MAKE_VERSION_MAJOR=0 ;
+ GNU_MAKE_VERSION_MINOR=0 ;
for a in make gmake gnumake ; do
if test -z "$a" ; then continue ; fi ;
if ( sh -c "$a --version" 2> /dev/null | grep GNU 2>&1 > /dev/null ) ; then
GNU_MAKE=$a ;
+ GNU_MAKE_VERSION_MAJOR=`$GNU_MAKE --version | grep "GNU Make" | cut -f3 -d' ' | cut -f1 -d'.'`
+ GNU_MAKE_VERSION_MINOR=`$GNU_MAKE --version | grep "GNU Make" | cut -f2 -d'.'`
break;
fi
done ;