~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_vc_build.m4

Split out warnings - start using the pandora build system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_DEFUN([PANDORA_BUILDING_FROM_VC],[
 
2
 
 
3
  ac_cv_building_from_vc=no
 
4
 
 
5
  AS_IF([test -d "${srcdir}/.bzr"],[
 
6
    ac_cv_building_from_bzr=yes
 
7
    ac_cv_building_from_vc=yes
 
8
    ],[
 
9
    ac_cv_building_from_bzr=no
 
10
  ])
 
11
 
 
12
  AS_IF([test -d "${srcdir}/.svn"],[
 
13
    ac_cv_building_from_svn=yes
 
14
    ac_cv_building_from_vc=yes
 
15
    ],[
 
16
    ac_cv_building_from_svn=no
 
17
  ])
 
18
 
 
19
  AS_IF([test -d "${srcdir}/.hg"],[
 
20
    ac_cv_building_from_hg=yes
 
21
    ac_cv_building_from_vc=yes
 
22
    ],[
 
23
    ac_cv_building_from_hg=no
 
24
  ])
 
25
 
 
26
])
 
27
  
 
 
b'\\ No newline at end of file'