ink_bzr_snapshot_build.m4 revision 7a9c207116b53b2b5253bd878fa8432210b8e0c6
# Check for BZR snapshot build
# (c) 2009 Krzysztof KosiƄski
# Released under GNU GPL; see the file COPYING for more information
AC_DEFUN([INK_BZR_SNAPSHOT_BUILD],
[
AC_CACHE_CHECK([for BZR snapshot build], ink_cv_bzr_snapshot_build,
[ink_cv_bzr_snapshot_build=no
if which bzr > /dev/null && test -e $srcdir/.bzr/branch/last-revision; then
ink_cv_bzr_snapshot_build=yes
fi
])
AM_CONDITIONAL([USE_BZR_VERSION], [test "x$ink_cv_bzr_snapshot_build" = "xyes"])
])