Statistics
| Branch: | Tag: | Revision:

root / configure.ac @ 94f3875d

History | View | Annotate | Download (3.9 kB)

1
# Configure script for Ganeti
2
m4_define([gnt_version_major], [1])
3
m4_define([gnt_version_minor], [3])
4
m4_define([gnt_version_revision], [0])
5
m4_define([gnt_version_suffix], [~alpha1])
6
m4_define([gnt_version_full],
7
          m4_format([%d.%d.%d%s],
8
                    gnt_version_major, gnt_version_minor,
9
                    gnt_version_revision, gnt_version_suffix))
10

    
11
AC_PREREQ(2.59)
12
AC_INIT(ganeti, gnt_version_full, ganeti@googlegroups.com)
13
AC_CONFIG_AUX_DIR(autotools)
14
AC_CONFIG_SRCDIR(configure)
15
AM_INIT_AUTOMAKE([foreign tar-ustar])
16

    
17
AC_SUBST([VERSION_MAJOR], gnt_version_major)
18
AC_SUBST([VERSION_MINOR], gnt_version_minor)
19
AC_SUBST([VERSION_REVISION], gnt_version_revision)
20
AC_SUBST([VERSION_SUFFIX], gnt_version_suffix)
21
AC_SUBST([VERSION_FULL], gnt_version_full)
22

    
23
# --with-ssh-initscript=...
24
AC_ARG_WITH([ssh-initscript],
25
  [AS_HELP_STRING([--with-ssh-initscript=SCRIPT],
26
    [SSH init script to use (default is /etc/init.d/ssh)]
27
  )],
28
  [ssh_initd_script="$withval"],
29
  [ssh_initd_script="/etc/init.d/ssh"])
30
AC_SUBST(SSH_INITD_SCRIPT, $ssh_initd_script)
31

    
32
# --with-export-dir=...
33
AC_ARG_WITH([export-dir],
34
  [AS_HELP_STRING([--with-export-dir=DIR],
35
    [directory to use by default for instance image]
36
    [ exports (default is /srv/ganeti/export)]
37
  )],
38
  [export_dir="$withval"],
39
  [export_dir="/srv/ganeti/export"])
40
AC_SUBST(EXPORT_DIR, $export_dir)
41

    
42
# --with-os-search-path=...
43
# do a bit of black sed magic to for quoting of the strings in the list
44
AC_ARG_WITH([os-search-path],
45
  [AS_HELP_STRING([--with-os-search-path=LIST],
46
    [comma separated list of directories to]
47
    [ search for OS images (default is /srv/ganeti/os)]
48
  )],
49
  [os_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
50
  [os_search_path="'/srv/ganeti/os'"])
51
AC_SUBST(OS_SEARCH_PATH, $os_search_path)
52

    
53
# --with-iallocator-search-path=...
54
# do a bit of black sed magic to for quoting of the strings in the list
55
AC_ARG_WITH([iallocator-search-path],
56
  [AS_HELP_STRING([--with-iallocator-search-path=LIST],
57
    [comma separated list of directories to]
58
    [ search for instance allocators (default is $libdir/ganeti/iallocators)]
59
  )],
60
  [iallocator_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
61
  [iallocator_search_path="'$libdir/$PACKAGE_NAME/iallocators'"])
62
AC_SUBST(IALLOCATOR_SEARCH_PATH, $iallocator_search_path)
63

    
64
# --with-xen-kernel=...
65
AC_ARG_WITH([xen-kernel],
66
  [AS_HELP_STRING([--with-xen-kernel=PATH],
67
    [DomU kernel image for Xen hypervisor (default is /boot/vmlinuz-2.6-xenU)]
68
  )],
69
  [xen_kernel="$withval"],
70
  [xen_kernel="/boot/vmlinuz-2.6-xenU"])
71
AC_SUBST(XEN_KERNEL, $xen_kernel)
72

    
73
# --with-xen-initrd=...
74
AC_ARG_WITH([xen-initrd],
75
  [AS_HELP_STRING([--with-xen-initrd=PATH],
76
    [DomU initrd image for Xen hypervisor (default is /boot/initrd-2.6-xenU)]
77
  )],
78
  [xen_initrd="$withval"],
79
  [xen_initrd="/boot/initrd-2.6-xenU"])
80
AC_SUBST(XEN_INITRD, $xen_initrd)
81

    
82
# --with-file-storage-dir=...
83
AC_ARG_WITH([file-storage-dir],
84
  [AS_HELP_STRING([--with-file-storage-dir=PATH],
85
    [directory to store files for file-based backend]
86
    [ (default is /srv/ganeti/file-storage)]
87
  )],
88
  [file_storage_dir="$withval"],
89
  [file_storage_dir="/srv/ganeti/file-storage"])
90
AC_SUBST(FILE_STORAGE_DIR, $file_storage_dir)
91

    
92
# Check common programs
93
AC_PROG_INSTALL
94
AC_PROG_LN_S
95

    
96
# Check for Python
97
AM_PATH_PYTHON(2.4)
98

    
99
AC_PYTHON_MODULE(twisted.internet, t)
100
AC_PYTHON_MODULE(twisted.cred, t)
101
AC_PYTHON_MODULE(twisted.spread, t)
102
AC_PYTHON_MODULE(OpenSSL, t)
103
AC_PYTHON_MODULE(simplejson, t)
104
AC_PYTHON_MODULE(pyparsing, t)
105

    
106
# Check for docbook2man
107
found_docbook2man=
108
AC_CHECK_PROG(found_docbook2man, [docbook2man], [yes])
109
if test "$found_docbook2man" != "yes"
110
then
111
  AC_MSG_WARN([docbook2man not found.])
112
fi
113

    
114
AC_CONFIG_FILES([
115
  Makefile
116
  daemons/Makefile
117
  devel/Makefile
118
  doc/Makefile
119
  doc/examples/Makefile
120
  lib/Makefile
121
  lib/hypervisor/Makefile
122
  man/Makefile
123
  qa/Makefile
124
  qa/hooks/Makefile
125
  scripts/Makefile
126
  test/Makefile
127
  tools/Makefile
128
])
129

    
130
AC_OUTPUT