33 lines
1018 B
Plaintext
33 lines
1018 B
Plaintext
|
|
dnl SMB Build Environment Checks
|
||
|
|
dnl -------------------------------------------------------
|
||
|
|
dnl Copyright (C) Stefan (metze) Metzmacher 2004
|
||
|
|
dnl Released under the GNU GPL
|
||
|
|
dnl -------------------------------------------------------
|
||
|
|
dnl
|
||
|
|
|
||
|
|
AC_SUBST(srcdir)
|
||
|
|
export srcdir;
|
||
|
|
|
||
|
|
# we always set builddir to "." as that's nicer than
|
||
|
|
# having the absolute path of the current work directory
|
||
|
|
builddir=.
|
||
|
|
AC_SUBST(builddir)
|
||
|
|
export builddir;
|
||
|
|
|
||
|
|
AC_SUBST(datarootdir)
|
||
|
|
|
||
|
|
SMB_VERSION_STRING=`cat ${srcdir}/version.h | grep 'SAMBA_VERSION_OFFICIAL_STRING' | cut -d '"' -f2`
|
||
|
|
echo "SAMBA VERSION: ${SMB_VERSION_STRING}"
|
||
|
|
|
||
|
|
SAMBA_VERSION_SVN_REVISION=`cat ${srcdir}/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
|
||
|
|
|
||
|
|
m4_include(build/m4/check_path.m4)
|
||
|
|
m4_include(build/m4/check_perl.m4)
|
||
|
|
m4_include(build/m4/check_cc.m4)
|
||
|
|
m4_include(build/m4/check_ld.m4)
|
||
|
|
m4_include(build/m4/check_make.m4)
|
||
|
|
m4_include(build/m4/check_doc.m4)
|