summaryrefslogtreecommitdiff
path: root/source3/m4/samba_version.m4
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-05-22 12:23:20 +1000
committerAndrew Bartlett <abartlet@samba.org>2013-05-28 12:17:10 +1000
commitcd4b413cb0574c459c1c24cf07f8d6b44f5fc077 (patch)
tree692104ce22e21cb0e8320b5c7aa9c4c2102eafc0 /source3/m4/samba_version.m4
parent97cceb5f8b9fc68cb8942092e92fde2b965883e4 (diff)
downloadsamba-cd4b413cb0574c459c1c24cf07f8d6b44f5fc077.tar.gz
samba-cd4b413cb0574c459c1c24cf07f8d6b44f5fc077.tar.bz2
samba-cd4b413cb0574c459c1c24cf07f8d6b44f5fc077.zip
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 'source3/m4/samba_version.m4')
-rw-r--r--source3/m4/samba_version.m429
1 files changed, 0 insertions, 29 deletions
diff --git a/source3/m4/samba_version.m4 b/source3/m4/samba_version.m4
deleted file mode 100644
index f0e3b8a96e..0000000000
--- a/source3/m4/samba_version.m4
+++ /dev/null
@@ -1,29 +0,0 @@
-dnl
-dnl Samba3 build environment - Samba version variables
-dnl
-dnl Copyright (C) Michael Adam 2008
-dnl
-dnl Released under the GNU General Public License
-dnl http://www.gnu.org/licenses/
-dnl
-dnl
-
-SMB_VERSION_STRING=`cat $srcdir/include/autoconf/version.h | grep '#define SAMBA_VERSION_OFFICIAL_STRING' | cut -d '"' -f2`
-echo "SAMBA VERSION: ${SMB_VERSION_STRING}"
-
-SAMBA_VERSION_GIT_COMMIT_FULLREV=`cat $srcdir/include/autoconf/version.h | grep 'SAMBA_VERSION_GIT_COMMIT_FULLREV' | cut -d ' ' -f3- | cut -d '"' -f2`
-if test -n "${SAMBA_VERSION_GIT_COMMIT_FULLREV}";then
- echo "BUILD COMMIT REVISION: ${SAMBA_VERSION_GIT_COMMIT_FULLREV}"
-fi
-SAMBA_VERSION_COMMIT_DATE=`cat $srcdir/include/autoconf/version.h | grep 'SAMBA_VERSION_COMMIT_DATE' | cut -d ' ' -f3-`
-if test -n "${SAMBA_VERSION_COMMIT_DATE}";then
- echo "BUILD COMMIT DATE: ${SAMBA_VERSION_COMMIT_DATE}"
-fi
-SAMBA_VERSION_COMMIT_TIME=`cat $srcdir/include/autoconf/version.h | grep 'SAMBA_VERSION_COMMIT_TIME' | cut -d ' ' -f3-`
-if test -n "${SAMBA_VERSION_COMMIT_TIME}";then
- echo "BUILD COMMIT TIME: ${SAMBA_VERSION_COMMIT_TIME}"
-
- # just to keep the build-farm gui happy for now...
- echo "BUILD REVISION: ${SAMBA_VERSION_COMMIT_TIME}"
-fi
-