diff options
Diffstat (limited to 'source4/build/m4/check_make.m4')
-rw-r--r-- | source4/build/m4/check_make.m4 | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/source4/build/m4/check_make.m4 b/source4/build/m4/check_make.m4 deleted file mode 100644 index 343913f884..0000000000 --- a/source4/build/m4/check_make.m4 +++ /dev/null @@ -1,33 +0,0 @@ -dnl SMB Build Environment make Checks -dnl ------------------------------------------------------- -dnl Copyright (C) Stefan (metze) Metzmacher 2004 -dnl Copyright (C) Jelmer Vernooij 2005 -dnl Released under the GNU GPL -dnl ------------------------------------------------------- -dnl - -AC_DEFUN([AC_SAMBA_GNU_MAKE], -[ -AC_PATH_PROGS(MAKE,gmake make) - -AC_CACHE_CHECK([whether we have GNU make], samba_cv_gnu_make, [ -if ! $ac_cv_path_MAKE --version | head -1 | grep GNU 2>/dev/null >/dev/null -then - samba_cv_gnu_make=no -else - samba_cv_gnu_make=yes -fi -]) -if test x$samba_cv_gnu_make = xyes; then - $1 -else - $2 -fi -]) - -AC_DEFUN([AC_SAMBA_GNU_MAKE_VERSION], -[ -AC_CACHE_CHECK([GNU make version], samba_cv_gnu_make_version,[ - samba_cv_gnu_make_version=`$ac_cv_path_MAKE --version | head -1 | cut -d " " -f 3 2>/dev/null` - ]) -]) |