Statistics
| Branch: | Tag: | Revision:

root / configure.ac @ 42c067b7

History | View | Annotate | Download (5.4 kB)

1 a5d17f9f Michael Hanselmann
# Configure script for Ganeti
2 5e29d733 Michael Hanselmann
m4_define([gnt_version_major], [2])
3 5e29d733 Michael Hanselmann
m4_define([gnt_version_minor], [0])
4 550a995a Iustin Pop
m4_define([gnt_version_revision], [2])
5 7a8994d4 Iustin Pop
m4_define([gnt_version_suffix], [])
6 d5fd92ed Michael Hanselmann
m4_define([gnt_version_full],
7 d5fd92ed Michael Hanselmann
          m4_format([%d.%d.%d%s],
8 d5fd92ed Michael Hanselmann
                    gnt_version_major, gnt_version_minor,
9 d5fd92ed Michael Hanselmann
                    gnt_version_revision, gnt_version_suffix))
10 d5fd92ed Michael Hanselmann
11 a8083063 Iustin Pop
AC_PREREQ(2.59)
12 d5fd92ed Michael Hanselmann
AC_INIT(ganeti, gnt_version_full, ganeti@googlegroups.com)
13 16ebf761 Iustin Pop
AC_CONFIG_AUX_DIR(autotools)
14 9ff7e35c Michael Hanselmann
AC_CONFIG_SRCDIR(configure)
15 e70f1b7c Michael Hanselmann
AM_INIT_AUTOMAKE([1.9 foreign tar-ustar -Wall -Wno-portability])
16 a8083063 Iustin Pop
17 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_MAJOR], gnt_version_major)
18 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_MINOR], gnt_version_minor)
19 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_REVISION], gnt_version_revision)
20 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_SUFFIX], gnt_version_suffix)
21 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_FULL], gnt_version_full)
22 d5fd92ed Michael Hanselmann
23 c6b8baba Michael Hanselmann
# --with-ssh-initscript=...
24 c6b8baba Michael Hanselmann
AC_ARG_WITH([ssh-initscript],
25 8f106515 Guido Trotter
  [AS_HELP_STRING([--with-ssh-initscript=SCRIPT],
26 c6b8baba Michael Hanselmann
    [SSH init script to use (default is /etc/init.d/ssh)]
27 c6b8baba Michael Hanselmann
  )],
28 f491c3a8 Michael Hanselmann
  [ssh_initd_script="$withval"],
29 f491c3a8 Michael Hanselmann
  [ssh_initd_script="/etc/init.d/ssh"])
30 f491c3a8 Michael Hanselmann
AC_SUBST(SSH_INITD_SCRIPT, $ssh_initd_script)
31 c6b8baba Michael Hanselmann
32 68dccc07 Guido Trotter
# --with-export-dir=...
33 68dccc07 Guido Trotter
AC_ARG_WITH([export-dir],
34 68dccc07 Guido Trotter
  [AS_HELP_STRING([--with-export-dir=DIR],
35 f00b46bc Michael Hanselmann
    [directory to use by default for instance image]
36 f00b46bc Michael Hanselmann
    [ exports (default is /srv/ganeti/export)]
37 68dccc07 Guido Trotter
  )],
38 68dccc07 Guido Trotter
  [export_dir="$withval"],
39 68dccc07 Guido Trotter
  [export_dir="/srv/ganeti/export"])
40 68dccc07 Guido Trotter
AC_SUBST(EXPORT_DIR, $export_dir)
41 68dccc07 Guido Trotter
42 7c3d51d4 Guido Trotter
# --with-os-search-path=...
43 7c3d51d4 Guido Trotter
# do a bit of black sed magic to for quoting of the strings in the list
44 7c3d51d4 Guido Trotter
AC_ARG_WITH([os-search-path],
45 7c3d51d4 Guido Trotter
  [AS_HELP_STRING([--with-os-search-path=LIST],
46 f00b46bc Michael Hanselmann
    [comma separated list of directories to]
47 f00b46bc Michael Hanselmann
    [ search for OS images (default is /srv/ganeti/os)]
48 7c3d51d4 Guido Trotter
  )],
49 7c3d51d4 Guido Trotter
  [os_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
50 7c3d51d4 Guido Trotter
  [os_search_path="'/srv/ganeti/os'"])
51 7c3d51d4 Guido Trotter
AC_SUBST(OS_SEARCH_PATH, $os_search_path)
52 7c3d51d4 Guido Trotter
53 298fe380 Iustin Pop
# --with-iallocator-search-path=...
54 298fe380 Iustin Pop
# do a bit of black sed magic to for quoting of the strings in the list
55 298fe380 Iustin Pop
AC_ARG_WITH([iallocator-search-path],
56 298fe380 Iustin Pop
  [AS_HELP_STRING([--with-iallocator-search-path=LIST],
57 298fe380 Iustin Pop
    [comma separated list of directories to]
58 298fe380 Iustin Pop
    [ search for instance allocators (default is $libdir/ganeti/iallocators)]
59 298fe380 Iustin Pop
  )],
60 298fe380 Iustin Pop
  [iallocator_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
61 298fe380 Iustin Pop
  [iallocator_search_path="'$libdir/$PACKAGE_NAME/iallocators'"])
62 298fe380 Iustin Pop
AC_SUBST(IALLOCATOR_SEARCH_PATH, $iallocator_search_path)
63 298fe380 Iustin Pop
64 f00b46bc Michael Hanselmann
# --with-xen-kernel=...
65 f00b46bc Michael Hanselmann
AC_ARG_WITH([xen-kernel],
66 f00b46bc Michael Hanselmann
  [AS_HELP_STRING([--with-xen-kernel=PATH],
67 f00b46bc Michael Hanselmann
    [DomU kernel image for Xen hypervisor (default is /boot/vmlinuz-2.6-xenU)]
68 f00b46bc Michael Hanselmann
  )],
69 f00b46bc Michael Hanselmann
  [xen_kernel="$withval"],
70 f00b46bc Michael Hanselmann
  [xen_kernel="/boot/vmlinuz-2.6-xenU"])
71 f00b46bc Michael Hanselmann
AC_SUBST(XEN_KERNEL, $xen_kernel)
72 f00b46bc Michael Hanselmann
73 f00b46bc Michael Hanselmann
# --with-xen-initrd=...
74 f00b46bc Michael Hanselmann
AC_ARG_WITH([xen-initrd],
75 f00b46bc Michael Hanselmann
  [AS_HELP_STRING([--with-xen-initrd=PATH],
76 f00b46bc Michael Hanselmann
    [DomU initrd image for Xen hypervisor (default is /boot/initrd-2.6-xenU)]
77 f00b46bc Michael Hanselmann
  )],
78 f00b46bc Michael Hanselmann
  [xen_initrd="$withval"],
79 f00b46bc Michael Hanselmann
  [xen_initrd="/boot/initrd-2.6-xenU"])
80 f00b46bc Michael Hanselmann
AC_SUBST(XEN_INITRD, $xen_initrd)
81 f00b46bc Michael Hanselmann
82 22c734bc Manuel Franceschini
# --with-file-storage-dir=...
83 22c734bc Manuel Franceschini
AC_ARG_WITH([file-storage-dir],
84 22c734bc Manuel Franceschini
  [AS_HELP_STRING([--with-file-storage-dir=PATH],
85 22c734bc Manuel Franceschini
    [directory to store files for file-based backend]
86 22c734bc Manuel Franceschini
    [ (default is /srv/ganeti/file-storage)]
87 22c734bc Manuel Franceschini
  )],
88 22c734bc Manuel Franceschini
  [file_storage_dir="$withval"],
89 22c734bc Manuel Franceschini
  [file_storage_dir="/srv/ganeti/file-storage"])
90 22c734bc Manuel Franceschini
AC_SUBST(FILE_STORAGE_DIR, $file_storage_dir)
91 22c734bc Manuel Franceschini
92 7e2c5b9e Guido Trotter
# --with-kvm-path=...
93 7e2c5b9e Guido Trotter
AC_ARG_WITH([kvm-path],
94 7e2c5b9e Guido Trotter
  [AS_HELP_STRING([--with-kvm-path=PATH],
95 7e2c5b9e Guido Trotter
    [absolute path to the kvm binary]
96 7e2c5b9e Guido Trotter
    [ (default is /usr/bin/kvm)]
97 7e2c5b9e Guido Trotter
  )],
98 7e2c5b9e Guido Trotter
  [kvm_path="$withval"],
99 7e2c5b9e Guido Trotter
  [kvm_path="/usr/bin/kvm"])
100 7e2c5b9e Guido Trotter
AC_SUBST(KVM_PATH, $kvm_path)
101 7e2c5b9e Guido Trotter
102 30e42c4e Guido Trotter
# --with-kvm-migration-port=...
103 30e42c4e Guido Trotter
AC_ARG_WITH([kvm-migration-port],
104 30e42c4e Guido Trotter
  [AS_HELP_STRING([--with-kvm-migration-port=PORT],
105 30e42c4e Guido Trotter
    [tcp port used for kvm instance live migration]
106 30e42c4e Guido Trotter
    [ (default is 8102)]
107 30e42c4e Guido Trotter
  )],
108 30e42c4e Guido Trotter
  [kvm_migration_port="$withval"],
109 30e42c4e Guido Trotter
  [kvm_migration_port="8102"])
110 30e42c4e Guido Trotter
AC_SUBST(KVM_MIGRATION_PORT, $kvm_migration_port)
111 30e42c4e Guido Trotter
112 14aa53cb Guido Trotter
# --with-socat-path=...
113 14aa53cb Guido Trotter
AC_ARG_WITH([socat-path],
114 14aa53cb Guido Trotter
  [AS_HELP_STRING([--with-socat-path=PATH],
115 14aa53cb Guido Trotter
    [absolute path to the socat binary]
116 14aa53cb Guido Trotter
    [ (default is /usr/bin/socat)]
117 14aa53cb Guido Trotter
  )],
118 14aa53cb Guido Trotter
  [socat_path="$withval"],
119 14aa53cb Guido Trotter
  [socat_path="/usr/bin/socat"])
120 14aa53cb Guido Trotter
AC_SUBST(SOCAT_PATH, $socat_path)
121 14aa53cb Guido Trotter
122 3736cb6b Iustin Pop
# ---with-lvm-stripecount=...
123 3736cb6b Iustin Pop
AC_ARG_WITH([lvm-stripecount],
124 3736cb6b Iustin Pop
  [AS_HELP_STRING([--with-lvm-stripecount=NUM],
125 3736cb6b Iustin Pop
    [the number of stripes to use for LVM volumes]
126 7b3ac94d Iustin Pop
    [ (default is 1)]
127 3736cb6b Iustin Pop
  )],
128 3736cb6b Iustin Pop
  [lvm_stripecount="$withval"],
129 7b3ac94d Iustin Pop
  [lvm_stripecount="1"])
130 3736cb6b Iustin Pop
AC_SUBST(LVM_STRIPECOUNT, $lvm_stripecount)
131 3736cb6b Iustin Pop
132 a5d17f9f Michael Hanselmann
# Check common programs
133 a8083063 Iustin Pop
AC_PROG_INSTALL
134 9ff7e35c Michael Hanselmann
AC_PROG_LN_S
135 a8083063 Iustin Pop
136 1efbe18e Michael Hanselmann
# Check for docbook programs
137 1efbe18e Michael Hanselmann
AC_ARG_VAR(DOCBOOK2MAN, [docbook2man path])
138 1efbe18e Michael Hanselmann
AC_PATH_PROG(DOCBOOK2MAN, [docbook2man], [])
139 1efbe18e Michael Hanselmann
if test -z "$DOCBOOK2MAN"
140 1efbe18e Michael Hanselmann
then
141 2ab2b9f5 Iustin Pop
  AC_MSG_WARN([docbook2man not found, man pages rebuild will not be possible])
142 1efbe18e Michael Hanselmann
fi
143 1efbe18e Michael Hanselmann
144 1efbe18e Michael Hanselmann
AC_ARG_VAR(DOCBOOK2HTML, [docbook2html path])
145 1efbe18e Michael Hanselmann
AC_PATH_PROG(DOCBOOK2HTML, [docbook2html], [])
146 1efbe18e Michael Hanselmann
if test -z "$DOCBOOK2HTML"
147 1efbe18e Michael Hanselmann
then
148 2ab2b9f5 Iustin Pop
  AC_MSG_WARN([docbook2html not found, man pages rebuild will not be possible])
149 1efbe18e Michael Hanselmann
fi
150 1efbe18e Michael Hanselmann
151 d17e74b4 Iustin Pop
# Check for python-sphinx
152 d17e74b4 Iustin Pop
AC_ARG_VAR(SPHINX, [sphinx-build path])
153 d17e74b4 Iustin Pop
AC_PATH_PROG(SPHINX, [sphinx-build], [])
154 d17e74b4 Iustin Pop
if test -z "$SPHINX"
155 f05c99f3 Michael Hanselmann
then
156 d17e74b4 Iustin Pop
  AC_MSG_WARN([sphinx-build not found, documentation rebuild will not be possible])
157 f05c99f3 Michael Hanselmann
fi
158 f05c99f3 Michael Hanselmann
159 f86e82ef Iustin Pop
# Check for graphviz (dot)
160 f86e82ef Iustin Pop
AC_ARG_VAR(DOT, [dot path])
161 f86e82ef Iustin Pop
AC_PATH_PROG(DOT, [dot], [])
162 f86e82ef Iustin Pop
if test -z "$DOT"
163 f86e82ef Iustin Pop
then
164 2ab2b9f5 Iustin Pop
  AC_MSG_WARN([dot (from the graphviz suite) not found, documentation rebuild not possible])
165 f86e82ef Iustin Pop
fi
166 f86e82ef Iustin Pop
167 a5d17f9f Michael Hanselmann
# Check for Python
168 a8083063 Iustin Pop
AM_PATH_PYTHON(2.4)
169 a8083063 Iustin Pop
170 6e06b36c Iustin Pop
AC_PYTHON_MODULE(OpenSSL, t)
171 6e06b36c Iustin Pop
AC_PYTHON_MODULE(simplejson, t)
172 6e06b36c Iustin Pop
AC_PYTHON_MODULE(pyparsing, t)
173 6e06b36c Iustin Pop
174 e8230860 Michael Hanselmann
AC_CONFIG_FILES([ Makefile ])
175 3571f686 Iustin Pop
176 a8083063 Iustin Pop
AC_OUTPUT