Statistics
| Branch: | Tag: | Revision:

root / configure.ac @ 71f35985

History | View | Annotate | Download (23.5 kB)

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