Merged in two missing changes from f-visibility tree.
[awesomized/libmemcached] / m4 / pandora_vc_build.m4
1 dnl Copyright (C) 2009 Sun Microsystems
2 dnl This file is free software; Sun Microsystems
3 dnl gives unlimited permission to copy and/or distribute it,
4 dnl with or without modifications, as long as this notice is preserved.
5
6 AC_DEFUN([PANDORA_BUILDING_FROM_VC],[
7
8 ac_cv_building_from_vc=no
9
10 AS_IF([test -d "${srcdir}/.bzr"],[
11 ac_cv_building_from_bzr=yes
12 ac_cv_building_from_vc=yes
13 ],[
14 ac_cv_building_from_bzr=no
15 ])
16
17 AS_IF([test -d "${srcdir}/.svn"],[
18 ac_cv_building_from_svn=yes
19 ac_cv_building_from_vc=yes
20 ],[
21 ac_cv_building_from_svn=no
22 ])
23
24 AS_IF([test -d "${srcdir}/.hg"],[
25 ac_cv_building_from_hg=yes
26 ac_cv_building_from_vc=yes
27 ],[
28 ac_cv_building_from_hg=no
29 ])
30
31 ])
32