diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-05-22 12:23:20 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-05-28 12:17:10 +1000 |
commit | cd4b413cb0574c459c1c24cf07f8d6b44f5fc077 (patch) | |
tree | 692104ce22e21cb0e8320b5c7aa9c4c2102eafc0 /m4/check_make.m4 | |
parent | 97cceb5f8b9fc68cb8942092e92fde2b965883e4 (diff) | |
download | samba-cd4b413cb0574c459c1c24cf07f8d6b44f5fc077.tar.gz |
build: Remove autoconf build system
We are now confident that that waf build system meets enough of our needs
that we will work to improve it, rather than maintain two build systems.
Andrew Bartlett
Reviewed-by: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'm4/check_make.m4')
-rw-r--r-- | m4/check_make.m4 | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/m4/check_make.m4 b/m4/check_make.m4 deleted file mode 100644 index 343913f8846..00000000000 --- a/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` - ]) -]) |