Statistics
| Branch: | Tag: | Revision:

root / configure.ac @ fb7caa2c

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