diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-05-13 10:40:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:53:40 -0500 |
commit | 6e70a689a387722f424e95c7b3e9b9a7a73cc33e (patch) | |
tree | f9d30d359f4592141b0d64ce9ae85309a3f800e6 /source4 | |
parent | 9c4a4514633e1b2296ab610b600b27fe439404fa (diff) | |
download | samba-6e70a689a387722f424e95c7b3e9b9a7a73cc33e.tar.gz samba-6e70a689a387722f424e95c7b3e9b9a7a73cc33e.tar.bz2 samba-6e70a689a387722f424e95c7b3e9b9a7a73cc33e.zip |
r669: display the version on top of configure
this will help in the build farm
metze
(This used to be commit 05c53de97ee98ae27b064d15085606b041307bc2)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/configure.in b/source4/configure.in index 4bc3bea1d1..9cced558ed 100644 --- a/source4/configure.in +++ b/source4/configure.in @@ -4,13 +4,15 @@ dnl Process this file with autoconf to produce a configure script. dnl disabled 2.53 requirement - we do work with 2.52 on suse 7.3 for example dnl AC_PREREQ(2.53) - AC_INIT(include/includes.h) AC_CONFIG_HEADER(include/config.h) AC_DISABLE_STATIC AC_ENABLE_SHARED +SMB_VERSION_STRING=`cat include/version.h | grep 'SAMBA_VERSION_OFFICIAL_STRING' | cut -d '"' -f2` +echo "SAMBA VERSION: ${SMB_VERSION_STRING}" + ################################################# # Directory handling stuff to support both the # legacy SAMBA directories and FHS compliant |