From 5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 4 Jun 2005 13:57:52 +0000 Subject: r7274: Move m4 files to seperate dir (This used to be commit 0dda66f0e8e6ad37d731937af184a132bf3407b1) --- source4/build/m4/env.m4 | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 source4/build/m4/env.m4 (limited to 'source4/build/m4/env.m4') diff --git a/source4/build/m4/env.m4 b/source4/build/m4/env.m4 new file mode 100644 index 0000000000..c272247661 --- /dev/null +++ b/source4/build/m4/env.m4 @@ -0,0 +1,23 @@ +dnl SMB Build Environment Checks +dnl ------------------------------------------------------- +dnl Copyright (C) Stefan (metze) Metzmacher 2004 +dnl Released under the GNU GPL +dnl ------------------------------------------------------- +dnl + +SMB_VERSION_STRING=`cat include/version.h | grep 'SAMBA_VERSION_OFFICIAL_STRING' | cut -d '"' -f2` +echo "SAMBA VERSION: ${SMB_VERSION_STRING}" + +SAMBA_VERSION_SVN_REVISION=`cat include/version.h | grep 'SAMBA_VERSION_SVN_REVISION' | cut -d ' ' -f3-` +if test -n "${SAMBA_VERSION_SVN_REVISION}";then + echo "BUILD REVISION: ${SAMBA_VERSION_SVN_REVISION}" +fi + +SMB_INFO_BUILD_ENV="" + +sinclude(build/m4/check_path.m4) +sinclude(build/m4/check_perl.m4) +sinclude(build/m4/check_cc.m4) +sinclude(build/m4/check_ld.m4) +sinclude(build/m4/check_shld.m4) +sinclude(build/m4/check_types.m4) -- cgit