Statistics
| Branch: | Tag: | Revision:

root / configure.ac @ 6051fd94

History | View | Annotate | Download (18.7 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], [2])
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-xen-config-dir=...
53
AC_ARG_WITH([xen-config-dir],
54
  [AS_HELP_STRING([--with-xen-config-dir=DIR],
55
                  m4_normalize([Xen configuration directory
56
                                (default: /etc/xen)]))],
57
  [xen_config_dir="$withval"],
58
  [xen_config_dir=/etc/xen])
59
AC_SUBST(XEN_CONFIG_DIR, $xen_config_dir)
60

    
61
# --with-os-search-path=...
62
# do a bit of black sed magic to for quoting of the strings in the list
63
AC_ARG_WITH([os-search-path],
64
  [AS_HELP_STRING([--with-os-search-path=LIST],
65
    [comma separated list of directories to]
66
    [ search for OS images (default is /srv/ganeti/os)]
67
  )],
68
  [os_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
69
  [os_search_path="'/srv/ganeti/os'"])
70
AC_SUBST(OS_SEARCH_PATH, $os_search_path)
71

    
72
# --with-extstorage-search-path=...
73
# same black sed magic for quoting of the strings in the list
74
AC_ARG_WITH([extstorage-search-path],
75
  [AS_HELP_STRING([--with-extstorage-search-path=LIST],
76
    [comma separated list of directories to]
77
    [ search for External Storage Providers]
78
    [ (default is /srv/ganeti/extstorage)]
79
  )],
80
  [es_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
81
  [es_search_path="'/srv/ganeti/extstorage'"])
82
AC_SUBST(ES_SEARCH_PATH, $es_search_path)
83

    
84
# --with-iallocator-search-path=...
85
# do a bit of black sed magic to for quoting of the strings in the list
86
AC_ARG_WITH([iallocator-search-path],
87
  [AS_HELP_STRING([--with-iallocator-search-path=LIST],
88
    [comma separated list of directories to]
89
    [ search for instance allocators (default is $libdir/ganeti/iallocators)]
90
  )],
91
  [iallocator_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
92
  [iallocator_search_path="'$libdir/$PACKAGE_NAME/iallocators'"])
93
AC_SUBST(IALLOCATOR_SEARCH_PATH, $iallocator_search_path)
94

    
95
# --with-xen-bootloader=...
96
AC_ARG_WITH([xen-bootloader],
97
  [AS_HELP_STRING([--with-xen-bootloader=PATH],
98
    [bootloader for Xen hypervisor (default is empty)]
99
  )],
100
  [xen_bootloader="$withval"],
101
  [xen_bootloader=])
102
AC_SUBST(XEN_BOOTLOADER, $xen_bootloader)
103

    
104
# --with-xen-kernel=...
105
AC_ARG_WITH([xen-kernel],
106
  [AS_HELP_STRING([--with-xen-kernel=PATH],
107
    [DomU kernel image for Xen hypervisor (default is /boot/vmlinuz-3-xenU)]
108
  )],
109
  [xen_kernel="$withval"],
110
  [xen_kernel="/boot/vmlinuz-3-xenU"])
111
AC_SUBST(XEN_KERNEL, $xen_kernel)
112

    
113
# --with-xen-initrd=...
114
AC_ARG_WITH([xen-initrd],
115
  [AS_HELP_STRING([--with-xen-initrd=PATH],
116
    [DomU initrd image for Xen hypervisor (default is /boot/initrd-3-xenU)]
117
  )],
118
  [xen_initrd="$withval"],
119
  [xen_initrd="/boot/initrd-3-xenU"])
120
AC_SUBST(XEN_INITRD, $xen_initrd)
121

    
122
# --with-xen-cmd=...
123
AC_ARG_WITH([xen-cmd],
124
  [AS_HELP_STRING([--with-xen-cmd=CMD],
125
    [Sets the xen cli interface command (default is xm)]
126
  )],
127
  [xen_cmd="$withval"],
128
  [xen_cmd="xm"])
129
AC_SUBST(XEN_CMD, $xen_cmd)
130

    
131
if ! test "$XEN_CMD" = xl -o "$XEN_CMD" = xm; then
132
  AC_MSG_ERROR([Unsupported xen command specified])
133
fi
134

    
135
# --with-kvm-kernel=...
136
AC_ARG_WITH([kvm-kernel],
137
  [AS_HELP_STRING([--with-kvm-kernel=PATH],
138
    [Guest kernel image for KVM hypervisor (default is /boot/vmlinuz-3-kvmU)]
139
  )],
140
  [kvm_kernel="$withval"],
141
  [kvm_kernel="/boot/vmlinuz-3-kvmU"])
142
AC_SUBST(KVM_KERNEL, $kvm_kernel)
143

    
144
# --with-file-storage-dir=...
145
AC_ARG_WITH([file-storage-dir],
146
  [AS_HELP_STRING([--with-file-storage-dir=PATH],
147
    [directory to store files for file-based backend]
148
    [ (default is /srv/ganeti/file-storage)]
149
  )],
150
  [[file_storage_dir="$withval";
151
    if test "$withval" != no; then
152
      enable_file_storage=True
153
    else
154
      enable_file_storage=False
155
    fi
156
  ]],
157
  [[file_storage_dir="/srv/ganeti/file-storage";
158
    enable_file_storage="True"]])
159
AC_SUBST(FILE_STORAGE_DIR, $file_storage_dir)
160
AC_SUBST(ENABLE_FILE_STORAGE, $enable_file_storage)
161

    
162
# --with-shared-file-storage-dir=...
163
AC_ARG_WITH([shared-file-storage-dir],
164
  [AS_HELP_STRING([--with-shared-file-storage-dir=PATH],
165
    [directory to store files for shared file-based backend]
166
    [ (default is /srv/ganeti/shared-file-storage)]
167
  )],
168
  [[shared_file_storage_dir="$withval";
169
    if test "$withval" != no; then
170
      enable_shared_file_storage=True
171
    else
172
      enable_shared_file_storage=False
173
    fi
174
  ]],
175
  [[shared_file_storage_dir="/srv/ganeti/shared-file-storage";
176
    enable_shared_file_storage="True"]])
177
AC_SUBST(SHARED_FILE_STORAGE_DIR, $shared_file_storage_dir)
178
AC_SUBST(ENABLE_SHARED_FILE_STORAGE, $enable_shared_file_storage)
179

    
180
# --with-kvm-path=...
181
AC_ARG_WITH([kvm-path],
182
  [AS_HELP_STRING([--with-kvm-path=PATH],
183
    [absolute path to the kvm binary]
184
    [ (default is /usr/bin/kvm)]
185
  )],
186
  [kvm_path="$withval"],
187
  [kvm_path="/usr/bin/kvm"])
188
AC_SUBST(KVM_PATH, $kvm_path)
189

    
190
# --with-lvm-stripecount=...
191
AC_ARG_WITH([lvm-stripecount],
192
  [AS_HELP_STRING([--with-lvm-stripecount=NUM],
193
    [the default number of stripes to use for LVM volumes]
194
    [ (default is 1)]
195
  )],
196
  [lvm_stripecount="$withval"],
197
  [lvm_stripecount="1"])
198
AC_SUBST(LVM_STRIPECOUNT, $lvm_stripecount)
199

    
200
# --with-user-prefix=...
201
AC_ARG_WITH([user-prefix],
202
  [AS_HELP_STRING([--with-user-prefix=PREFIX],
203
    [prefix for daemon users]
204
    [ (default is to run all daemons as root)]
205
  )],
206
  [user_masterd="${withval}masterd";
207
   user_rapi="${withval}rapi";
208
   user_confd="${withval}confd";
209
   user_noded="root"],
210
  [user_masterd="root";
211
   user_rapi="root";
212
   user_confd="root";
213
   user_noded="root"])
214
AC_SUBST(MASTERD_USER, $user_masterd)
215
AC_SUBST(RAPI_USER, $user_rapi)
216
AC_SUBST(CONFD_USER, $user_confd)
217
AC_SUBST(NODED_USER, $user_noded)
218

    
219
# --with-group-prefix=...
220
AC_ARG_WITH([group-prefix],
221
  [AS_HELP_STRING([--with-group-prefix=PREFIX],
222
    [prefix for daemon POSIX groups]
223
    [ (default is to run all daemons under group root)]
224
  )],
225
  [group_rapi="${withval}rapi";
226
   group_admin="${withval}admin";
227
   group_confd="${withval}confd";
228
   group_masterd="${withval}masterd";
229
   group_noded="root";
230
   group_daemons="${withval}daemons";],
231
  [group_rapi="root";
232
   group_admin="root";
233
   group_confd="root";
234
   group_masterd="root";
235
   group_noded="root";
236
   group_daemons="root"])
237
AC_SUBST(RAPI_GROUP, $group_rapi)
238
AC_SUBST(ADMIN_GROUP, $group_admin)
239
AC_SUBST(CONFD_GROUP, $group_confd)
240
AC_SUBST(MASTERD_GROUP, $group_masterd)
241
AC_SUBST(NODED_GROUP, $group_noded)
242
AC_SUBST(DAEMONS_GROUP, $group_daemons)
243

    
244
# Print the config to the user
245
AC_MSG_NOTICE([Running ganeti-masterd as $group_masterd:$group_masterd])
246
AC_MSG_NOTICE([Running ganeti-rapi as $user_rapi:$group_rapi])
247
AC_MSG_NOTICE([Running ganeti-confd as $user_confd:$group_confd])
248
AC_MSG_NOTICE([Group for daemons is $group_daemons])
249
AC_MSG_NOTICE([Group for clients is $group_admin])
250

    
251
# --enable-drbd-barriers
252
AC_ARG_ENABLE([drbd-barriers],
253
  [AS_HELP_STRING([--enable-drbd-barriers],
254
    [enable by default the DRBD barriers functionality (>= 8.0.12) (default: enabled)])],
255
  [[if test "$enableval" != no; then
256
      DRBD_BARRIERS=n
257
      DRBD_NO_META_FLUSH=False
258
    else
259
      DRBD_BARRIERS=bf
260
      DRBD_NO_META_FLUSH=True
261
    fi
262
  ]],
263
  [DRBD_BARRIERS=n
264
   DRBD_NO_META_FLUSH=False
265
  ])
266
AC_SUBST(DRBD_BARRIERS, $DRBD_BARRIERS)
267
AC_SUBST(DRBD_NO_META_FLUSH, $DRBD_NO_META_FLUSH)
268

    
269
# --enable-syslog[=no/yes/only]
270
AC_ARG_ENABLE([syslog],
271
  [AS_HELP_STRING([--enable-syslog],
272
    [enable use of syslog (default: disabled), one of no/yes/only])],
273
  [[case "$enableval" in
274
      no)
275
        SYSLOG=no
276
        ;;
277
      yes)
278
        SYSLOG=yes
279
        ;;
280
      only)
281
        SYSLOG=only
282
        ;;
283
      *)
284
        SYSLOG=
285
        ;;
286
    esac
287
  ]],
288
  [SYSLOG=no])
289

    
290
if test -z "$SYSLOG"
291
then
292
  AC_MSG_ERROR([invalid value for syslog, choose one of no/yes/only])
293
fi
294
AC_SUBST(SYSLOG_USAGE, $SYSLOG)
295

    
296
# --enable-htools
297
HTOOLS=
298
AC_ARG_ENABLE([htools],
299
        [AS_HELP_STRING([--enable-htools],
300
        [enable use of htools (needs GHC and libraries, default: check)])],
301
        [],
302
        [enable_htools=check])
303

    
304
# --enable-htools-rapi
305
HTOOLS_RAPI=
306
AC_ARG_ENABLE([htools-rapi],
307
        [AS_HELP_STRING([--enable-htools-rapi],
308
        [enable use of RAPI in htools (needs curl, default: no)])],
309
        [],
310
        [enable_htools_rapi=no])
311

    
312
# --enable-htools
313
ENABLE_CONFD=
314
AC_ARG_ENABLE([confd],
315
  [AS_HELP_STRING([--enable-confd],
316
  [enable the ganeti-confd daemon (default: python, options haskell/python/no)])],
317
  [[case "$enableval" in
318
      no)
319
        enable_confd=False
320
        py_confd=False
321
        hs_confd=False
322
        ;;
323
      yes|python)
324
        enable_confd=True
325
        py_confd=True
326
        hs_confd=False
327
        ;;
328
      haskell)
329
        enable_confd=True
330
        py_confd=False
331
        hs_confd=True
332
        ;;
333
      *)
334
        echo "Invalid value for enable-confd '$enableval'"
335
        exit 1
336
        ;;
337
    esac
338
  ]],
339
  [enable_confd=True;py_confd=True;hs_confd=False])
340
AC_SUBST(ENABLE_CONFD, $enable_confd)
341
AC_SUBST(PY_CONFD, $py_confd)
342
AC_SUBST(HS_CONFD, $hs_confd)
343

    
344
AM_CONDITIONAL([WANT_CONFD], [test x$enable_confd = xTrue])
345
AM_CONDITIONAL([PY_CONFD], [test x$py_confd = xTrue])
346
AM_CONDITIONAL([HS_CONFD], [test x$hs_confd = xTrue])
347

    
348
# --with-disk-separator=...
349
AC_ARG_WITH([disk-separator],
350
  [AS_HELP_STRING([--with-disk-separator=STRING],
351
    [Disk index separator, useful if the default of ':' is handled]
352
    [ specially by the hypervisor]
353
  )],
354
  [disk_separator="$withval"],
355
  [disk_separator=":"])
356
AC_SUBST(DISK_SEPARATOR, $disk_separator)
357

    
358
# Check common programs
359
AC_PROG_INSTALL
360
AC_PROG_LN_S
361

    
362
# Check for the ip command
363
AC_ARG_VAR(IP_PATH, [ip path])
364
AC_PATH_PROG(IP_PATH, [ip], [])
365
if test -z "$IP_PATH"
366
then
367
  AC_MSG_ERROR([ip command not found])
368
fi
369

    
370
# Check for pandoc
371
AC_ARG_VAR(PANDOC, [pandoc path])
372
AC_PATH_PROG(PANDOC, [pandoc], [])
373
if test -z "$PANDOC"
374
then
375
  AC_MSG_WARN([pandoc not found, man pages rebuild will not be possible])
376
fi
377

    
378
# Check for python-sphinx
379
AC_ARG_VAR(SPHINX, [sphinx-build path])
380
AC_PATH_PROG(SPHINX, [sphinx-build], [])
381
if test -z "$SPHINX"
382
then
383
  AC_MSG_WARN(m4_normalize([sphinx-build not found, documentation rebuild will
384
                            not be possible]))
385
fi
386

    
387
# Check for graphviz (dot)
388
AC_ARG_VAR(DOT, [dot path])
389
AC_PATH_PROG(DOT, [dot], [])
390
if test -z "$DOT"
391
then
392
  AC_MSG_WARN(m4_normalize([dot (from the graphviz suite) not found,
393
                            documentation rebuild not possible]))
394
fi
395

    
396
# Check for pylint
397
AC_ARG_VAR(PYLINT, [pylint path])
398
AC_PATH_PROG(PYLINT, [pylint], [])
399
if test -z "$PYLINT"
400
then
401
  AC_MSG_WARN([pylint not found, checking code will not be possible])
402
fi
403

    
404
# Check for pep8
405
AC_ARG_VAR(PEP8, [pep8 path])
406
AC_PATH_PROG(PEP8, [pep8], [])
407
if test -z "$PEP8"
408
then
409
  AC_MSG_WARN([pep8 not found, checking code will not be complete])
410
fi
411
AM_CONDITIONAL([HAS_PEP8], [test "$PEP8"])
412

    
413
# Check for socat
414
AC_ARG_VAR(SOCAT, [socat path])
415
AC_PATH_PROG(SOCAT, [socat], [])
416
if test -z "$SOCAT"
417
then
418
  AC_MSG_ERROR([socat not found])
419
fi
420

    
421
# Check for qemu-img
422
AC_ARG_VAR(QEMUIMG_PATH, [qemu-img path])
423
AC_PATH_PROG(QEMUIMG_PATH, [qemu-img], [])
424
if test -z "$QEMUIMG_PATH"
425
then
426
  AC_MSG_WARN([qemu-img not found, using ovfconverter will not be possible])
427
fi
428

    
429
if test "$enable_htools" != "no"; then
430

    
431
# Check for ghc
432
AC_ARG_VAR(GHC, [ghc path])
433
AC_PATH_PROG(GHC, [ghc], [])
434
if test -z "$GHC"; then
435
  if test "$enable_htools" != "check"; then
436
    AC_MSG_FAILURE([ghc not found, htools compilation will not possible])
437
  fi
438
fi
439

    
440
# Check for ghc-pkg
441
HTOOLS_MODULES=
442
AC_ARG_VAR(GHC_PKG, [ghc-pkg path])
443
AC_PATH_PROG(GHC_PKG, [ghc-pkg], [])
444
if test -z "$GHC_PKG"; then
445
  if test "$enable_htools" != "check"; then
446
    AC_MSG_FAILURE([ghc-pkg not found, htools compilation will not be possible])
447
  fi
448
else
449
  # check for modules
450
  AC_MSG_NOTICE([checking for required haskell modules])
451
  HTOOLS_NOCURL=-DNO_CURL
452
  if test "$enable_htools_rapi" != "no"; then
453
    AC_MSG_CHECKING([curl])
454
    GHC_PKG_CURL=$($GHC_PKG latest curl)
455
    if test -z "$GHC_PKG_CURL"; then
456
      if test "$enable_htools_rapi" = "check"; then
457
        AC_MSG_WARN(m4_normalize([The curl library not found, htools will be
458
                                  compiled without RAPI support]))
459
      else
460
        AC_MSG_FAILURE(m4_normalize([The curl library was not found, but it has
461
                                     been requested]))
462
      fi
463
    else
464
      HTOOLS_NOCURL=
465
    fi
466
    AC_MSG_RESULT($GHC_PKG_CURL)
467
  fi
468
  AC_SUBST(GHC_PKG_CURL)
469
  AC_SUBST(HTOOLS_NOCURL)
470
  AC_MSG_CHECKING([parallel])
471
  GHC_PKG_PARALLEL=$($GHC_PKG --simple-output list 'parallel-3.*')
472
  if test -n "$GHC_PKG_PARALLEL"
473
  then
474
    HTOOLS_PARALLEL3=-DPARALLEL3
475
  else
476
    GHC_PKG_PARALLEL=$($GHC_PKG --simple-output list 'parallel-2.*')
477
  fi
478
  if test -z "$GHC_PKG_PARALLEL"
479
  then
480
    GHC_PKG_PARALLEL=$($GHC_PKG --simple-output list 'parallel-1.*')
481
  fi
482
  AC_SUBST(GHC_PKG_PARALLEL)
483
  AC_SUBST(HTOOLS_PARALLEL3)
484
  AC_MSG_RESULT($GHC_PKG_PARALLEL)
485
  AC_MSG_CHECKING([json])
486
  GHC_PKG_JSON=$($GHC_PKG latest json)
487
  AC_MSG_RESULT($GHC_PKG_JSON)
488
  AC_MSG_CHECKING([network])
489
  GHC_PKG_NETWORK=$($GHC_PKG latest network)
490
  AC_MSG_RESULT($GHC_PKG_NETWORK)
491
  AC_MSG_CHECKING([QuickCheck 2.x])
492
  GHC_PKG_QUICKCHECK=$($GHC_PKG --simple-output list 'QuickCheck-2.*')
493
  AC_MSG_RESULT($GHC_PKG_QUICKCHECK)
494
  if test -z "$GHC_PKG_PARALLEL" || test -z "$GHC_PKG_JSON" || \
495
     test -z "$GHC_PKG_NETWORK"; then
496
    if test "$enable_htools" != "check"; then
497
      AC_MSG_FAILURE(m4_normalize([Required Haskell modules not found, htools
498
                                   compilation disabled]))
499
    fi
500
  else
501
    # we leave the other modules to be auto-selected
502
    HTOOLS_MODULES="-package $GHC_PKG_PARALLEL"
503
  fi
504
  if test -z "$GHC_PKG_QUICKCHECK"; then
505
     AC_MSG_WARN(m4_normalize([The QuickCheck 2.x module was not found,
506
                               you won't be able to run Haskell unittests]))
507
  fi
508
fi
509
AC_SUBST(HTOOLS_MODULES)
510
AC_SUBST(GHC_PKG_QUICKCHECK)
511

    
512
if test "$enable_htools" != "no"; then
513
  if test -z "$GHC" || test -z "$HTOOLS_MODULES"; then
514
    AC_MSG_WARN(m4_normalize([Haskell compiler/required libraries not found,
515
                              htools compilation disabled]))
516
  else
517
    HTOOLS=yes
518
  fi
519
fi
520
AC_SUBST(HTOOLS)
521

    
522
# Check for HsColour
523
HTOOLS_APIDOC=no
524
AC_ARG_VAR(HSCOLOUR, [HsColour path])
525
AC_PATH_PROG(HSCOLOUR, [HsColour], [])
526
if test -z "$HSCOLOUR"; then
527
  AC_MSG_WARN(m4_normalize([HsColour not found, htools API documentation will
528
                            not be generated]))
529
fi
530

    
531
# Check for haddock
532
AC_ARG_VAR(HADDOCK, [haddock path])
533
AC_PATH_PROG(HADDOCK, [haddock], [])
534
if test -z "$HADDOCK"; then
535
  AC_MSG_WARN(m4_normalize([haddock not found, htools API documentation will
536
                            not be generated]))
537
fi
538
if test "$HADDOCK" && test "$HSCOLOUR"; then
539
  HTOOLS_APIDOC=yes
540
fi
541
AC_SUBST(HTOOLS_APIDOC)
542

    
543
# Check for hlint
544
HLINT=no
545
AC_ARG_VAR(HLINT, [hlint path])
546
AC_PATH_PROG(HLINT, [hlint], [])
547
if test -z "$HLINT"; then
548
  AC_MSG_WARN([hlint not found, checking code will not be possible])
549
fi
550

    
551
fi # end if enable_htools, define automake conditions
552

    
553
if test "$HTOOLS" != "yes" && test "$HS_CONFD" = "True"; then
554
   AC_MSG_ERROR(m4_normalize([cannot enable Haskell version of ganeti-confd if
555
                              htools support is not enabled]))
556
fi
557

    
558
AM_CONDITIONAL([WANT_HTOOLS], [test x$HTOOLS = xyes])
559
AM_CONDITIONAL([WANT_HTOOLSTESTS], [test "x$GHC_PKG_QUICKCHECK" != x])
560
AM_CONDITIONAL([WANT_HTOOLSAPIDOC], [test x$HTOOLS_APIDOC = xyes])
561
AM_CONDITIONAL([HAS_HLINT], [test "$HLINT"])
562

    
563
# Check for fakeroot
564
AC_ARG_VAR(FAKEROOT_PATH, [fakeroot path])
565
AC_PATH_PROG(FAKEROOT_PATH, [fakeroot], [])
566
if test -z "$FAKEROOT_PATH"; then
567
  AC_MSG_WARN(m4_normalize([fakeroot not found, tests that must run as root
568
                            will not be executed]))
569
fi
570
AM_CONDITIONAL([HAS_FAKEROOT], [test "x$FAKEROOT_PATH" != x])
571

    
572
SOCAT_USE_ESCAPE=
573
AC_ARG_ENABLE([socat-escape],
574
  [AS_HELP_STRING([--enable-socat-escape],
575
    [use escape functionality available in socat >= 1.7 (default: detect
576
     automatically)])],
577
  [[if test "$enableval" = yes; then
578
      SOCAT_USE_ESCAPE=True
579
    else
580
      SOCAT_USE_ESCAPE=False
581
    fi
582
  ]])
583

    
584
if test -z "$SOCAT_USE_ESCAPE"
585
then
586
  if $SOCAT -hh | grep -w -q escape; then
587
    SOCAT_USE_ESCAPE=True
588
  else
589
    SOCAT_USE_ESCAPE=False
590
  fi
591
fi
592

    
593
AC_SUBST(SOCAT_USE_ESCAPE)
594

    
595
SOCAT_USE_COMPRESS=
596
AC_ARG_ENABLE([socat-compress],
597
  [AS_HELP_STRING([--enable-socat-compress],
598
    [use OpenSSL compression option available in patched socat builds
599
     (see INSTALL for details; default: detect automatically)])],
600
  [[if test "$enableval" = yes; then
601
      SOCAT_USE_COMPRESS=True
602
    else
603
      SOCAT_USE_COMPRESS=False
604
    fi
605
  ]])
606

    
607
if test -z "$SOCAT_USE_COMPRESS"
608
then
609
  if $SOCAT -hhh | grep -w -q openssl-compress; then
610
    SOCAT_USE_COMPRESS=True
611
  else
612
    SOCAT_USE_COMPRESS=False
613
  fi
614
fi
615

    
616
AC_SUBST(SOCAT_USE_COMPRESS)
617

    
618
if man --help | grep -q -e --warnings
619
then
620
  MAN_HAS_WARNINGS=1
621
else
622
  MAN_HAS_WARNINGS=
623
  AC_MSG_WARN(m4_normalize([man does not support --warnings, man page checks
624
                            will not be possible]))
625
fi
626

    
627
AC_SUBST(MAN_HAS_WARNINGS)
628

    
629
# Check for Python
630
AM_PATH_PYTHON(2.4)
631

    
632
AC_PYTHON_MODULE(OpenSSL, t)
633
AC_PYTHON_MODULE(simplejson, t)
634
AC_PYTHON_MODULE(pyparsing, t)
635
AC_PYTHON_MODULE(pyinotify, t)
636
AC_PYTHON_MODULE(pycurl, t)
637
AC_PYTHON_MODULE(affinity)
638

    
639
# This is optional but then we've limited functionality
640
AC_PYTHON_MODULE(paramiko)
641
if test "$HAVE_PYMOD_PARAMIKO" = "no"; then
642
  AC_MSG_WARN(m4_normalize([You do not have Paramiko installed. While this is
643
                            optional you have to configure SSH and the node
644
                            daemon on the joining nodes yourself.]))
645
fi
646

    
647
AC_CONFIG_FILES([ Makefile ])
648

    
649
AC_OUTPUT