2006-09-14 06:22:02 +00:00
dnl SMB Build Environment make Checks
dnl -------------------------------------------------------
dnl Copyright (C) Stefan (metze) Metzmacher 2004
2006-09-20 23:19:37 +00:00
dnl Copyright (C) Jelmer Vernooij 2005
2006-09-14 06:22:02 +00:00
dnl Released under the GNU GPL
dnl -------------------------------------------------------
dnl
2008-02-25 18:44:52 +01:00
AC_PATH_PROGS(MAKE,gmake make)
2006-09-14 06:22:02 +00:00
AC_CACHE_CHECK([whether we have GNU make], samba_cv_gnu_make, [
2008-02-25 18:44:52 +01:00
if ! $ac_cv_path_MAKE --version | head -1 | grep GNU 2>/dev/null >/dev/null
2006-09-14 06:22:02 +00:00
then
2008-02-25 18:44:52 +01:00
AC_MSG_ERROR([Unable to find GNU make])
2006-09-14 06:22:02 +00:00
fi
])
2008-02-25 18:44:52 +01:00
AC_CACHE_CHECK([GNU make version], samba_cv_gnu_make_version,[
2006-09-14 06:22:02 +00:00
samba_cv_gnu_make_version=`$ac_cv_path_MAKE --version | head -1 | cut -d " " -f 3 2>/dev/null`
])
GNU_MAKE_VERSION=$samba_cv_gnu_make_version
AC_SUBST(GNU_MAKE_VERSION)
new_make=no
AC_MSG_CHECKING([for GNU make >= 3.81])
2008-02-25 18:44:52 +01:00
if $PERL -e " \$_ = '$GNU_MAKE_VERSION'; s/@<:@^\d\.@:>@.*//g; exit (\$_ < 3.81);"; then
new_make=yes
2006-09-14 06:22:02 +00:00
fi
AC_MSG_RESULT($new_make)
automatic_dependencies=no
AX_CFLAGS_GCC_OPTION([-M -MT conftest.d -MF conftest.o], [], [ automatic_dependencies=$new_make ], [])
AC_MSG_CHECKING([Whether to use automatic dependencies])
2006-09-20 23:19:37 +00:00
AC_ARG_ENABLE(automatic-dependencies,
2007-05-24 09:28:49 +00:00
[ --enable-automatic-dependencies Enable automatic dependencies],
2006-09-20 23:19:37 +00:00
[ automatic_dependencies=$enableval ],
[ automatic_dependencies=no ])
2006-09-14 06:22:02 +00:00
AC_MSG_RESULT($automatic_dependencies)
AC_SUBST(automatic_dependencies)