Statistics
| Branch: | Tag: | Revision:

root / configure.ac @ ef14e128

History | View | Annotate | Download (24 kB)

1 a5d17f9f Michael Hanselmann
# Configure script for Ganeti
2 5e29d733 Michael Hanselmann
m4_define([gnt_version_major], [2])
3 ea2ee4b0 Michele Tartara
m4_define([gnt_version_minor], [9])
4 b830193c Guido Trotter
m4_define([gnt_version_revision], [0])
5 33bff17b Michele Tartara
m4_define([gnt_version_suffix], [~alpha1])
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 553bd93f Vitaly Kuznetsov
# --with-ssh-config-dir=...
43 553bd93f Vitaly Kuznetsov
AC_ARG_WITH([ssh-config-dir],
44 553bd93f Vitaly Kuznetsov
  [AS_HELP_STRING([--with-ssh-config-dir=DIR],
45 553bd93f Vitaly Kuznetsov
    [ directory with ssh host keys ]
46 553bd93f Vitaly Kuznetsov
    [ (default is /etc/ssh)]
47 553bd93f Vitaly Kuznetsov
  )],
48 553bd93f Vitaly Kuznetsov
  [ssh_config_dir="$withval"],
49 553bd93f Vitaly Kuznetsov
  [ssh_config_dir="/etc/ssh"])
50 553bd93f Vitaly Kuznetsov
AC_SUBST(SSH_CONFIG_DIR, $ssh_config_dir)
51 553bd93f Vitaly Kuznetsov
52 a8e8c0c6 Michael Hanselmann
# --with-xen-config-dir=...
53 a8e8c0c6 Michael Hanselmann
AC_ARG_WITH([xen-config-dir],
54 a8e8c0c6 Michael Hanselmann
  [AS_HELP_STRING([--with-xen-config-dir=DIR],
55 a8e8c0c6 Michael Hanselmann
                  m4_normalize([Xen configuration directory
56 a8e8c0c6 Michael Hanselmann
                                (default: /etc/xen)]))],
57 a8e8c0c6 Michael Hanselmann
  [xen_config_dir="$withval"],
58 a8e8c0c6 Michael Hanselmann
  [xen_config_dir=/etc/xen])
59 a8e8c0c6 Michael Hanselmann
AC_SUBST(XEN_CONFIG_DIR, $xen_config_dir)
60 a8e8c0c6 Michael Hanselmann
61 7c3d51d4 Guido Trotter
# --with-os-search-path=...
62 7c3d51d4 Guido Trotter
# do a bit of black sed magic to for quoting of the strings in the list
63 7c3d51d4 Guido Trotter
AC_ARG_WITH([os-search-path],
64 7c3d51d4 Guido Trotter
  [AS_HELP_STRING([--with-os-search-path=LIST],
65 f00b46bc Michael Hanselmann
    [comma separated list of directories to]
66 f00b46bc Michael Hanselmann
    [ search for OS images (default is /srv/ganeti/os)]
67 7c3d51d4 Guido Trotter
  )],
68 7c3d51d4 Guido Trotter
  [os_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
69 7c3d51d4 Guido Trotter
  [os_search_path="'/srv/ganeti/os'"])
70 7c3d51d4 Guido Trotter
AC_SUBST(OS_SEARCH_PATH, $os_search_path)
71 7c3d51d4 Guido Trotter
72 376631d1 Constantinos Venetsanopoulos
# --with-extstorage-search-path=...
73 376631d1 Constantinos Venetsanopoulos
# same black sed magic for quoting of the strings in the list
74 376631d1 Constantinos Venetsanopoulos
AC_ARG_WITH([extstorage-search-path],
75 376631d1 Constantinos Venetsanopoulos
  [AS_HELP_STRING([--with-extstorage-search-path=LIST],
76 376631d1 Constantinos Venetsanopoulos
    [comma separated list of directories to]
77 376631d1 Constantinos Venetsanopoulos
    [ search for External Storage Providers]
78 376631d1 Constantinos Venetsanopoulos
    [ (default is /srv/ganeti/extstorage)]
79 376631d1 Constantinos Venetsanopoulos
  )],
80 376631d1 Constantinos Venetsanopoulos
  [es_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
81 376631d1 Constantinos Venetsanopoulos
  [es_search_path="'/srv/ganeti/extstorage'"])
82 376631d1 Constantinos Venetsanopoulos
AC_SUBST(ES_SEARCH_PATH, $es_search_path)
83 376631d1 Constantinos Venetsanopoulos
84 298fe380 Iustin Pop
# --with-iallocator-search-path=...
85 298fe380 Iustin Pop
# do a bit of black sed magic to for quoting of the strings in the list
86 298fe380 Iustin Pop
AC_ARG_WITH([iallocator-search-path],
87 298fe380 Iustin Pop
  [AS_HELP_STRING([--with-iallocator-search-path=LIST],
88 298fe380 Iustin Pop
    [comma separated list of directories to]
89 298fe380 Iustin Pop
    [ search for instance allocators (default is $libdir/ganeti/iallocators)]
90 298fe380 Iustin Pop
  )],
91 298fe380 Iustin Pop
  [iallocator_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
92 298fe380 Iustin Pop
  [iallocator_search_path="'$libdir/$PACKAGE_NAME/iallocators'"])
93 298fe380 Iustin Pop
AC_SUBST(IALLOCATOR_SEARCH_PATH, $iallocator_search_path)
94 298fe380 Iustin Pop
95 2f2dbb4b Jun Futagawa
# --with-xen-bootloader=...
96 2f2dbb4b Jun Futagawa
AC_ARG_WITH([xen-bootloader],
97 2f2dbb4b Jun Futagawa
  [AS_HELP_STRING([--with-xen-bootloader=PATH],
98 2f2dbb4b Jun Futagawa
    [bootloader for Xen hypervisor (default is empty)]
99 2f2dbb4b Jun Futagawa
  )],
100 2f2dbb4b Jun Futagawa
  [xen_bootloader="$withval"],
101 2f2dbb4b Jun Futagawa
  [xen_bootloader=])
102 2f2dbb4b Jun Futagawa
AC_SUBST(XEN_BOOTLOADER, $xen_bootloader)
103 2f2dbb4b Jun Futagawa
104 f00b46bc Michael Hanselmann
# --with-xen-kernel=...
105 f00b46bc Michael Hanselmann
AC_ARG_WITH([xen-kernel],
106 f00b46bc Michael Hanselmann
  [AS_HELP_STRING([--with-xen-kernel=PATH],
107 b8203e1e Iustin Pop
    [DomU kernel image for Xen hypervisor (default is /boot/vmlinuz-3-xenU)]
108 f00b46bc Michael Hanselmann
  )],
109 f00b46bc Michael Hanselmann
  [xen_kernel="$withval"],
110 b8203e1e Iustin Pop
  [xen_kernel="/boot/vmlinuz-3-xenU"])
111 f00b46bc Michael Hanselmann
AC_SUBST(XEN_KERNEL, $xen_kernel)
112 f00b46bc Michael Hanselmann
113 f00b46bc Michael Hanselmann
# --with-xen-initrd=...
114 f00b46bc Michael Hanselmann
AC_ARG_WITH([xen-initrd],
115 f00b46bc Michael Hanselmann
  [AS_HELP_STRING([--with-xen-initrd=PATH],
116 b8203e1e Iustin Pop
    [DomU initrd image for Xen hypervisor (default is /boot/initrd-3-xenU)]
117 f00b46bc Michael Hanselmann
  )],
118 f00b46bc Michael Hanselmann
  [xen_initrd="$withval"],
119 b8203e1e Iustin Pop
  [xen_initrd="/boot/initrd-3-xenU"])
120 f00b46bc Michael Hanselmann
AC_SUBST(XEN_INITRD, $xen_initrd)
121 f00b46bc Michael Hanselmann
122 b8203e1e Iustin Pop
# --with-kvm-kernel=...
123 b8203e1e Iustin Pop
AC_ARG_WITH([kvm-kernel],
124 b8203e1e Iustin Pop
  [AS_HELP_STRING([--with-kvm-kernel=PATH],
125 b8203e1e Iustin Pop
    [Guest kernel image for KVM hypervisor (default is /boot/vmlinuz-3-kvmU)]
126 b8203e1e Iustin Pop
  )],
127 b8203e1e Iustin Pop
  [kvm_kernel="$withval"],
128 b8203e1e Iustin Pop
  [kvm_kernel="/boot/vmlinuz-3-kvmU"])
129 b8203e1e Iustin Pop
AC_SUBST(KVM_KERNEL, $kvm_kernel)
130 b8203e1e Iustin Pop
131 22c734bc Manuel Franceschini
# --with-file-storage-dir=...
132 22c734bc Manuel Franceschini
AC_ARG_WITH([file-storage-dir],
133 22c734bc Manuel Franceschini
  [AS_HELP_STRING([--with-file-storage-dir=PATH],
134 22c734bc Manuel Franceschini
    [directory to store files for file-based backend]
135 22c734bc Manuel Franceschini
    [ (default is /srv/ganeti/file-storage)]
136 22c734bc Manuel Franceschini
  )],
137 cb7c0198 Iustin Pop
  [[file_storage_dir="$withval";
138 cb7c0198 Iustin Pop
    if test "$withval" != no; then
139 cb7c0198 Iustin Pop
      enable_file_storage=True
140 cb7c0198 Iustin Pop
    else
141 cb7c0198 Iustin Pop
      enable_file_storage=False
142 cb7c0198 Iustin Pop
    fi
143 cb7c0198 Iustin Pop
  ]],
144 30841576 Michael Hanselmann
  [[file_storage_dir="/srv/ganeti/file-storage";
145 52fca4ba Michael Hanselmann
    enable_file_storage=True]])
146 22c734bc Manuel Franceschini
AC_SUBST(FILE_STORAGE_DIR, $file_storage_dir)
147 cb7c0198 Iustin Pop
AC_SUBST(ENABLE_FILE_STORAGE, $enable_file_storage)
148 22c734bc Manuel Franceschini
149 4b97f902 Apollon Oikonomopoulos
# --with-shared-file-storage-dir=...
150 4b97f902 Apollon Oikonomopoulos
AC_ARG_WITH([shared-file-storage-dir],
151 4b97f902 Apollon Oikonomopoulos
  [AS_HELP_STRING([--with-shared-file-storage-dir=PATH],
152 4b97f902 Apollon Oikonomopoulos
    [directory to store files for shared file-based backend]
153 4b97f902 Apollon Oikonomopoulos
    [ (default is /srv/ganeti/shared-file-storage)]
154 4b97f902 Apollon Oikonomopoulos
  )],
155 4b97f902 Apollon Oikonomopoulos
  [[shared_file_storage_dir="$withval";
156 4b97f902 Apollon Oikonomopoulos
    if test "$withval" != no; then
157 4b97f902 Apollon Oikonomopoulos
      enable_shared_file_storage=True
158 4b97f902 Apollon Oikonomopoulos
    else
159 4b97f902 Apollon Oikonomopoulos
      enable_shared_file_storage=False
160 4b97f902 Apollon Oikonomopoulos
    fi
161 4b97f902 Apollon Oikonomopoulos
  ]],
162 30841576 Michael Hanselmann
  [[shared_file_storage_dir="/srv/ganeti/shared-file-storage";
163 52fca4ba Michael Hanselmann
    enable_shared_file_storage=True]])
164 4b97f902 Apollon Oikonomopoulos
AC_SUBST(SHARED_FILE_STORAGE_DIR, $shared_file_storage_dir)
165 4b97f902 Apollon Oikonomopoulos
AC_SUBST(ENABLE_SHARED_FILE_STORAGE, $enable_shared_file_storage)
166 4b97f902 Apollon Oikonomopoulos
167 7e2c5b9e Guido Trotter
# --with-kvm-path=...
168 7e2c5b9e Guido Trotter
AC_ARG_WITH([kvm-path],
169 7e2c5b9e Guido Trotter
  [AS_HELP_STRING([--with-kvm-path=PATH],
170 7e2c5b9e Guido Trotter
    [absolute path to the kvm binary]
171 7e2c5b9e Guido Trotter
    [ (default is /usr/bin/kvm)]
172 7e2c5b9e Guido Trotter
  )],
173 7e2c5b9e Guido Trotter
  [kvm_path="$withval"],
174 7e2c5b9e Guido Trotter
  [kvm_path="/usr/bin/kvm"])
175 7e2c5b9e Guido Trotter
AC_SUBST(KVM_PATH, $kvm_path)
176 7e2c5b9e Guido Trotter
177 89b70f39 Iustin Pop
# --with-lvm-stripecount=...
178 3736cb6b Iustin Pop
AC_ARG_WITH([lvm-stripecount],
179 3736cb6b Iustin Pop
  [AS_HELP_STRING([--with-lvm-stripecount=NUM],
180 43e11798 Andrea Spadaccini
    [the default number of stripes to use for LVM volumes]
181 7b3ac94d Iustin Pop
    [ (default is 1)]
182 3736cb6b Iustin Pop
  )],
183 3736cb6b Iustin Pop
  [lvm_stripecount="$withval"],
184 52fca4ba Michael Hanselmann
  [lvm_stripecount=1])
185 3736cb6b Iustin Pop
AC_SUBST(LVM_STRIPECOUNT, $lvm_stripecount)
186 3736cb6b Iustin Pop
187 052783ff Michael Hanselmann
# --with-ssh-login-user=...
188 052783ff Michael Hanselmann
AC_ARG_WITH([ssh-login-user],
189 052783ff Michael Hanselmann
  [AS_HELP_STRING([--with-ssh-login-user=USERNAME],
190 052783ff Michael Hanselmann
    [user to use for SSH logins within the cluster (default is root)]
191 052783ff Michael Hanselmann
  )],
192 052783ff Michael Hanselmann
  [ssh_login_user="$withval"],
193 052783ff Michael Hanselmann
  [ssh_login_user=root])
194 052783ff Michael Hanselmann
AC_SUBST(SSH_LOGIN_USER, $ssh_login_user)
195 052783ff Michael Hanselmann
196 052783ff Michael Hanselmann
# --with-ssh-console-user=...
197 052783ff Michael Hanselmann
AC_ARG_WITH([ssh-console-user],
198 052783ff Michael Hanselmann
  [AS_HELP_STRING([--with-ssh-console-user=USERNAME],
199 052783ff Michael Hanselmann
    [user to use for SSH logins to access instance consoles (default is root)]
200 052783ff Michael Hanselmann
  )],
201 052783ff Michael Hanselmann
  [ssh_console_user="$withval"],
202 052783ff Michael Hanselmann
  [ssh_console_user=root])
203 052783ff Michael Hanselmann
AC_SUBST(SSH_CONSOLE_USER, $ssh_console_user)
204 052783ff Michael Hanselmann
205 a6798ce1 Michael Hanselmann
# --with-default-user=...
206 a6798ce1 Michael Hanselmann
AC_ARG_WITH([default-user],
207 a6798ce1 Michael Hanselmann
  [AS_HELP_STRING([--with-default-user=USERNAME],
208 a6798ce1 Michael Hanselmann
    [default user for daemons]
209 a6798ce1 Michael Hanselmann
    [ (default is to run all daemons as root)]
210 a6798ce1 Michael Hanselmann
  )],
211 a6798ce1 Michael Hanselmann
  [user_default="$withval"],
212 a6798ce1 Michael Hanselmann
  [user_default=root])
213 a6798ce1 Michael Hanselmann
214 a6798ce1 Michael Hanselmann
# --with-default-group=...
215 a6798ce1 Michael Hanselmann
AC_ARG_WITH([default-group],
216 a6798ce1 Michael Hanselmann
  [AS_HELP_STRING([--with-default-group=GROUPNAME],
217 a6798ce1 Michael Hanselmann
    [default group for daemons]
218 a6798ce1 Michael Hanselmann
    [ (default is to run all daemons under group root)]
219 a6798ce1 Michael Hanselmann
  )],
220 a6798ce1 Michael Hanselmann
  [group_default="$withval"],
221 a6798ce1 Michael Hanselmann
  [group_default=root])
222 a6798ce1 Michael Hanselmann
223 0d150c50 René Nussbaumer
# --with-user-prefix=...
224 0d150c50 René Nussbaumer
AC_ARG_WITH([user-prefix],
225 0d150c50 René Nussbaumer
  [AS_HELP_STRING([--with-user-prefix=PREFIX],
226 0d150c50 René Nussbaumer
    [prefix for daemon users]
227 a6798ce1 Michael Hanselmann
    [ (default is to run all daemons as root; use --with-default-user]
228 a6798ce1 Michael Hanselmann
    [ to change the default)]
229 0d150c50 René Nussbaumer
  )],
230 3794937c René Nussbaumer
  [user_masterd="${withval}masterd";
231 0d150c50 René Nussbaumer
   user_rapi="${withval}rapi";
232 3794937c René Nussbaumer
   user_confd="${withval}confd";
233 14013e5d Michele Tartara
   user_noded="$user_default";
234 ebcbcfee Michele Tartara
   user_mond="$user_default"],
235 a6798ce1 Michael Hanselmann
  [user_masterd="$user_default";
236 a6798ce1 Michael Hanselmann
   user_rapi="$user_default";
237 a6798ce1 Michael Hanselmann
   user_confd="$user_default";
238 14013e5d Michele Tartara
   user_noded="$user_default";
239 14013e5d Michele Tartara
   user_mond="$user_default"])
240 0d150c50 René Nussbaumer
AC_SUBST(MASTERD_USER, $user_masterd)
241 0d150c50 René Nussbaumer
AC_SUBST(RAPI_USER, $user_rapi)
242 0d150c50 René Nussbaumer
AC_SUBST(CONFD_USER, $user_confd)
243 0d150c50 René Nussbaumer
AC_SUBST(NODED_USER, $user_noded)
244 14013e5d Michele Tartara
AC_SUBST(MOND_USER, $user_mond)
245 0d150c50 René Nussbaumer
246 0d150c50 René Nussbaumer
# --with-group-prefix=...
247 0d150c50 René Nussbaumer
AC_ARG_WITH([group-prefix],
248 0d150c50 René Nussbaumer
  [AS_HELP_STRING([--with-group-prefix=PREFIX],
249 0d150c50 René Nussbaumer
    [prefix for daemon POSIX groups]
250 a6798ce1 Michael Hanselmann
    [ (default is to run all daemons under group root; use]
251 a6798ce1 Michael Hanselmann
    [ --with-default-group to change the default)]
252 0d150c50 René Nussbaumer
  )],
253 3794937c René Nussbaumer
  [group_rapi="${withval}rapi";
254 3794937c René Nussbaumer
   group_admin="${withval}admin";
255 3794937c René Nussbaumer
   group_confd="${withval}confd";
256 3794937c René Nussbaumer
   group_masterd="${withval}masterd";
257 a6798ce1 Michael Hanselmann
   group_noded="$group_default";
258 14013e5d Michele Tartara
   group_daemons="${withval}daemons";
259 ebcbcfee Michele Tartara
   group_mond="$group_default"],
260 a6798ce1 Michael Hanselmann
  [group_rapi="$group_default";
261 a6798ce1 Michael Hanselmann
   group_admin="$group_default";
262 a6798ce1 Michael Hanselmann
   group_confd="$group_default";
263 a6798ce1 Michael Hanselmann
   group_masterd="$group_default";
264 a6798ce1 Michael Hanselmann
   group_noded="$group_default";
265 14013e5d Michele Tartara
   group_daemons="$group_default";
266 14013e5d Michele Tartara
   group_mond="$group_default"])
267 0d150c50 René Nussbaumer
AC_SUBST(RAPI_GROUP, $group_rapi)
268 0d150c50 René Nussbaumer
AC_SUBST(ADMIN_GROUP, $group_admin)
269 0d150c50 René Nussbaumer
AC_SUBST(CONFD_GROUP, $group_confd)
270 0d150c50 René Nussbaumer
AC_SUBST(MASTERD_GROUP, $group_masterd)
271 03881cb0 René Nussbaumer
AC_SUBST(NODED_GROUP, $group_noded)
272 0d150c50 René Nussbaumer
AC_SUBST(DAEMONS_GROUP, $group_daemons)
273 14013e5d Michele Tartara
AC_SUBST(MOND_GROUP, $group_mond)
274 0d150c50 René Nussbaumer
275 0d150c50 René Nussbaumer
# Print the config to the user
276 0d150c50 René Nussbaumer
AC_MSG_NOTICE([Running ganeti-masterd as $group_masterd:$group_masterd])
277 0d150c50 René Nussbaumer
AC_MSG_NOTICE([Running ganeti-rapi as $user_rapi:$group_rapi])
278 0d150c50 René Nussbaumer
AC_MSG_NOTICE([Running ganeti-confd as $user_confd:$group_confd])
279 0d150c50 René Nussbaumer
AC_MSG_NOTICE([Group for daemons is $group_daemons])
280 0d150c50 René Nussbaumer
AC_MSG_NOTICE([Group for clients is $group_admin])
281 0d150c50 René Nussbaumer
282 89b70f39 Iustin Pop
# --enable-drbd-barriers
283 89b70f39 Iustin Pop
AC_ARG_ENABLE([drbd-barriers],
284 89b70f39 Iustin Pop
  [AS_HELP_STRING([--enable-drbd-barriers],
285 52fca4ba Michael Hanselmann
                  m4_normalize([enable the DRBD barriers functionality by
286 52fca4ba Michael Hanselmann
                                default (>= 8.0.12) (default: enabled)]))],
287 89b70f39 Iustin Pop
  [[if test "$enableval" != no; then
288 8a69b3a8 Andrea Spadaccini
      DRBD_BARRIERS=n
289 8a69b3a8 Andrea Spadaccini
      DRBD_NO_META_FLUSH=False
290 89b70f39 Iustin Pop
    else
291 15618b63 Michael Hanselmann
      DRBD_BARRIERS=bf
292 8a69b3a8 Andrea Spadaccini
      DRBD_NO_META_FLUSH=True
293 89b70f39 Iustin Pop
    fi
294 89b70f39 Iustin Pop
  ]],
295 8a69b3a8 Andrea Spadaccini
  [DRBD_BARRIERS=n
296 8a69b3a8 Andrea Spadaccini
   DRBD_NO_META_FLUSH=False
297 8a69b3a8 Andrea Spadaccini
  ])
298 89b70f39 Iustin Pop
AC_SUBST(DRBD_BARRIERS, $DRBD_BARRIERS)
299 8a69b3a8 Andrea Spadaccini
AC_SUBST(DRBD_NO_META_FLUSH, $DRBD_NO_META_FLUSH)
300 89b70f39 Iustin Pop
301 551b6283 Iustin Pop
# --enable-syslog[=no/yes/only]
302 551b6283 Iustin Pop
AC_ARG_ENABLE([syslog],
303 551b6283 Iustin Pop
  [AS_HELP_STRING([--enable-syslog],
304 551b6283 Iustin Pop
    [enable use of syslog (default: disabled), one of no/yes/only])],
305 551b6283 Iustin Pop
  [[case "$enableval" in
306 551b6283 Iustin Pop
      no)
307 551b6283 Iustin Pop
        SYSLOG=no
308 551b6283 Iustin Pop
        ;;
309 551b6283 Iustin Pop
      yes)
310 551b6283 Iustin Pop
        SYSLOG=yes
311 551b6283 Iustin Pop
        ;;
312 551b6283 Iustin Pop
      only)
313 551b6283 Iustin Pop
        SYSLOG=only
314 551b6283 Iustin Pop
        ;;
315 551b6283 Iustin Pop
      *)
316 551b6283 Iustin Pop
        SYSLOG=
317 551b6283 Iustin Pop
        ;;
318 551b6283 Iustin Pop
    esac
319 551b6283 Iustin Pop
  ]],
320 551b6283 Iustin Pop
  [SYSLOG=no])
321 551b6283 Iustin Pop
322 551b6283 Iustin Pop
if test -z "$SYSLOG"
323 551b6283 Iustin Pop
then
324 551b6283 Iustin Pop
  AC_MSG_ERROR([invalid value for syslog, choose one of no/yes/only])
325 551b6283 Iustin Pop
fi
326 551b6283 Iustin Pop
AC_SUBST(SYSLOG_USAGE, $SYSLOG)
327 551b6283 Iustin Pop
328 1fdeb284 Michael Hanselmann
AC_ARG_ENABLE([restricted-commands],
329 1fdeb284 Michael Hanselmann
  [AS_HELP_STRING([--enable-restricted-commands],
330 1fdeb284 Michael Hanselmann
                  m4_normalize([enable restricted commands in the node daemon
331 9108958f Michael Hanselmann
                                (default: disabled)]))],
332 9108958f Michael Hanselmann
  [[if test "$enableval" = no; then
333 1fdeb284 Michael Hanselmann
      enable_restricted_commands=False
334 9108958f Michael Hanselmann
    else
335 1fdeb284 Michael Hanselmann
      enable_restricted_commands=True
336 9108958f Michael Hanselmann
    fi
337 9108958f Michael Hanselmann
  ]],
338 1fdeb284 Michael Hanselmann
  [enable_restricted_commands=False])
339 1fdeb284 Michael Hanselmann
AC_SUBST(ENABLE_RESTRICTED_COMMANDS, $enable_restricted_commands)
340 9108958f Michael Hanselmann
341 3536c792 Iustin Pop
# --with-disk-separator=...
342 3536c792 Iustin Pop
AC_ARG_WITH([disk-separator],
343 3536c792 Iustin Pop
  [AS_HELP_STRING([--with-disk-separator=STRING],
344 30841576 Michael Hanselmann
    [Disk index separator, useful if the default of ':' is handled]
345 30841576 Michael Hanselmann
    [ specially by the hypervisor]
346 3536c792 Iustin Pop
  )],
347 3536c792 Iustin Pop
  [disk_separator="$withval"],
348 3536c792 Iustin Pop
  [disk_separator=":"])
349 3536c792 Iustin Pop
AC_SUBST(DISK_SEPARATOR, $disk_separator)
350 3536c792 Iustin Pop
351 a5d17f9f Michael Hanselmann
# Check common programs
352 a8083063 Iustin Pop
AC_PROG_INSTALL
353 9ff7e35c Michael Hanselmann
AC_PROG_LN_S
354 a8083063 Iustin Pop
355 c4dfb0b6 Andrea Spadaccini
# Check for the ip command
356 c4dfb0b6 Andrea Spadaccini
AC_ARG_VAR(IP_PATH, [ip path])
357 c4dfb0b6 Andrea Spadaccini
AC_PATH_PROG(IP_PATH, [ip], [])
358 c4dfb0b6 Andrea Spadaccini
if test -z "$IP_PATH"
359 c4dfb0b6 Andrea Spadaccini
then
360 c4dfb0b6 Andrea Spadaccini
  AC_MSG_ERROR([ip command not found])
361 c4dfb0b6 Andrea Spadaccini
fi
362 c4dfb0b6 Andrea Spadaccini
363 18e2b6e4 Iustin Pop
# Check for pandoc
364 5208e732 Iustin Pop
AC_ARG_VAR(PANDOC, [pandoc path])
365 5208e732 Iustin Pop
AC_PATH_PROG(PANDOC, [pandoc], [])
366 5208e732 Iustin Pop
if test -z "$PANDOC"
367 5208e732 Iustin Pop
then
368 5208e732 Iustin Pop
  AC_MSG_WARN([pandoc not found, man pages rebuild will not be possible])
369 5208e732 Iustin Pop
fi
370 5208e732 Iustin Pop
371 d17e74b4 Iustin Pop
# Check for python-sphinx
372 d17e74b4 Iustin Pop
AC_ARG_VAR(SPHINX, [sphinx-build path])
373 d17e74b4 Iustin Pop
AC_PATH_PROG(SPHINX, [sphinx-build], [])
374 d17e74b4 Iustin Pop
if test -z "$SPHINX"
375 f05c99f3 Michael Hanselmann
then
376 30841576 Michael Hanselmann
  AC_MSG_WARN(m4_normalize([sphinx-build not found, documentation rebuild will
377 30841576 Michael Hanselmann
                            not be possible]))
378 96b28307 Michael Hanselmann
else
379 96b28307 Michael Hanselmann
  # Sphinx exits with code 1 when it prints its usage
380 96b28307 Michael Hanselmann
  sphinxver=`{ $SPHINX --version 2>&1 || :; } | head -n 3`
381 96b28307 Michael Hanselmann
382 96b28307 Michael Hanselmann
  if ! echo "$sphinxver" | grep -q -w -e '^Sphinx' -e '^Usage:'; then
383 96b28307 Michael Hanselmann
    AC_MSG_ERROR([Unable to determine Sphinx version])
384 96b28307 Michael Hanselmann
385 96b28307 Michael Hanselmann
  # Note: Character classes ([...]) need to be double quoted due to autoconf
386 96b28307 Michael Hanselmann
  # using m4
387 96b28307 Michael Hanselmann
  elif ! echo "$sphinxver" | grep -q -E '^Sphinx[[[:space:]]]+v[[1-9]]\>'; then
388 96b28307 Michael Hanselmann
    AC_MSG_ERROR([Sphinx 1.0 or higher is required])
389 96b28307 Michael Hanselmann
  fi
390 f05c99f3 Michael Hanselmann
fi
391 f05c99f3 Michael Hanselmann
392 41806ef4 Michael Hanselmann
AC_ARG_ENABLE([manpages-in-doc],
393 41806ef4 Michael Hanselmann
  [AS_HELP_STRING([--enable-manpages-in-doc],
394 41806ef4 Michael Hanselmann
                  m4_normalize([include man pages in HTML documentation
395 41806ef4 Michael Hanselmann
                                (requires sphinx; default disabled)]))],
396 41806ef4 Michael Hanselmann
  [case "$enableval" in
397 41806ef4 Michael Hanselmann
      yes) manpages_in_doc=yes ;;
398 41806ef4 Michael Hanselmann
      no) manpages_in_doc= ;;
399 41806ef4 Michael Hanselmann
      *)
400 41806ef4 Michael Hanselmann
        AC_MSG_ERROR([Bad value $enableval for --enable-manpages-in-doc])
401 41806ef4 Michael Hanselmann
        ;;
402 41806ef4 Michael Hanselmann
    esac
403 41806ef4 Michael Hanselmann
  ],
404 41806ef4 Michael Hanselmann
  [manpages_in_doc=])
405 41806ef4 Michael Hanselmann
AM_CONDITIONAL([MANPAGES_IN_DOC], [test -n "$manpages_in_doc"])
406 41806ef4 Michael Hanselmann
AC_SUBST(MANPAGES_IN_DOC, $manpages_in_doc)
407 41806ef4 Michael Hanselmann
408 41806ef4 Michael Hanselmann
if test -z "$SPHINX" -a -n "$manpages_in_doc"; then
409 41806ef4 Michael Hanselmann
  AC_MSG_ERROR([Including man pages in HTML documentation requires sphinx])
410 41806ef4 Michael Hanselmann
fi
411 41806ef4 Michael Hanselmann
412 f86e82ef Iustin Pop
# Check for graphviz (dot)
413 f86e82ef Iustin Pop
AC_ARG_VAR(DOT, [dot path])
414 f86e82ef Iustin Pop
AC_PATH_PROG(DOT, [dot], [])
415 f86e82ef Iustin Pop
if test -z "$DOT"
416 f86e82ef Iustin Pop
then
417 30841576 Michael Hanselmann
  AC_MSG_WARN(m4_normalize([dot (from the graphviz suite) not found,
418 30841576 Michael Hanselmann
                            documentation rebuild not possible]))
419 f86e82ef Iustin Pop
fi
420 f86e82ef Iustin Pop
421 6d7cc5ff Michael Hanselmann
# Check for pylint
422 6d7cc5ff Michael Hanselmann
AC_ARG_VAR(PYLINT, [pylint path])
423 6d7cc5ff Michael Hanselmann
AC_PATH_PROG(PYLINT, [pylint], [])
424 6d7cc5ff Michael Hanselmann
if test -z "$PYLINT"
425 6d7cc5ff Michael Hanselmann
then
426 6d7cc5ff Michael Hanselmann
  AC_MSG_WARN([pylint not found, checking code will not be possible])
427 6d7cc5ff Michael Hanselmann
fi
428 6d7cc5ff Michael Hanselmann
429 08366664 Michael Hanselmann
# Check for pep8
430 08366664 Michael Hanselmann
AC_ARG_VAR(PEP8, [pep8 path])
431 08366664 Michael Hanselmann
AC_PATH_PROG(PEP8, [pep8], [])
432 08366664 Michael Hanselmann
if test -z "$PEP8"
433 08366664 Michael Hanselmann
then
434 08366664 Michael Hanselmann
  AC_MSG_WARN([pep8 not found, checking code will not be complete])
435 08366664 Michael Hanselmann
fi
436 141c8421 Michael Hanselmann
AM_CONDITIONAL([HAS_PEP8], [test -n "$PEP8"])
437 141c8421 Michael Hanselmann
438 141c8421 Michael Hanselmann
# Check for python-coverage
439 141c8421 Michael Hanselmann
AC_ARG_VAR(PYCOVERAGE, [python-coverage path])
440 141c8421 Michael Hanselmann
AC_PATH_PROGS(PYCOVERAGE, [python-coverage coverage], [])
441 141c8421 Michael Hanselmann
if test -z "$PYCOVERAGE"
442 141c8421 Michael Hanselmann
then
443 141c8421 Michael Hanselmann
  AC_MSG_WARN(m4_normalize([python-coverage or coverage not found, evaluating
444 141c8421 Michael Hanselmann
                            Python test coverage will not be possible]))
445 141c8421 Michael Hanselmann
fi
446 08366664 Michael Hanselmann
447 fe5b0c42 Michael Hanselmann
# Check for socat
448 fe5b0c42 Michael Hanselmann
AC_ARG_VAR(SOCAT, [socat path])
449 fe5b0c42 Michael Hanselmann
AC_PATH_PROG(SOCAT, [socat], [])
450 87c1d0c7 Guido Trotter
if test -z "$SOCAT"
451 87c1d0c7 Guido Trotter
then
452 fe5b0c42 Michael Hanselmann
  AC_MSG_ERROR([socat not found])
453 87c1d0c7 Guido Trotter
fi
454 87c1d0c7 Guido Trotter
455 a002ed79 Agata Murawska
# Check for qemu-img
456 a002ed79 Agata Murawska
AC_ARG_VAR(QEMUIMG_PATH, [qemu-img path])
457 a002ed79 Agata Murawska
AC_PATH_PROG(QEMUIMG_PATH, [qemu-img], [])
458 a002ed79 Agata Murawska
if test -z "$QEMUIMG_PATH"
459 a002ed79 Agata Murawska
then
460 a002ed79 Agata Murawska
  AC_MSG_WARN([qemu-img not found, using ovfconverter will not be possible])
461 a002ed79 Agata Murawska
fi
462 a002ed79 Agata Murawska
463 21a5e56c Iustin Pop
# --enable-confd
464 21a5e56c Iustin Pop
ENABLE_CONFD=
465 21a5e56c Iustin Pop
AC_ARG_ENABLE([confd],
466 21a5e56c Iustin Pop
  [AS_HELP_STRING([--enable-confd],
467 21a5e56c Iustin Pop
  [enable the ganeti-confd daemon (default: check)])],
468 21a5e56c Iustin Pop
  [],
469 21a5e56c Iustin Pop
  [enable_confd=check])
470 acf70442 Iustin Pop
471 14013e5d Michele Tartara
ENABLE_MOND=
472 35c6e63d Michele Tartara
AC_ARG_ENABLE([monitoring],
473 35c6e63d Michele Tartara
  [AS_HELP_STRING([--enable-monitoring],
474 13cc7b84 Michele Tartara
  [enable the ganeti monitoring daemon (default: check)])],
475 35c6e63d Michele Tartara
  [],
476 35c6e63d Michele Tartara
  [enable_monitoring=check])
477 35c6e63d Michele Tartara
478 e5bd9de5 Iustin Pop
# Check for ghc
479 e5bd9de5 Iustin Pop
AC_ARG_VAR(GHC, [ghc path])
480 e5bd9de5 Iustin Pop
AC_PATH_PROG(GHC, [ghc], [])
481 e5bd9de5 Iustin Pop
if test -z "$GHC"; then
482 21a5e56c Iustin Pop
  AC_MSG_FAILURE([ghc not found, compilation will not possible])
483 e5bd9de5 Iustin Pop
fi
484 e5bd9de5 Iustin Pop
485 39f0eea5 Iustin Pop
AC_MSG_CHECKING([checking for extra GHC flags])
486 52fca4ba Michael Hanselmann
GHC_BYVERSION_FLAGS=
487 39f0eea5 Iustin Pop
# check for GHC supported flags that vary accross versions
488 39f0eea5 Iustin Pop
for flag in -fwarn-incomplete-uni-patterns; do
489 52fca4ba Michael Hanselmann
  if $GHC -e '0' $flag >/dev/null 2>/dev/null; then
490 39f0eea5 Iustin Pop
   GHC_BYVERSION_FLAGS="$GHC_BYVERSION_FLAGS $flag"
491 39f0eea5 Iustin Pop
  fi
492 39f0eea5 Iustin Pop
done
493 39f0eea5 Iustin Pop
AC_MSG_RESULT($GHC_BYVERSION_FLAGS)
494 39f0eea5 Iustin Pop
AC_SUBST(GHC_BYVERSION_FLAGS)
495 39f0eea5 Iustin Pop
496 e5bd9de5 Iustin Pop
# Check for ghc-pkg
497 e5bd9de5 Iustin Pop
AC_ARG_VAR(GHC_PKG, [ghc-pkg path])
498 e5bd9de5 Iustin Pop
AC_PATH_PROG(GHC_PKG, [ghc-pkg], [])
499 e5bd9de5 Iustin Pop
if test -z "$GHC_PKG"; then
500 21a5e56c Iustin Pop
  AC_MSG_FAILURE([ghc-pkg not found, compilation will not be possible])
501 21a5e56c Iustin Pop
fi
502 21a5e56c Iustin Pop
503 21a5e56c Iustin Pop
# check for modules, first custom/special checks
504 21a5e56c Iustin Pop
AC_MSG_NOTICE([checking for required haskell modules])
505 d9a900dc Iustin Pop
HS_PARALLEL3=
506 d9a900dc Iustin Pop
AC_GHC_PKG_CHECK([parallel-3.*], [HS_PARALLEL3=-DPARALLEL3],
507 21a5e56c Iustin Pop
                 [AC_GHC_PKG_REQUIRE(parallel)], t)
508 d9a900dc Iustin Pop
AC_SUBST(HS_PARALLEL3)
509 21a5e56c Iustin Pop
510 21a5e56c Iustin Pop
# and now standard modules
511 1ca709c1 Iustin Pop
AC_GHC_PKG_REQUIRE(curl)
512 21a5e56c Iustin Pop
AC_GHC_PKG_REQUIRE(json)
513 21a5e56c Iustin Pop
AC_GHC_PKG_REQUIRE(network)
514 21a5e56c Iustin Pop
AC_GHC_PKG_REQUIRE(mtl)
515 21a5e56c Iustin Pop
AC_GHC_PKG_REQUIRE(bytestring)
516 21a5e56c Iustin Pop
AC_GHC_PKG_REQUIRE(utf8-string)
517 21a5e56c Iustin Pop
518 21a5e56c Iustin Pop
# extra modules for confd functionality
519 d9a900dc Iustin Pop
HS_REGEX_PCRE=-DNO_REGEX_PCRE
520 21a5e56c Iustin Pop
has_confd=False
521 52fca4ba Michael Hanselmann
if test "$enable_confd" != no; then
522 21a5e56c Iustin Pop
  CONFD_PKG=
523 d9a900dc Iustin Pop
  AC_GHC_PKG_CHECK([regex-pcre], [HS_REGEX_PCRE=],
524 21a5e56c Iustin Pop
                   [CONFD_PKG="$CONFD_PKG regex-pcre"])
525 21a5e56c Iustin Pop
  AC_GHC_PKG_CHECK([hslogger], [], [CONFD_PKG="$CONFD_PKG hslogger"])
526 21a5e56c Iustin Pop
  AC_GHC_PKG_CHECK([Crypto], [], [CONFD_PKG="$CONFD_PKG Crypto"])
527 21a5e56c Iustin Pop
  AC_GHC_PKG_CHECK([text], [], [CONFD_PKG="$CONFD_PKG text"])
528 21a5e56c Iustin Pop
  AC_GHC_PKG_CHECK([hinotify], [], [CONFD_PKG="$CONFD_PKG hinotify"])
529 432d62a8 Helga Velroyen
  AC_GHC_PKG_CHECK([vector], [], [CONFD_PKG="$CONFD_PKG vector"])
530 21a5e56c Iustin Pop
  if test -z "$CONFD_PKG"; then
531 21a5e56c Iustin Pop
    has_confd=True
532 52fca4ba Michael Hanselmann
  elif test "$enable_confd" = check; then
533 52fca4ba Michael Hanselmann
    AC_MSG_WARN(m4_normalize([The required extra libraries for confd were
534 52fca4ba Michael Hanselmann
                              not found ($CONFD_PKG), confd disabled]))
535 e5bd9de5 Iustin Pop
  else
536 52fca4ba Michael Hanselmann
    AC_MSG_FAILURE(m4_normalize([The confd functionality was requested, but
537 52fca4ba Michael Hanselmann
                                 required libraries were not found:
538 52fca4ba Michael Hanselmann
                                 $CONFD_PKG]))
539 e5bd9de5 Iustin Pop
  fi
540 e5bd9de5 Iustin Pop
fi
541 d9a900dc Iustin Pop
AC_SUBST(HS_REGEX_PCRE)
542 52fca4ba Michael Hanselmann
if test "$has_confd" = True; then
543 21a5e56c Iustin Pop
  AC_MSG_NOTICE([Enabling confd usage])
544 21a5e56c Iustin Pop
fi
545 21a5e56c Iustin Pop
AC_SUBST(ENABLE_CONFD, $has_confd)
546 21a5e56c Iustin Pop
AM_CONDITIONAL([ENABLE_CONFD], [test x$has_confd = xTrue])
547 21a5e56c Iustin Pop
548 13cc7b84 Michele Tartara
#extra modules for monitoring daemon functionality
549 35c6e63d Michele Tartara
has_monitoring=False
550 52fca4ba Michael Hanselmann
if test "$enable_monitoring" != no; then
551 35c6e63d Michele Tartara
  MONITORING_PKG=
552 52fca4ba Michael Hanselmann
  AC_GHC_PKG_CHECK([attoparsec], [],
553 52fca4ba Michael Hanselmann
                   [MONITORING_PKG="$MONITORING_PKG attoparsec"])
554 13cc7b84 Michele Tartara
  AC_GHC_PKG_CHECK([snap-server], [],
555 13cc7b84 Michele Tartara
                   [MONITORING_PKG="$MONITORING_PKG snap-server"])
556 74685117 Michele Tartara
  AC_GHC_PKG_CHECK([process], [],
557 74685117 Michele Tartara
                   [MONITORING_PKG="$MONITORING_PKG process"])
558 5d453688 Michele Tartara
  MONITORING_DEP=
559 5d453688 Michele Tartara
  if test "$has_confd" = False; then
560 5d453688 Michele Tartara
    MONITORING_DEP="$MONITORING_DEP confd"
561 5d453688 Michele Tartara
  fi
562 5d453688 Michele Tartara
  has_monitoring_pkg=False
563 35c6e63d Michele Tartara
  if test -z "$MONITORING_PKG"; then
564 5d453688 Michele Tartara
    has_monitoring_pkg=True
565 52fca4ba Michael Hanselmann
  elif test "$enable_monitoring" = check; then
566 52fca4ba Michael Hanselmann
    AC_MSG_WARN(m4_normalize([The required extra libraries for the monitoring
567 13cc7b84 Michele Tartara
                              daemon were not found ($MONITORING_PKG),
568 52fca4ba Michael Hanselmann
                              monitoring disabled]))
569 35c6e63d Michele Tartara
  else
570 52fca4ba Michael Hanselmann
    AC_MSG_FAILURE(m4_normalize([The monitoring functionality was requested, but
571 52fca4ba Michael Hanselmann
                                 required libraries were not found:
572 52fca4ba Michael Hanselmann
                                 $MONITORING_PKG]))
573 35c6e63d Michele Tartara
  fi
574 5d453688 Michele Tartara
  has_monitoring_dep=False
575 5d453688 Michele Tartara
  if test -z "$MONITORING_DEP"; then
576 5d453688 Michele Tartara
    has_monitoring_dep=True
577 5d453688 Michele Tartara
  elif test "$enable_monitoring" = check; then
578 5d453688 Michele Tartara
    AC_MSG_WARN(m4_normalize([The optional Ganeti components required for the
579 5d453688 Michele Tartara
                              monitoring agent were not enabled
580 5d453688 Michele Tartara
                              ($MONITORING_DEP), monitoring disabled]))
581 5d453688 Michele Tartara
  else
582 5d453688 Michele Tartara
    AC_MSG_FAILURE(m4_normalize([The monitoring functionality was requested, but
583 5d453688 Michele Tartara
                                 required optional Ganeti components were not
584 5d453688 Michele Tartara
                                 found: $MONITORING_DEP]))
585 5d453688 Michele Tartara
  fi
586 5d453688 Michele Tartara
587 35c6e63d Michele Tartara
fi
588 5d453688 Michele Tartara
if test "$has_monitoring_pkg" = True -a "$has_monitoring_dep" = True; then
589 5d453688 Michele Tartara
  has_monitoring=True
590 35c6e63d Michele Tartara
  AC_MSG_NOTICE([Enabling the monitoring agent usage])
591 35c6e63d Michele Tartara
fi
592 14013e5d Michele Tartara
AC_SUBST(ENABLE_MOND, $has_monitoring)
593 14013e5d Michele Tartara
AM_CONDITIONAL([ENABLE_MOND], [test "$has_monitoring" = True])
594 35c6e63d Michele Tartara
595 21a5e56c Iustin Pop
# development modules
596 d9a900dc Iustin Pop
HS_NODEV=
597 d9a900dc Iustin Pop
AC_GHC_PKG_CHECK([QuickCheck-2.*], [], [HS_NODEV=1], t)
598 d9a900dc Iustin Pop
AC_GHC_PKG_CHECK([test-framework-0.6*], [], [HS_NODEV=1], t)
599 d9a900dc Iustin Pop
AC_GHC_PKG_CHECK([test-framework-hunit], [], [HS_NODEV=1])
600 d9a900dc Iustin Pop
AC_GHC_PKG_CHECK([test-framework-quickcheck2], [], [HS_NODEV=1])
601 d9a900dc Iustin Pop
AC_GHC_PKG_CHECK([temporary], [], [HS_NODEV=1])
602 35c6e63d Michele Tartara
# FIXME: unify checks for non-test libraries (attoparsec, hinotify, ...)
603 35c6e63d Michele Tartara
#        that are needed to execute the tests, avoiding the duplication
604 35c6e63d Michele Tartara
#        of the checks.
605 d9a900dc Iustin Pop
AC_GHC_PKG_CHECK([attoparsec], [], [HS_NODEV=1])
606 d9a900dc Iustin Pop
AC_GHC_PKG_CHECK([vector], [], [HS_NODEV=1])
607 74685117 Michele Tartara
AC_GHC_PKG_CHECK([process], [],
608 74685117 Michele Tartara
                 [MONITORING_PKG="$MONITORING_PKG process"])
609 d9a900dc Iustin Pop
if test -n "$HS_NODEV"; then
610 21a5e56c Iustin Pop
   AC_MSG_WARN(m4_normalize([Required development modules were not found,
611 21a5e56c Iustin Pop
                             you won't be able to run Haskell unittests]))
612 21a5e56c Iustin Pop
else
613 21a5e56c Iustin Pop
   AC_MSG_NOTICE([Haskell development modules found, unittests enabled])
614 21a5e56c Iustin Pop
fi
615 d9a900dc Iustin Pop
AC_SUBST(HS_NODEV)
616 21a5e56c Iustin Pop
617 21a5e56c Iustin Pop
HTOOLS=yes
618 e5bd9de5 Iustin Pop
AC_SUBST(HTOOLS)
619 e5bd9de5 Iustin Pop
620 55837756 Iustin Pop
# --enable-split-query
621 55837756 Iustin Pop
ENABLE_SPLIT_QUERY=
622 55837756 Iustin Pop
AC_ARG_ENABLE([split-query],
623 55837756 Iustin Pop
  [AS_HELP_STRING([--enable-split-query],
624 55837756 Iustin Pop
  [enable use of custom query daemon via confd])],
625 55837756 Iustin Pop
  [[case "$enableval" in
626 55837756 Iustin Pop
      no)
627 55837756 Iustin Pop
        enable_split_query=False
628 55837756 Iustin Pop
        ;;
629 55837756 Iustin Pop
      yes)
630 55837756 Iustin Pop
        enable_split_query=True
631 55837756 Iustin Pop
        ;;
632 55837756 Iustin Pop
      *)
633 55837756 Iustin Pop
        echo "Invalid value for enable-confd '$enableval'"
634 55837756 Iustin Pop
        exit 1
635 55837756 Iustin Pop
        ;;
636 55837756 Iustin Pop
    esac
637 55837756 Iustin Pop
  ]],
638 1ca709c1 Iustin Pop
  [[case "x${has_confd}x" in
639 1ca709c1 Iustin Pop
     xTruex)
640 55837756 Iustin Pop
       enable_split_query=True
641 55837756 Iustin Pop
       ;;
642 55837756 Iustin Pop
     *)
643 55837756 Iustin Pop
       enable_split_query=False
644 55837756 Iustin Pop
       ;;
645 55837756 Iustin Pop
   esac]])
646 55837756 Iustin Pop
AC_SUBST(ENABLE_SPLIT_QUERY, $enable_split_query)
647 55837756 Iustin Pop
648 21a5e56c Iustin Pop
if test x$enable_split_query = xTrue -a x$has_confd != xTrue; then
649 55837756 Iustin Pop
  AC_MSG_ERROR([Split queries require the confd daemon])
650 55837756 Iustin Pop
fi
651 55837756 Iustin Pop
652 55837756 Iustin Pop
if test x$enable_split_query = xTrue; then
653 55837756 Iustin Pop
  AC_MSG_NOTICE([Split query functionality enabled])
654 55837756 Iustin Pop
fi
655 55837756 Iustin Pop
656 e5bd9de5 Iustin Pop
# Check for HsColour
657 d9a900dc Iustin Pop
HS_APIDOC=no
658 e5bd9de5 Iustin Pop
AC_ARG_VAR(HSCOLOUR, [HsColour path])
659 e5bd9de5 Iustin Pop
AC_PATH_PROG(HSCOLOUR, [HsColour], [])
660 e5bd9de5 Iustin Pop
if test -z "$HSCOLOUR"; then
661 30841576 Michael Hanselmann
  AC_MSG_WARN(m4_normalize([HsColour not found, htools API documentation will
662 30841576 Michael Hanselmann
                            not be generated]))
663 e5bd9de5 Iustin Pop
fi
664 e5bd9de5 Iustin Pop
665 e5bd9de5 Iustin Pop
# Check for haddock
666 e5bd9de5 Iustin Pop
AC_ARG_VAR(HADDOCK, [haddock path])
667 e5bd9de5 Iustin Pop
AC_PATH_PROG(HADDOCK, [haddock], [])
668 e5bd9de5 Iustin Pop
if test -z "$HADDOCK"; then
669 30841576 Michael Hanselmann
  AC_MSG_WARN(m4_normalize([haddock not found, htools API documentation will
670 30841576 Michael Hanselmann
                            not be generated]))
671 e5bd9de5 Iustin Pop
fi
672 52fca4ba Michael Hanselmann
if test -n "$HADDOCK" && test -n "$HSCOLOUR"; then
673 d9a900dc Iustin Pop
  HS_APIDOC=yes
674 e5bd9de5 Iustin Pop
fi
675 d9a900dc Iustin Pop
AC_SUBST(HS_APIDOC)
676 e5bd9de5 Iustin Pop
677 6e4c8f68 Iustin Pop
# Check for hlint
678 6e4c8f68 Iustin Pop
AC_ARG_VAR(HLINT, [hlint path])
679 6e4c8f68 Iustin Pop
AC_PATH_PROG(HLINT, [hlint], [])
680 6e4c8f68 Iustin Pop
if test -z "$HLINT"; then
681 6e4c8f68 Iustin Pop
  AC_MSG_WARN([hlint not found, checking code will not be possible])
682 6e4c8f68 Iustin Pop
fi
683 6e4c8f68 Iustin Pop
684 52fca4ba Michael Hanselmann
if test "$HTOOLS" != yes && test "$ENABLE_CONFD" = True; then
685 52fca4ba Michael Hanselmann
  AC_MSG_ERROR(m4_normalize([cannot enable ganeti-confd if
686 52fca4ba Michael Hanselmann
                             htools support is not enabled]))
687 73b0fa69 Iustin Pop
fi
688 73b0fa69 Iustin Pop
689 52fca4ba Michael Hanselmann
AM_CONDITIONAL([WANT_HTOOLS], [test "$HTOOLS" = yes])
690 d9a900dc Iustin Pop
AM_CONDITIONAL([WANT_HSTESTS], [test "x$HS_NODEV" = x])
691 d9a900dc Iustin Pop
AM_CONDITIONAL([WANT_HSAPIDOC], [test "$HS_APIDOC" = yes])
692 6e4c8f68 Iustin Pop
AM_CONDITIONAL([HAS_HLINT], [test "$HLINT"])
693 e5bd9de5 Iustin Pop
694 70041061 Bernardo Dal Seno
# Check for fakeroot
695 70041061 Bernardo Dal Seno
AC_ARG_VAR(FAKEROOT_PATH, [fakeroot path])
696 70041061 Bernardo Dal Seno
AC_PATH_PROG(FAKEROOT_PATH, [fakeroot], [])
697 70041061 Bernardo Dal Seno
if test -z "$FAKEROOT_PATH"; then
698 70041061 Bernardo Dal Seno
  AC_MSG_WARN(m4_normalize([fakeroot not found, tests that must run as root
699 70041061 Bernardo Dal Seno
                            will not be executed]))
700 70041061 Bernardo Dal Seno
fi
701 70041061 Bernardo Dal Seno
AM_CONDITIONAL([HAS_FAKEROOT], [test "x$FAKEROOT_PATH" != x])
702 70041061 Bernardo Dal Seno
703 fe5b0c42 Michael Hanselmann
SOCAT_USE_ESCAPE=
704 fe5b0c42 Michael Hanselmann
AC_ARG_ENABLE([socat-escape],
705 fe5b0c42 Michael Hanselmann
  [AS_HELP_STRING([--enable-socat-escape],
706 fe5b0c42 Michael Hanselmann
    [use escape functionality available in socat >= 1.7 (default: detect
707 fe5b0c42 Michael Hanselmann
     automatically)])],
708 fe5b0c42 Michael Hanselmann
  [[if test "$enableval" = yes; then
709 fe5b0c42 Michael Hanselmann
      SOCAT_USE_ESCAPE=True
710 fe5b0c42 Michael Hanselmann
    else
711 fe5b0c42 Michael Hanselmann
      SOCAT_USE_ESCAPE=False
712 fe5b0c42 Michael Hanselmann
    fi
713 fe5b0c42 Michael Hanselmann
  ]])
714 fe5b0c42 Michael Hanselmann
715 fe5b0c42 Michael Hanselmann
if test -z "$SOCAT_USE_ESCAPE"
716 87c1d0c7 Guido Trotter
then
717 fe5b0c42 Michael Hanselmann
  if $SOCAT -hh | grep -w -q escape; then
718 fe5b0c42 Michael Hanselmann
    SOCAT_USE_ESCAPE=True
719 fe5b0c42 Michael Hanselmann
  else
720 fe5b0c42 Michael Hanselmann
    SOCAT_USE_ESCAPE=False
721 fe5b0c42 Michael Hanselmann
  fi
722 87c1d0c7 Guido Trotter
fi
723 87c1d0c7 Guido Trotter
724 fe5b0c42 Michael Hanselmann
AC_SUBST(SOCAT_USE_ESCAPE)
725 fe5b0c42 Michael Hanselmann
726 e90739d6 Michael Hanselmann
SOCAT_USE_COMPRESS=
727 e90739d6 Michael Hanselmann
AC_ARG_ENABLE([socat-compress],
728 e90739d6 Michael Hanselmann
  [AS_HELP_STRING([--enable-socat-compress],
729 e90739d6 Michael Hanselmann
    [use OpenSSL compression option available in patched socat builds
730 e90739d6 Michael Hanselmann
     (see INSTALL for details; default: detect automatically)])],
731 e90739d6 Michael Hanselmann
  [[if test "$enableval" = yes; then
732 e90739d6 Michael Hanselmann
      SOCAT_USE_COMPRESS=True
733 e90739d6 Michael Hanselmann
    else
734 e90739d6 Michael Hanselmann
      SOCAT_USE_COMPRESS=False
735 e90739d6 Michael Hanselmann
    fi
736 e90739d6 Michael Hanselmann
  ]])
737 e90739d6 Michael Hanselmann
738 e90739d6 Michael Hanselmann
if test -z "$SOCAT_USE_COMPRESS"
739 e90739d6 Michael Hanselmann
then
740 e90739d6 Michael Hanselmann
  if $SOCAT -hhh | grep -w -q openssl-compress; then
741 e90739d6 Michael Hanselmann
    SOCAT_USE_COMPRESS=True
742 e90739d6 Michael Hanselmann
  else
743 e90739d6 Michael Hanselmann
    SOCAT_USE_COMPRESS=False
744 e90739d6 Michael Hanselmann
  fi
745 e90739d6 Michael Hanselmann
fi
746 e90739d6 Michael Hanselmann
747 e90739d6 Michael Hanselmann
AC_SUBST(SOCAT_USE_COMPRESS)
748 e90739d6 Michael Hanselmann
749 5f55173b Iustin Pop
if man --help | grep -q -e --warnings
750 5f55173b Iustin Pop
then
751 5f55173b Iustin Pop
  MAN_HAS_WARNINGS=1
752 5f55173b Iustin Pop
else
753 5f55173b Iustin Pop
  MAN_HAS_WARNINGS=
754 30841576 Michael Hanselmann
  AC_MSG_WARN(m4_normalize([man does not support --warnings, man page checks
755 30841576 Michael Hanselmann
                            will not be possible]))
756 5f55173b Iustin Pop
fi
757 5f55173b Iustin Pop
758 5f55173b Iustin Pop
AC_SUBST(MAN_HAS_WARNINGS)
759 5f55173b Iustin Pop
760 a5d17f9f Michael Hanselmann
# Check for Python
761 777ea2c6 Guido Trotter
AM_PATH_PYTHON(2.6)
762 a8083063 Iustin Pop
763 6e06b36c Iustin Pop
AC_PYTHON_MODULE(OpenSSL, t)
764 6e06b36c Iustin Pop
AC_PYTHON_MODULE(simplejson, t)
765 6e06b36c Iustin Pop
AC_PYTHON_MODULE(pyparsing, t)
766 0f18ee6d Guido Trotter
AC_PYTHON_MODULE(pyinotify, t)
767 28af40c8 Guido Trotter
AC_PYTHON_MODULE(pycurl, t)
768 0a09b080 Michael Hanselmann
AC_PYTHON_MODULE(bitarray, t)
769 0a09b080 Michael Hanselmann
AC_PYTHON_MODULE(ipaddr, t)
770 7a694e30 Thomas Thrainer
AC_PYTHON_MODULE(mock)
771 4f6396fd Iustin Pop
AC_PYTHON_MODULE(affinity)
772 a40b1fc4 René Nussbaumer
AC_PYTHON_MODULE(paramiko)
773 a40b1fc4 René Nussbaumer
774 27df5b73 Michele Tartara
# Development-only Python modules
775 27df5b73 Michele Tartara
PY_NODEV=
776 27df5b73 Michele Tartara
AC_PYTHON_MODULE(yaml)
777 27df5b73 Michele Tartara
if test $HAVE_PYMOD_YAML == "no"; then
778 27df5b73 Michele Tartara
  PY_NODEV="$PY_NODEV yaml"
779 27df5b73 Michele Tartara
fi
780 27df5b73 Michele Tartara
781 27df5b73 Michele Tartara
if test -n "$PY_NODEV"; then
782 27df5b73 Michele Tartara
  AC_MSG_WARN(m4_normalize([Required development modules ($PY_NODEV) were not
783 27df5b73 Michele Tartara
                            found, you won't be able to run Python unittests]))
784 27df5b73 Michele Tartara
else
785 27df5b73 Michele Tartara
   AC_MSG_NOTICE([Python development modules found, unittests enabled])
786 27df5b73 Michele Tartara
fi
787 27df5b73 Michele Tartara
AC_SUBST(PY_NODEV)
788 27df5b73 Michele Tartara
AM_CONDITIONAL([PY_NODEV], [test -n $PY_NODEV])
789 27df5b73 Michele Tartara
790 e8230860 Michael Hanselmann
AC_CONFIG_FILES([ Makefile ])
791 3571f686 Iustin Pop
792 a8083063 Iustin Pop
AC_OUTPUT