Statistics
| Branch: | Tag: | Revision:

root / configure.ac @ 3af1359f

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