Statistics
| Branch: | Tag: | Revision:

root / configure.ac @ 9108958f

History | View | Annotate | Download (21.5 kB)

1
# Configure script for Ganeti
2
m4_define([gnt_version_major], [2])
3
m4_define([gnt_version_minor], [6])
4
m4_define([gnt_version_revision], [1])
5
m4_define([gnt_version_suffix], [])
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([1.9 foreign tar-ustar -Wall -Wno-portability])
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-ssh-config-dir=...
43
AC_ARG_WITH([ssh-config-dir],
44
  [AS_HELP_STRING([--with-ssh-config-dir=DIR],
45
    [ directory with ssh host keys ]
46
    [ (default is /etc/ssh)]
47
  )],
48
  [ssh_config_dir="$withval"],
49
  [ssh_config_dir="/etc/ssh"])
50
AC_SUBST(SSH_CONFIG_DIR, $ssh_config_dir)
51

    
52
# --with-os-search-path=...
53
# do a bit of black sed magic to for quoting of the strings in the list
54
AC_ARG_WITH([os-search-path],
55
  [AS_HELP_STRING([--with-os-search-path=LIST],
56
    [comma separated list of directories to]
57
    [ search for OS images (default is /srv/ganeti/os)]
58
  )],
59
  [os_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
60
  [os_search_path="'/srv/ganeti/os'"])
61
AC_SUBST(OS_SEARCH_PATH, $os_search_path)
62

    
63
# --with-iallocator-search-path=...
64
# do a bit of black sed magic to for quoting of the strings in the list
65
AC_ARG_WITH([iallocator-search-path],
66
  [AS_HELP_STRING([--with-iallocator-search-path=LIST],
67
    [comma separated list of directories to]
68
    [ search for instance allocators (default is $libdir/ganeti/iallocators)]
69
  )],
70
  [iallocator_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
71
  [iallocator_search_path="'$libdir/$PACKAGE_NAME/iallocators'"])
72
AC_SUBST(IALLOCATOR_SEARCH_PATH, $iallocator_search_path)
73

    
74
# --with-xen-bootloader=...
75
AC_ARG_WITH([xen-bootloader],
76
  [AS_HELP_STRING([--with-xen-bootloader=PATH],
77
    [bootloader for Xen hypervisor (default is empty)]
78
  )],
79
  [xen_bootloader="$withval"],
80
  [xen_bootloader=])
81
AC_SUBST(XEN_BOOTLOADER, $xen_bootloader)
82

    
83
# --with-xen-kernel=...
84
AC_ARG_WITH([xen-kernel],
85
  [AS_HELP_STRING([--with-xen-kernel=PATH],
86
    [DomU kernel image for Xen hypervisor (default is /boot/vmlinuz-3-xenU)]
87
  )],
88
  [xen_kernel="$withval"],
89
  [xen_kernel="/boot/vmlinuz-3-xenU"])
90
AC_SUBST(XEN_KERNEL, $xen_kernel)
91

    
92
# --with-xen-initrd=...
93
AC_ARG_WITH([xen-initrd],
94
  [AS_HELP_STRING([--with-xen-initrd=PATH],
95
    [DomU initrd image for Xen hypervisor (default is /boot/initrd-3-xenU)]
96
  )],
97
  [xen_initrd="$withval"],
98
  [xen_initrd="/boot/initrd-3-xenU"])
99
AC_SUBST(XEN_INITRD, $xen_initrd)
100

    
101
# --with-xen-cmd=...
102
AC_ARG_WITH([xen-cmd],
103
  [AS_HELP_STRING([--with-xen-cmd=CMD],
104
    [Sets the xen cli interface command (default is xm)]
105
  )],
106
  [xen_cmd="$withval"],
107
  [xen_cmd="xm"])
108
AC_SUBST(XEN_CMD, $xen_cmd)
109

    
110
if ! test "$XEN_CMD" = xl -o "$XEN_CMD" = xm; then
111
  AC_MSG_ERROR([Unsupported xen command specified])
112
fi
113

    
114
# --with-kvm-kernel=...
115
AC_ARG_WITH([kvm-kernel],
116
  [AS_HELP_STRING([--with-kvm-kernel=PATH],
117
    [Guest kernel image for KVM hypervisor (default is /boot/vmlinuz-3-kvmU)]
118
  )],
119
  [kvm_kernel="$withval"],
120
  [kvm_kernel="/boot/vmlinuz-3-kvmU"])
121
AC_SUBST(KVM_KERNEL, $kvm_kernel)
122

    
123
# --with-file-storage-dir=...
124
AC_ARG_WITH([file-storage-dir],
125
  [AS_HELP_STRING([--with-file-storage-dir=PATH],
126
    [directory to store files for file-based backend]
127
    [ (default is /srv/ganeti/file-storage)]
128
  )],
129
  [[file_storage_dir="$withval";
130
    if test "$withval" != no; then
131
      enable_file_storage=True
132
    else
133
      enable_file_storage=False
134
    fi
135
  ]],
136
  [[file_storage_dir="/srv/ganeti/file-storage";
137
    enable_file_storage="True"]])
138
AC_SUBST(FILE_STORAGE_DIR, $file_storage_dir)
139
AC_SUBST(ENABLE_FILE_STORAGE, $enable_file_storage)
140

    
141
# --with-shared-file-storage-dir=...
142
AC_ARG_WITH([shared-file-storage-dir],
143
  [AS_HELP_STRING([--with-shared-file-storage-dir=PATH],
144
    [directory to store files for shared file-based backend]
145
    [ (default is /srv/ganeti/shared-file-storage)]
146
  )],
147
  [[shared_file_storage_dir="$withval";
148
    if test "$withval" != no; then
149
      enable_shared_file_storage=True
150
    else
151
      enable_shared_file_storage=False
152
    fi
153
  ]],
154
  [[shared_file_storage_dir="/srv/ganeti/shared-file-storage";
155
    enable_shared_file_storage="True"]])
156
AC_SUBST(SHARED_FILE_STORAGE_DIR, $shared_file_storage_dir)
157
AC_SUBST(ENABLE_SHARED_FILE_STORAGE, $enable_shared_file_storage)
158

    
159
# --with-kvm-path=...
160
AC_ARG_WITH([kvm-path],
161
  [AS_HELP_STRING([--with-kvm-path=PATH],
162
    [absolute path to the kvm binary]
163
    [ (default is /usr/bin/kvm)]
164
  )],
165
  [kvm_path="$withval"],
166
  [kvm_path="/usr/bin/kvm"])
167
AC_SUBST(KVM_PATH, $kvm_path)
168

    
169
# --with-lvm-stripecount=...
170
AC_ARG_WITH([lvm-stripecount],
171
  [AS_HELP_STRING([--with-lvm-stripecount=NUM],
172
    [the default number of stripes to use for LVM volumes]
173
    [ (default is 1)]
174
  )],
175
  [lvm_stripecount="$withval"],
176
  [lvm_stripecount="1"])
177
AC_SUBST(LVM_STRIPECOUNT, $lvm_stripecount)
178

    
179
# --with-ssh-login-user=...
180
AC_ARG_WITH([ssh-login-user],
181
  [AS_HELP_STRING([--with-ssh-login-user=USERNAME],
182
    [user to use for SSH logins within the cluster (default is root)]
183
  )],
184
  [ssh_login_user="$withval"],
185
  [ssh_login_user=root])
186
AC_SUBST(SSH_LOGIN_USER, $ssh_login_user)
187

    
188
# --with-ssh-console-user=...
189
AC_ARG_WITH([ssh-console-user],
190
  [AS_HELP_STRING([--with-ssh-console-user=USERNAME],
191
    [user to use for SSH logins to access instance consoles (default is root)]
192
  )],
193
  [ssh_console_user="$withval"],
194
  [ssh_console_user=root])
195
AC_SUBST(SSH_CONSOLE_USER, $ssh_console_user)
196

    
197
# --with-default-user=...
198
AC_ARG_WITH([default-user],
199
  [AS_HELP_STRING([--with-default-user=USERNAME],
200
    [default user for daemons]
201
    [ (default is to run all daemons as root)]
202
  )],
203
  [user_default="$withval"],
204
  [user_default=root])
205

    
206
# --with-default-group=...
207
AC_ARG_WITH([default-group],
208
  [AS_HELP_STRING([--with-default-group=GROUPNAME],
209
    [default group for daemons]
210
    [ (default is to run all daemons under group root)]
211
  )],
212
  [group_default="$withval"],
213
  [group_default=root])
214

    
215
# --with-user-prefix=...
216
AC_ARG_WITH([user-prefix],
217
  [AS_HELP_STRING([--with-user-prefix=PREFIX],
218
    [prefix for daemon users]
219
    [ (default is to run all daemons as root; use --with-default-user]
220
    [ to change the default)]
221
  )],
222
  [user_masterd="${withval}masterd";
223
   user_rapi="${withval}rapi";
224
   user_confd="${withval}confd";
225
   user_noded="$user_default"],
226
  [user_masterd="$user_default";
227
   user_rapi="$user_default";
228
   user_confd="$user_default";
229
   user_noded="$user_default"])
230
AC_SUBST(MASTERD_USER, $user_masterd)
231
AC_SUBST(RAPI_USER, $user_rapi)
232
AC_SUBST(CONFD_USER, $user_confd)
233
AC_SUBST(NODED_USER, $user_noded)
234

    
235
# --with-group-prefix=...
236
AC_ARG_WITH([group-prefix],
237
  [AS_HELP_STRING([--with-group-prefix=PREFIX],
238
    [prefix for daemon POSIX groups]
239
    [ (default is to run all daemons under group root; use]
240
    [ --with-default-group to change the default)]
241
  )],
242
  [group_rapi="${withval}rapi";
243
   group_admin="${withval}admin";
244
   group_confd="${withval}confd";
245
   group_masterd="${withval}masterd";
246
   group_noded="$group_default";
247
   group_daemons="${withval}daemons";],
248
  [group_rapi="$group_default";
249
   group_admin="$group_default";
250
   group_confd="$group_default";
251
   group_masterd="$group_default";
252
   group_noded="$group_default";
253
   group_daemons="$group_default"])
254
AC_SUBST(RAPI_GROUP, $group_rapi)
255
AC_SUBST(ADMIN_GROUP, $group_admin)
256
AC_SUBST(CONFD_GROUP, $group_confd)
257
AC_SUBST(MASTERD_GROUP, $group_masterd)
258
AC_SUBST(NODED_GROUP, $group_noded)
259
AC_SUBST(DAEMONS_GROUP, $group_daemons)
260

    
261
# Print the config to the user
262
AC_MSG_NOTICE([Running ganeti-masterd as $group_masterd:$group_masterd])
263
AC_MSG_NOTICE([Running ganeti-rapi as $user_rapi:$group_rapi])
264
AC_MSG_NOTICE([Running ganeti-confd as $user_confd:$group_confd])
265
AC_MSG_NOTICE([Group for daemons is $group_daemons])
266
AC_MSG_NOTICE([Group for clients is $group_admin])
267

    
268
# --enable-drbd-barriers
269
AC_ARG_ENABLE([drbd-barriers],
270
  [AS_HELP_STRING([--enable-drbd-barriers],
271
    [enable by default the DRBD barriers functionality (>= 8.0.12) (default: enabled)])],
272
  [[if test "$enableval" != no; then
273
      DRBD_BARRIERS=n
274
      DRBD_NO_META_FLUSH=False
275
    else
276
      DRBD_BARRIERS=bf
277
      DRBD_NO_META_FLUSH=True
278
    fi
279
  ]],
280
  [DRBD_BARRIERS=n
281
   DRBD_NO_META_FLUSH=False
282
  ])
283
AC_SUBST(DRBD_BARRIERS, $DRBD_BARRIERS)
284
AC_SUBST(DRBD_NO_META_FLUSH, $DRBD_NO_META_FLUSH)
285

    
286
# --enable-syslog[=no/yes/only]
287
AC_ARG_ENABLE([syslog],
288
  [AS_HELP_STRING([--enable-syslog],
289
    [enable use of syslog (default: disabled), one of no/yes/only])],
290
  [[case "$enableval" in
291
      no)
292
        SYSLOG=no
293
        ;;
294
      yes)
295
        SYSLOG=yes
296
        ;;
297
      only)
298
        SYSLOG=only
299
        ;;
300
      *)
301
        SYSLOG=
302
        ;;
303
    esac
304
  ]],
305
  [SYSLOG=no])
306

    
307
if test -z "$SYSLOG"
308
then
309
  AC_MSG_ERROR([invalid value for syslog, choose one of no/yes/only])
310
fi
311
AC_SUBST(SYSLOG_USAGE, $SYSLOG)
312

    
313
AC_ARG_ENABLE([remote-commands],
314
  [AS_HELP_STRING([--enable-remote-commands],
315
                  m4_normalize([enable remote commands in the node daemon
316
                                (default: disabled)]))],
317
  [[if test "$enableval" = no; then
318
      enable_remote_commands=False
319
    else
320
      enable_remote_commands=True
321
    fi
322
  ]],
323
  [enable_remote_commands=False])
324
AC_SUBST(ENABLE_REMOTE_COMMANDS, $enable_remote_commands)
325

    
326
# --with-disk-separator=...
327
AC_ARG_WITH([disk-separator],
328
  [AS_HELP_STRING([--with-disk-separator=STRING],
329
    [Disk index separator, useful if the default of ':' is handled]
330
    [ specially by the hypervisor]
331
  )],
332
  [disk_separator="$withval"],
333
  [disk_separator=":"])
334
AC_SUBST(DISK_SEPARATOR, $disk_separator)
335

    
336
# Check common programs
337
AC_PROG_INSTALL
338
AC_PROG_LN_S
339

    
340
# Check for the ip command
341
AC_ARG_VAR(IP_PATH, [ip path])
342
AC_PATH_PROG(IP_PATH, [ip], [])
343
if test -z "$IP_PATH"
344
then
345
  AC_MSG_ERROR([ip command not found])
346
fi
347

    
348
# Check for pandoc
349
AC_ARG_VAR(PANDOC, [pandoc path])
350
AC_PATH_PROG(PANDOC, [pandoc], [])
351
if test -z "$PANDOC"
352
then
353
  AC_MSG_WARN([pandoc not found, man pages rebuild will not be possible])
354
fi
355

    
356
# Check for python-sphinx
357
AC_ARG_VAR(SPHINX, [sphinx-build path])
358
AC_PATH_PROG(SPHINX, [sphinx-build], [])
359
if test -z "$SPHINX"
360
then
361
  AC_MSG_WARN(m4_normalize([sphinx-build not found, documentation rebuild will
362
                            not be possible]))
363
fi
364

    
365
# Check for graphviz (dot)
366
AC_ARG_VAR(DOT, [dot path])
367
AC_PATH_PROG(DOT, [dot], [])
368
if test -z "$DOT"
369
then
370
  AC_MSG_WARN(m4_normalize([dot (from the graphviz suite) not found,
371
                            documentation rebuild not possible]))
372
fi
373

    
374
# Check for pylint
375
AC_ARG_VAR(PYLINT, [pylint path])
376
AC_PATH_PROG(PYLINT, [pylint], [])
377
if test -z "$PYLINT"
378
then
379
  AC_MSG_WARN([pylint not found, checking code will not be possible])
380
fi
381

    
382
# Check for pep8
383
AC_ARG_VAR(PEP8, [pep8 path])
384
AC_PATH_PROG(PEP8, [pep8], [])
385
if test -z "$PEP8"
386
then
387
  AC_MSG_WARN([pep8 not found, checking code will not be complete])
388
fi
389
AM_CONDITIONAL([HAS_PEP8], [test -n "$PEP8"])
390

    
391
# Check for python-coverage
392
AC_ARG_VAR(PYCOVERAGE, [python-coverage path])
393
AC_PATH_PROGS(PYCOVERAGE, [python-coverage coverage], [])
394
if test -z "$PYCOVERAGE"
395
then
396
  AC_MSG_WARN(m4_normalize([python-coverage or coverage not found, evaluating
397
                            Python test coverage will not be possible]))
398
fi
399

    
400
# Check for socat
401
AC_ARG_VAR(SOCAT, [socat path])
402
AC_PATH_PROG(SOCAT, [socat], [])
403
if test -z "$SOCAT"
404
then
405
  AC_MSG_ERROR([socat not found])
406
fi
407

    
408
# Check for qemu-img
409
AC_ARG_VAR(QEMUIMG_PATH, [qemu-img path])
410
AC_PATH_PROG(QEMUIMG_PATH, [qemu-img], [])
411
if test -z "$QEMUIMG_PATH"
412
then
413
  AC_MSG_WARN([qemu-img not found, using ovfconverter will not be possible])
414
fi
415

    
416
# --enable-htools-rapi
417
HTOOLS_RAPI=
418
AC_ARG_ENABLE([htools-rapi],
419
        [AS_HELP_STRING([--enable-htools-rapi],
420
        [enable use of curl in the Haskell code (default: check)])],
421
        [],
422
        [enable_htools_rapi=check])
423

    
424
# --enable-confd
425
ENABLE_CONFD=
426
AC_ARG_ENABLE([confd],
427
  [AS_HELP_STRING([--enable-confd],
428
  [enable the ganeti-confd daemon (default: check)])],
429
  [],
430
  [enable_confd=check])
431

    
432
ENABLE_MONITORING=
433
AC_ARG_ENABLE([monitoring],
434
  [AS_HELP_STRING([--enable-monitoring],
435
  [enable the ganeti monitoring agent (default: check)])],
436
  [],
437
  [enable_monitoring=check])
438

    
439
# Check for ghc
440
AC_ARG_VAR(GHC, [ghc path])
441
AC_PATH_PROG(GHC, [ghc], [])
442
if test -z "$GHC"; then
443
  AC_MSG_FAILURE([ghc not found, compilation will not possible])
444
fi
445

    
446
AC_MSG_CHECKING([checking for extra GHC flags])
447
GHC_BYVERSION_FLAGS=""
448
# check for GHC supported flags that vary accross versions
449
for flag in -fwarn-incomplete-uni-patterns; do
450
  if $GHC -e "0" $flag >/dev/null 2>/dev/null; then
451
   GHC_BYVERSION_FLAGS="$GHC_BYVERSION_FLAGS $flag"
452
  fi
453
done
454
AC_MSG_RESULT($GHC_BYVERSION_FLAGS)
455
AC_SUBST(GHC_BYVERSION_FLAGS)
456

    
457
# Check for ghc-pkg
458
AC_ARG_VAR(GHC_PKG, [ghc-pkg path])
459
AC_PATH_PROG(GHC_PKG, [ghc-pkg], [])
460
if test -z "$GHC_PKG"; then
461
  AC_MSG_FAILURE([ghc-pkg not found, compilation will not be possible])
462
fi
463

    
464
# check for modules, first custom/special checks
465
AC_MSG_NOTICE([checking for required haskell modules])
466
HTOOLS_NOCURL=-DNO_CURL
467
if test "$enable_htools_rapi" != "no"; then
468
  AC_GHC_PKG_CHECK([curl], [HTOOLS_NOCURL=], [])
469
  if test -n "$HTOOLS_NOCURL"; then
470
    if test "$enable_htools_rapi" = "check"; then
471
      AC_MSG_WARN(m4_normalize([The curl library was not found, Haskell
472
                                code will be compiled without RAPI support]))
473
    else
474
      AC_MSG_FAILURE(m4_normalize([The curl library was not found, but it has
475
                                   been requested]))
476
    fi
477
  else
478
    AC_MSG_NOTICE([Enabling curl/RAPI/RPC usage in Haskell code])
479
  fi
480
fi
481
AC_SUBST(HTOOLS_NOCURL)
482

    
483
HTOOLS_PARALLEL3=
484
AC_GHC_PKG_CHECK([parallel-3.*], [HTOOLS_PARALLEL3=-DPARALLEL3],
485
                 [AC_GHC_PKG_REQUIRE(parallel)], t)
486
AC_SUBST(HTOOLS_PARALLEL3)
487

    
488
# and now standard modules
489
AC_GHC_PKG_REQUIRE(json)
490
AC_GHC_PKG_REQUIRE(network)
491
AC_GHC_PKG_REQUIRE(mtl)
492
AC_GHC_PKG_REQUIRE(bytestring)
493
AC_GHC_PKG_REQUIRE(utf8-string)
494

    
495
# extra modules for confd functionality
496
HTOOLS_REGEX_PCRE=-DNO_REGEX_PCRE
497
has_confd=False
498
if test "$enable_confd" != "no"; then
499
  CONFD_PKG=
500
  AC_GHC_PKG_CHECK([regex-pcre], [HTOOLS_REGEX_PCRE=],
501
                   [CONFD_PKG="$CONFD_PKG regex-pcre"])
502
  AC_GHC_PKG_CHECK([hslogger], [], [CONFD_PKG="$CONFD_PKG hslogger"])
503
  AC_GHC_PKG_CHECK([Crypto], [], [CONFD_PKG="$CONFD_PKG Crypto"])
504
  AC_GHC_PKG_CHECK([text], [], [CONFD_PKG="$CONFD_PKG text"])
505
  AC_GHC_PKG_CHECK([hinotify], [], [CONFD_PKG="$CONFD_PKG hinotify"])
506
  if test -z "$CONFD_PKG"; then
507
    has_confd=True
508
  else
509
    if test "$enable_confd" = "check"; then
510
      AC_MSG_WARN(m4_normalize([The required extra libraries for confd were
511
                                not found ($CONFD_PKG), confd disabled]))
512
    else
513
      AC_MSG_FAILURE(m4_normalize([The confd functionality was requested, but
514
                                   required libraries were not found:
515
                                   $CONFD_PKG]))
516
    fi
517
  fi
518
fi
519
AC_SUBST(HTOOLS_REGEX_PCRE)
520
if test "$has_confd" = "True"; then
521
  AC_MSG_NOTICE([Enabling confd usage])
522
fi
523
AC_SUBST(ENABLE_CONFD, $has_confd)
524
AM_CONDITIONAL([ENABLE_CONFD], [test x$has_confd = xTrue])
525

    
526
#extra modules for monitoring agent functionality
527
has_monitoring=False
528
if test "$enable_monitoring" != "no"; then
529
  MONITORING_PKG=
530
  AC_GHC_PKG_CHECK([attoparsec], [], [MONITORING_PKG="$MONITORING_PKG attoparsec"])
531
  if test -z "$MONITORING_PKG"; then
532
    has_monitoring=True
533
  else
534
    if test "$enable_monitoring" = "check"; then
535
      AC_MSG_WARN(m4_normalize([The required extra libraries for the monitoring
536
                                agent were not found ($MONITORING_PKG),
537
                                monitoring disabled]))
538
    else
539
      AC_MSG_FAILURE(m4_normalize([The monitoring functionality was requested, but
540
                                   required libraries were not found:
541
                                   $MONITORING_PKG]))
542
    fi
543
  fi
544
fi
545
if test "$has_monitoring" = "True"; then
546
  AC_MSG_NOTICE([Enabling the monitoring agent usage])
547
fi
548
AC_SUBST(ENABLE_MONITORING, $has_monitoring)
549
AM_CONDITIONAL([ENABLE_MONITORING], [test x$has_monitoring = xTrue])
550

    
551
# development modules
552
HTOOLS_NODEV=
553
AC_GHC_PKG_CHECK([QuickCheck-2.*], [], [HTOOLS_NODEV=1], t)
554
AC_GHC_PKG_CHECK([test-framework-0.6*], [], [HTOOLS_NODEV=1], t)
555
AC_GHC_PKG_CHECK([test-framework-hunit], [], [HTOOLS_NODEV=1])
556
AC_GHC_PKG_CHECK([test-framework-quickcheck2], [], [HTOOLS_NODEV=1])
557
# FIXME: unify checks for non-test libraries (attoparsec, hinotify, ...)
558
#        that are needed to execute the tests, avoiding the duplication
559
#        of the checks.
560
AC_GHC_PKG_CHECK([attoparsec], [], [HTOOLS_NODEV=1])
561
if test -n "$HTOOLS_NODEV"; then
562
   AC_MSG_WARN(m4_normalize([Required development modules were not found,
563
                             you won't be able to run Haskell unittests]))
564
else
565
   AC_MSG_NOTICE([Haskell development modules found, unittests enabled])
566
fi
567
AC_SUBST(HTOOLS_NODEV)
568

    
569
HTOOLS=yes
570
AC_SUBST(HTOOLS)
571

    
572
# --enable-split-query
573
ENABLE_SPLIT_QUERY=
574
AC_ARG_ENABLE([split-query],
575
  [AS_HELP_STRING([--enable-split-query],
576
  [enable use of custom query daemon via confd])],
577
  [[case "$enableval" in
578
      no)
579
        enable_split_query=False
580
        ;;
581
      yes)
582
        enable_split_query=True
583
        ;;
584
      *)
585
        echo "Invalid value for enable-confd '$enableval'"
586
        exit 1
587
        ;;
588
    esac
589
  ]],
590
  [[case "x${has_confd}x${HTOOLS_NOCURL}x" in
591
     xTruexx)
592
       enable_split_query=True
593
       ;;
594
     *)
595
       enable_split_query=False
596
       ;;
597
   esac]])
598
AC_SUBST(ENABLE_SPLIT_QUERY, $enable_split_query)
599

    
600
if test x$enable_split_query = xTrue -a x$has_confd != xTrue; then
601
  AC_MSG_ERROR([Split queries require the confd daemon])
602
fi
603

    
604
if test x$enable_split_query = xTrue -a x$HTOOLS_NOCURL != x; then
605
  AC_MSG_ERROR([Split queries require the htools-rapi feature (curl library)])
606
fi
607

    
608
if test x$enable_split_query = xTrue; then
609
  AC_MSG_NOTICE([Split query functionality enabled])
610
fi
611

    
612
# Check for HsColour
613
HTOOLS_APIDOC=no
614
AC_ARG_VAR(HSCOLOUR, [HsColour path])
615
AC_PATH_PROG(HSCOLOUR, [HsColour], [])
616
if test -z "$HSCOLOUR"; then
617
  AC_MSG_WARN(m4_normalize([HsColour not found, htools API documentation will
618
                            not be generated]))
619
fi
620

    
621
# Check for haddock
622
AC_ARG_VAR(HADDOCK, [haddock path])
623
AC_PATH_PROG(HADDOCK, [haddock], [])
624
if test -z "$HADDOCK"; then
625
  AC_MSG_WARN(m4_normalize([haddock not found, htools API documentation will
626
                            not be generated]))
627
fi
628
if test "$HADDOCK" && test "$HSCOLOUR"; then
629
  HTOOLS_APIDOC=yes
630
fi
631
AC_SUBST(HTOOLS_APIDOC)
632

    
633
# Check for hlint
634
HLINT=no
635
AC_ARG_VAR(HLINT, [hlint path])
636
AC_PATH_PROG(HLINT, [hlint], [])
637
if test -z "$HLINT"; then
638
  AC_MSG_WARN([hlint not found, checking code will not be possible])
639
fi
640

    
641
if test "$HTOOLS" != "yes" && test "$ENABLE_CONFD" = "True"; then
642
   AC_MSG_ERROR(m4_normalize([cannot enable ganeti-confd if
643
                              htools support is not enabled]))
644
fi
645

    
646
AM_CONDITIONAL([WANT_HTOOLS], [test x$HTOOLS = xyes])
647
AM_CONDITIONAL([WANT_HTOOLSTESTS], [test "x$HTOOLS_NODEV" = x])
648
AM_CONDITIONAL([WANT_HTOOLSAPIDOC], [test x$HTOOLS_APIDOC = xyes])
649
AM_CONDITIONAL([HAS_HLINT], [test "$HLINT"])
650

    
651
# Check for fakeroot
652
AC_ARG_VAR(FAKEROOT_PATH, [fakeroot path])
653
AC_PATH_PROG(FAKEROOT_PATH, [fakeroot], [])
654
if test -z "$FAKEROOT_PATH"; then
655
  AC_MSG_WARN(m4_normalize([fakeroot not found, tests that must run as root
656
                            will not be executed]))
657
fi
658
AM_CONDITIONAL([HAS_FAKEROOT], [test "x$FAKEROOT_PATH" != x])
659

    
660
SOCAT_USE_ESCAPE=
661
AC_ARG_ENABLE([socat-escape],
662
  [AS_HELP_STRING([--enable-socat-escape],
663
    [use escape functionality available in socat >= 1.7 (default: detect
664
     automatically)])],
665
  [[if test "$enableval" = yes; then
666
      SOCAT_USE_ESCAPE=True
667
    else
668
      SOCAT_USE_ESCAPE=False
669
    fi
670
  ]])
671

    
672
if test -z "$SOCAT_USE_ESCAPE"
673
then
674
  if $SOCAT -hh | grep -w -q escape; then
675
    SOCAT_USE_ESCAPE=True
676
  else
677
    SOCAT_USE_ESCAPE=False
678
  fi
679
fi
680

    
681
AC_SUBST(SOCAT_USE_ESCAPE)
682

    
683
SOCAT_USE_COMPRESS=
684
AC_ARG_ENABLE([socat-compress],
685
  [AS_HELP_STRING([--enable-socat-compress],
686
    [use OpenSSL compression option available in patched socat builds
687
     (see INSTALL for details; default: detect automatically)])],
688
  [[if test "$enableval" = yes; then
689
      SOCAT_USE_COMPRESS=True
690
    else
691
      SOCAT_USE_COMPRESS=False
692
    fi
693
  ]])
694

    
695
if test -z "$SOCAT_USE_COMPRESS"
696
then
697
  if $SOCAT -hhh | grep -w -q openssl-compress; then
698
    SOCAT_USE_COMPRESS=True
699
  else
700
    SOCAT_USE_COMPRESS=False
701
  fi
702
fi
703

    
704
AC_SUBST(SOCAT_USE_COMPRESS)
705

    
706
if man --help | grep -q -e --warnings
707
then
708
  MAN_HAS_WARNINGS=1
709
else
710
  MAN_HAS_WARNINGS=
711
  AC_MSG_WARN(m4_normalize([man does not support --warnings, man page checks
712
                            will not be possible]))
713
fi
714

    
715
AC_SUBST(MAN_HAS_WARNINGS)
716

    
717
# Check for Python
718
AM_PATH_PYTHON(2.4)
719

    
720
AC_PYTHON_MODULE(OpenSSL, t)
721
AC_PYTHON_MODULE(simplejson, t)
722
AC_PYTHON_MODULE(pyparsing, t)
723
AC_PYTHON_MODULE(pyinotify, t)
724
AC_PYTHON_MODULE(pycurl, t)
725
AC_PYTHON_MODULE(affinity)
726
AC_PYTHON_MODULE(paramiko)
727

    
728
AC_CONFIG_FILES([ Makefile ])
729

    
730
AC_OUTPUT