Statistics
| Branch: | Tag: | Revision:

root / configure.ac @ f3e513ad

History | View | Annotate | Download (2.2 kB)

1
# Configure script for Ganeti
2
AC_PREREQ(2.59)
3
AC_INIT(ganeti, 1.2b2, ganeti@googlegroups.com)
4
AC_CONFIG_AUX_DIR(autotools)
5
AC_CONFIG_SRCDIR(configure)
6
AM_INIT_AUTOMAKE([foreign tar-ustar])
7

    
8
# --with-ssh-initscript=...
9
AC_ARG_WITH([ssh-initscript],
10
  [AS_HELP_STRING([--with-ssh-initscript=SCRIPT],
11
    [SSH init script to use (default is /etc/init.d/ssh)]
12
  )],
13
  [ssh_initd_script="$withval"],
14
  [ssh_initd_script="/etc/init.d/ssh"])
15
AC_SUBST(SSH_INITD_SCRIPT, $ssh_initd_script)
16

    
17
# --with-export-dir=...
18
AC_ARG_WITH([export-dir],
19
  [AS_HELP_STRING([--with-export-dir=DIR],
20
    [directory to use by default for instance image]
21
    [ exports (default is /srv/ganeti/export)]
22
  )],
23
  [export_dir="$withval"],
24
  [export_dir="/srv/ganeti/export"])
25
AC_SUBST(EXPORT_DIR, $export_dir)
26

    
27
# --with-os-search-path=...
28
# do a bit of black sed magic to for quoting of the strings in the list
29
AC_ARG_WITH([os-search-path],
30
  [AS_HELP_STRING([--with-os-search-path=LIST],
31
    [comma separated list of directories to]
32
    [ search for OS images (default is /srv/ganeti/os)]
33
  )],
34
  [os_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
35
  [os_search_path="'/srv/ganeti/os'"])
36
AC_SUBST(OS_SEARCH_PATH, $os_search_path)
37

    
38
# --with-xen-kernel=...
39
AC_ARG_WITH([xen-kernel],
40
  [AS_HELP_STRING([--with-xen-kernel=PATH],
41
    [DomU kernel image for Xen hypervisor (default is /boot/vmlinuz-2.6-xenU)]
42
  )],
43
  [xen_kernel="$withval"],
44
  [xen_kernel="/boot/vmlinuz-2.6-xenU"])
45
AC_SUBST(XEN_KERNEL, $xen_kernel)
46

    
47
# --with-xen-initrd=...
48
AC_ARG_WITH([xen-initrd],
49
  [AS_HELP_STRING([--with-xen-initrd=PATH],
50
    [DomU initrd image for Xen hypervisor (default is /boot/initrd-2.6-xenU)]
51
  )],
52
  [xen_initrd="$withval"],
53
  [xen_initrd="/boot/initrd-2.6-xenU"])
54
AC_SUBST(XEN_INITRD, $xen_initrd)
55

    
56
# Check common programs
57
AC_PROG_INSTALL
58
AC_PROG_LN_S
59

    
60
# Check for Python
61
AM_PATH_PYTHON(2.4)
62

    
63
# Check for docbook2man
64
found_docbook2man=
65
AC_CHECK_PROG(found_docbook2man, [docbook2man], [yes])
66
if test "$found_docbook2man" != "yes"
67
then
68
  AC_MSG_WARN([docbook2man not found.])
69
fi
70

    
71
AC_CONFIG_FILES([
72
  Makefile
73
  daemons/Makefile
74
  doc/Makefile
75
  doc/examples/Makefile
76
  lib/Makefile
77
  man/Makefile
78
  qa/Makefile
79
  scripts/Makefile
80
  test/Makefile
81
  tools/Makefile
82
])
83

    
84
AC_OUTPUT