Statistics
| Branch: | Tag: | Revision:

root / configure.ac @ 553bd93f

History | View | Annotate | Download (7 kB)

1
# Configure script for Ganeti
2
m4_define([gnt_version_major], [2])
3
m4_define([gnt_version_minor], [1])
4
m4_define([gnt_version_revision], [0])
5
m4_define([gnt_version_suffix], [~rc5])
6
m4_define([gnt_version_full],
7
          m4_format([%d.%d.%d%s],
8
                    gnt_version_major, gnt_version_minor,
9
                    gnt_version_revision, gnt_version_suffix))
10

    
11
AC_PREREQ(2.59)
12
AC_INIT(ganeti, gnt_version_full, ganeti@googlegroups.com)
13
AC_CONFIG_AUX_DIR(autotools)
14
AC_CONFIG_SRCDIR(configure)
15
AM_INIT_AUTOMAKE([1.9 foreign tar-ustar -Wall -Wno-portability])
16

    
17
AC_SUBST([VERSION_MAJOR], gnt_version_major)
18
AC_SUBST([VERSION_MINOR], gnt_version_minor)
19
AC_SUBST([VERSION_REVISION], gnt_version_revision)
20
AC_SUBST([VERSION_SUFFIX], gnt_version_suffix)
21
AC_SUBST([VERSION_FULL], gnt_version_full)
22

    
23
# --with-ssh-initscript=...
24
AC_ARG_WITH([ssh-initscript],
25
  [AS_HELP_STRING([--with-ssh-initscript=SCRIPT],
26
    [SSH init script to use (default is /etc/init.d/ssh)]
27
  )],
28
  [ssh_initd_script="$withval"],
29
  [ssh_initd_script="/etc/init.d/ssh"])
30
AC_SUBST(SSH_INITD_SCRIPT, $ssh_initd_script)
31

    
32
# --with-export-dir=...
33
AC_ARG_WITH([export-dir],
34
  [AS_HELP_STRING([--with-export-dir=DIR],
35
    [directory to use by default for instance image]
36
    [ exports (default is /srv/ganeti/export)]
37
  )],
38
  [export_dir="$withval"],
39
  [export_dir="/srv/ganeti/export"])
40
AC_SUBST(EXPORT_DIR, $export_dir)
41

    
42
# --with-ssh-config-dir=...
43
AC_ARG_WITH([ssh-config-dir],
44
  [AS_HELP_STRING([--with-ssh-config-dir=DIR],
45
    [ directory with ssh host keys ]
46
    [ (default is /etc/ssh)]
47
  )],
48
  [ssh_config_dir="$withval"],
49
  [ssh_config_dir="/etc/ssh"])
50
AC_SUBST(SSH_CONFIG_DIR, $ssh_config_dir)
51

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

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

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

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

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

    
101
# --with-file-storage-dir=...
102
AC_ARG_WITH([file-storage-dir],
103
  [AS_HELP_STRING([--with-file-storage-dir=PATH],
104
    [directory to store files for file-based backend]
105
    [ (default is /srv/ganeti/file-storage)]
106
  )],
107
  [file_storage_dir="$withval"],
108
  [file_storage_dir="/srv/ganeti/file-storage"])
109
AC_SUBST(FILE_STORAGE_DIR, $file_storage_dir)
110

    
111
# --with-kvm-path=...
112
AC_ARG_WITH([kvm-path],
113
  [AS_HELP_STRING([--with-kvm-path=PATH],
114
    [absolute path to the kvm binary]
115
    [ (default is /usr/bin/kvm)]
116
  )],
117
  [kvm_path="$withval"],
118
  [kvm_path="/usr/bin/kvm"])
119
AC_SUBST(KVM_PATH, $kvm_path)
120

    
121
# --with-lvm-stripecount=...
122
AC_ARG_WITH([lvm-stripecount],
123
  [AS_HELP_STRING([--with-lvm-stripecount=NUM],
124
    [the number of stripes to use for LVM volumes]
125
    [ (default is 1)]
126
  )],
127
  [lvm_stripecount="$withval"],
128
  [lvm_stripecount="1"])
129
AC_SUBST(LVM_STRIPECOUNT, $lvm_stripecount)
130

    
131
# --enable-drbd-barriers
132
AC_ARG_ENABLE([drbd-barriers],
133
  [AS_HELP_STRING([--enable-drbd-barriers],
134
    [enable the DRBD barrier functionality (>= 8.0.12) (default: enabled)])],
135
  [[if test "$enableval" != no; then
136
      DRBD_BARRIERS=True
137
    else
138
      DRBD_BARRIERS=False
139
    fi
140
  ]],
141
  [DRBD_BARRIERS=True])
142
AC_SUBST(DRBD_BARRIERS, $DRBD_BARRIERS)
143

    
144
# --enable-syslog[=no/yes/only]
145
AC_ARG_ENABLE([syslog],
146
  [AS_HELP_STRING([--enable-syslog],
147
    [enable use of syslog (default: disabled), one of no/yes/only])],
148
  [[case "$enableval" in
149
      no)
150
        SYSLOG=no
151
        ;;
152
      yes)
153
        SYSLOG=yes
154
        ;;
155
      only)
156
        SYSLOG=only
157
        ;;
158
      *)
159
        SYSLOG=
160
        ;;
161
    esac
162
  ]],
163
  [SYSLOG=no])
164

    
165
if test -z "$SYSLOG"
166
then
167
  AC_MSG_ERROR([invalid value for syslog, choose one of no/yes/only])
168
fi
169
AC_SUBST(SYSLOG_USAGE, $SYSLOG)
170

    
171
# Check common programs
172
AC_PROG_INSTALL
173
AC_PROG_LN_S
174

    
175
# Check for docbook programs
176
AC_ARG_VAR(DOCBOOK2MAN, [docbook2man path])
177
AC_PATH_PROG(DOCBOOK2MAN, [docbook2man], [])
178
if test -z "$DOCBOOK2MAN"
179
then
180
  AC_MSG_WARN([docbook2man not found, man pages rebuild will not be possible])
181
fi
182

    
183
AC_ARG_VAR(DOCBOOK2HTML, [docbook2html path])
184
AC_PATH_PROG(DOCBOOK2HTML, [docbook2html], [])
185
if test -z "$DOCBOOK2HTML"
186
then
187
  AC_MSG_WARN([docbook2html not found, man pages rebuild will not be possible])
188
fi
189

    
190
# Check for python-sphinx
191
AC_ARG_VAR(SPHINX, [sphinx-build path])
192
AC_PATH_PROG(SPHINX, [sphinx-build], [])
193
if test -z "$SPHINX"
194
then
195
  AC_MSG_WARN([sphinx-build not found, documentation rebuild will not be possible])
196
fi
197

    
198
# Check for graphviz (dot)
199
AC_ARG_VAR(DOT, [dot path])
200
AC_PATH_PROG(DOT, [dot], [])
201
if test -z "$DOT"
202
then
203
  AC_MSG_WARN([dot (from the graphviz suite) not found, documentation rebuild not possible])
204
fi
205

    
206
# Check for pylint
207
AC_ARG_VAR(PYLINT, [pylint path])
208
AC_PATH_PROG(PYLINT, [pylint], [])
209
if test -z "$PYLINT"
210
then
211
  AC_MSG_WARN([pylint not found, checking code will not be possible])
212
fi
213

    
214
# Check for socat
215
AC_ARG_VAR(SOCAT, [socat path])
216
AC_PATH_PROG(SOCAT, [socat], [])
217
if test -z "$SOCAT"
218
then
219
  AC_MSG_ERROR([socat not found])
220
fi
221

    
222
SOCAT_USE_ESCAPE=
223
AC_ARG_ENABLE([socat-escape],
224
  [AS_HELP_STRING([--enable-socat-escape],
225
    [use escape functionality available in socat >= 1.7 (default: detect
226
     automatically)])],
227
  [[if test "$enableval" = yes; then
228
      SOCAT_USE_ESCAPE=True
229
    else
230
      SOCAT_USE_ESCAPE=False
231
    fi
232
  ]])
233

    
234
if test -z "$SOCAT_USE_ESCAPE"
235
then
236
  if $SOCAT -hh | grep -w -q escape; then
237
    SOCAT_USE_ESCAPE=True
238
  else
239
    SOCAT_USE_ESCAPE=False
240
  fi
241
fi
242

    
243
AC_SUBST(SOCAT_USE_ESCAPE)
244

    
245
# Check for Python
246
AM_PATH_PYTHON(2.4)
247

    
248
AC_PYTHON_MODULE(OpenSSL, t)
249
AC_PYTHON_MODULE(simplejson, t)
250
AC_PYTHON_MODULE(pyparsing, t)
251
AC_PYTHON_MODULE(pyinotify, t)
252

    
253
AC_CONFIG_FILES([ Makefile ])
254

    
255
AC_OUTPUT