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