Statistics
| Branch: | Tag: | Revision:

root / configure.ac @ b926bd98

History | View | Annotate | Download (5.1 kB)

1 a5d17f9f Michael Hanselmann
# Configure script for Ganeti
2 5e29d733 Michael Hanselmann
m4_define([gnt_version_major], [2])
3 5e29d733 Michael Hanselmann
m4_define([gnt_version_minor], [0])
4 a618b9ee Michael Hanselmann
m4_define([gnt_version_revision], [0])
5 b926bd98 Iustin Pop
m4_define([gnt_version_suffix], [~rc5])
6 d5fd92ed Michael Hanselmann
m4_define([gnt_version_full],
7 d5fd92ed Michael Hanselmann
          m4_format([%d.%d.%d%s],
8 d5fd92ed Michael Hanselmann
                    gnt_version_major, gnt_version_minor,
9 d5fd92ed Michael Hanselmann
                    gnt_version_revision, gnt_version_suffix))
10 d5fd92ed Michael Hanselmann
11 a8083063 Iustin Pop
AC_PREREQ(2.59)
12 d5fd92ed Michael Hanselmann
AC_INIT(ganeti, gnt_version_full, ganeti@googlegroups.com)
13 16ebf761 Iustin Pop
AC_CONFIG_AUX_DIR(autotools)
14 9ff7e35c Michael Hanselmann
AC_CONFIG_SRCDIR(configure)
15 e70f1b7c Michael Hanselmann
AM_INIT_AUTOMAKE([1.9 foreign tar-ustar -Wall -Wno-portability])
16 a8083063 Iustin Pop
17 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_MAJOR], gnt_version_major)
18 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_MINOR], gnt_version_minor)
19 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_REVISION], gnt_version_revision)
20 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_SUFFIX], gnt_version_suffix)
21 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_FULL], gnt_version_full)
22 d5fd92ed Michael Hanselmann
23 c6b8baba Michael Hanselmann
# --with-ssh-initscript=...
24 c6b8baba Michael Hanselmann
AC_ARG_WITH([ssh-initscript],
25 8f106515 Guido Trotter
  [AS_HELP_STRING([--with-ssh-initscript=SCRIPT],
26 c6b8baba Michael Hanselmann
    [SSH init script to use (default is /etc/init.d/ssh)]
27 c6b8baba Michael Hanselmann
  )],
28 f491c3a8 Michael Hanselmann
  [ssh_initd_script="$withval"],
29 f491c3a8 Michael Hanselmann
  [ssh_initd_script="/etc/init.d/ssh"])
30 f491c3a8 Michael Hanselmann
AC_SUBST(SSH_INITD_SCRIPT, $ssh_initd_script)
31 c6b8baba Michael Hanselmann
32 68dccc07 Guido Trotter
# --with-export-dir=...
33 68dccc07 Guido Trotter
AC_ARG_WITH([export-dir],
34 68dccc07 Guido Trotter
  [AS_HELP_STRING([--with-export-dir=DIR],
35 f00b46bc Michael Hanselmann
    [directory to use by default for instance image]
36 f00b46bc Michael Hanselmann
    [ exports (default is /srv/ganeti/export)]
37 68dccc07 Guido Trotter
  )],
38 68dccc07 Guido Trotter
  [export_dir="$withval"],
39 68dccc07 Guido Trotter
  [export_dir="/srv/ganeti/export"])
40 68dccc07 Guido Trotter
AC_SUBST(EXPORT_DIR, $export_dir)
41 68dccc07 Guido Trotter
42 7c3d51d4 Guido Trotter
# --with-os-search-path=...
43 7c3d51d4 Guido Trotter
# do a bit of black sed magic to for quoting of the strings in the list
44 7c3d51d4 Guido Trotter
AC_ARG_WITH([os-search-path],
45 7c3d51d4 Guido Trotter
  [AS_HELP_STRING([--with-os-search-path=LIST],
46 f00b46bc Michael Hanselmann
    [comma separated list of directories to]
47 f00b46bc Michael Hanselmann
    [ search for OS images (default is /srv/ganeti/os)]
48 7c3d51d4 Guido Trotter
  )],
49 7c3d51d4 Guido Trotter
  [os_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
50 7c3d51d4 Guido Trotter
  [os_search_path="'/srv/ganeti/os'"])
51 7c3d51d4 Guido Trotter
AC_SUBST(OS_SEARCH_PATH, $os_search_path)
52 7c3d51d4 Guido Trotter
53 298fe380 Iustin Pop
# --with-iallocator-search-path=...
54 298fe380 Iustin Pop
# do a bit of black sed magic to for quoting of the strings in the list
55 298fe380 Iustin Pop
AC_ARG_WITH([iallocator-search-path],
56 298fe380 Iustin Pop
  [AS_HELP_STRING([--with-iallocator-search-path=LIST],
57 298fe380 Iustin Pop
    [comma separated list of directories to]
58 298fe380 Iustin Pop
    [ search for instance allocators (default is $libdir/ganeti/iallocators)]
59 298fe380 Iustin Pop
  )],
60 298fe380 Iustin Pop
  [iallocator_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
61 298fe380 Iustin Pop
  [iallocator_search_path="'$libdir/$PACKAGE_NAME/iallocators'"])
62 298fe380 Iustin Pop
AC_SUBST(IALLOCATOR_SEARCH_PATH, $iallocator_search_path)
63 298fe380 Iustin Pop
64 f00b46bc Michael Hanselmann
# --with-xen-kernel=...
65 f00b46bc Michael Hanselmann
AC_ARG_WITH([xen-kernel],
66 f00b46bc Michael Hanselmann
  [AS_HELP_STRING([--with-xen-kernel=PATH],
67 f00b46bc Michael Hanselmann
    [DomU kernel image for Xen hypervisor (default is /boot/vmlinuz-2.6-xenU)]
68 f00b46bc Michael Hanselmann
  )],
69 f00b46bc Michael Hanselmann
  [xen_kernel="$withval"],
70 f00b46bc Michael Hanselmann
  [xen_kernel="/boot/vmlinuz-2.6-xenU"])
71 f00b46bc Michael Hanselmann
AC_SUBST(XEN_KERNEL, $xen_kernel)
72 f00b46bc Michael Hanselmann
73 f00b46bc Michael Hanselmann
# --with-xen-initrd=...
74 f00b46bc Michael Hanselmann
AC_ARG_WITH([xen-initrd],
75 f00b46bc Michael Hanselmann
  [AS_HELP_STRING([--with-xen-initrd=PATH],
76 f00b46bc Michael Hanselmann
    [DomU initrd image for Xen hypervisor (default is /boot/initrd-2.6-xenU)]
77 f00b46bc Michael Hanselmann
  )],
78 f00b46bc Michael Hanselmann
  [xen_initrd="$withval"],
79 f00b46bc Michael Hanselmann
  [xen_initrd="/boot/initrd-2.6-xenU"])
80 f00b46bc Michael Hanselmann
AC_SUBST(XEN_INITRD, $xen_initrd)
81 f00b46bc Michael Hanselmann
82 22c734bc Manuel Franceschini
# --with-file-storage-dir=...
83 22c734bc Manuel Franceschini
AC_ARG_WITH([file-storage-dir],
84 22c734bc Manuel Franceschini
  [AS_HELP_STRING([--with-file-storage-dir=PATH],
85 22c734bc Manuel Franceschini
    [directory to store files for file-based backend]
86 22c734bc Manuel Franceschini
    [ (default is /srv/ganeti/file-storage)]
87 22c734bc Manuel Franceschini
  )],
88 22c734bc Manuel Franceschini
  [file_storage_dir="$withval"],
89 22c734bc Manuel Franceschini
  [file_storage_dir="/srv/ganeti/file-storage"])
90 22c734bc Manuel Franceschini
AC_SUBST(FILE_STORAGE_DIR, $file_storage_dir)
91 22c734bc Manuel Franceschini
92 7e2c5b9e Guido Trotter
# --with-kvm-path=...
93 7e2c5b9e Guido Trotter
AC_ARG_WITH([kvm-path],
94 7e2c5b9e Guido Trotter
  [AS_HELP_STRING([--with-kvm-path=PATH],
95 7e2c5b9e Guido Trotter
    [absolute path to the kvm binary]
96 7e2c5b9e Guido Trotter
    [ (default is /usr/bin/kvm)]
97 7e2c5b9e Guido Trotter
  )],
98 7e2c5b9e Guido Trotter
  [kvm_path="$withval"],
99 7e2c5b9e Guido Trotter
  [kvm_path="/usr/bin/kvm"])
100 7e2c5b9e Guido Trotter
AC_SUBST(KVM_PATH, $kvm_path)
101 7e2c5b9e Guido Trotter
102 30e42c4e Guido Trotter
# --with-kvm-migration-port=...
103 30e42c4e Guido Trotter
AC_ARG_WITH([kvm-migration-port],
104 30e42c4e Guido Trotter
  [AS_HELP_STRING([--with-kvm-migration-port=PORT],
105 30e42c4e Guido Trotter
    [tcp port used for kvm instance live migration]
106 30e42c4e Guido Trotter
    [ (default is 8102)]
107 30e42c4e Guido Trotter
  )],
108 30e42c4e Guido Trotter
  [kvm_migration_port="$withval"],
109 30e42c4e Guido Trotter
  [kvm_migration_port="8102"])
110 30e42c4e Guido Trotter
AC_SUBST(KVM_MIGRATION_PORT, $kvm_migration_port)
111 30e42c4e Guido Trotter
112 14aa53cb Guido Trotter
# --with-socat-path=...
113 14aa53cb Guido Trotter
AC_ARG_WITH([socat-path],
114 14aa53cb Guido Trotter
  [AS_HELP_STRING([--with-socat-path=PATH],
115 14aa53cb Guido Trotter
    [absolute path to the socat binary]
116 14aa53cb Guido Trotter
    [ (default is /usr/bin/socat)]
117 14aa53cb Guido Trotter
  )],
118 14aa53cb Guido Trotter
  [socat_path="$withval"],
119 14aa53cb Guido Trotter
  [socat_path="/usr/bin/socat"])
120 14aa53cb Guido Trotter
AC_SUBST(SOCAT_PATH, $socat_path)
121 14aa53cb Guido Trotter
122 a5d17f9f Michael Hanselmann
# Check common programs
123 a8083063 Iustin Pop
AC_PROG_INSTALL
124 9ff7e35c Michael Hanselmann
AC_PROG_LN_S
125 a8083063 Iustin Pop
126 1efbe18e Michael Hanselmann
# Check for docbook programs
127 1efbe18e Michael Hanselmann
AC_ARG_VAR(DOCBOOK2MAN, [docbook2man path])
128 1efbe18e Michael Hanselmann
AC_PATH_PROG(DOCBOOK2MAN, [docbook2man], [])
129 1efbe18e Michael Hanselmann
if test -z "$DOCBOOK2MAN"
130 1efbe18e Michael Hanselmann
then
131 2ab2b9f5 Iustin Pop
  AC_MSG_WARN([docbook2man not found, man pages rebuild will not be possible])
132 1efbe18e Michael Hanselmann
fi
133 1efbe18e Michael Hanselmann
134 1efbe18e Michael Hanselmann
AC_ARG_VAR(DOCBOOK2HTML, [docbook2html path])
135 1efbe18e Michael Hanselmann
AC_PATH_PROG(DOCBOOK2HTML, [docbook2html], [])
136 1efbe18e Michael Hanselmann
if test -z "$DOCBOOK2HTML"
137 1efbe18e Michael Hanselmann
then
138 2ab2b9f5 Iustin Pop
  AC_MSG_WARN([docbook2html not found, man pages rebuild will not be possible])
139 1efbe18e Michael Hanselmann
fi
140 1efbe18e Michael Hanselmann
141 f05c99f3 Michael Hanselmann
# Check for rst programs
142 f05c99f3 Michael Hanselmann
AC_ARG_VAR(RST2HTML, [rst2html path])
143 f05c99f3 Michael Hanselmann
AC_PATH_PROG(RST2HTML, [rst2html], [])
144 f05c99f3 Michael Hanselmann
if test -z "$RST2HTML"
145 f05c99f3 Michael Hanselmann
then
146 2ab2b9f5 Iustin Pop
  AC_MSG_WARN([rst2html not found, documentation rebuild will not be possible])
147 f05c99f3 Michael Hanselmann
fi
148 f05c99f3 Michael Hanselmann
149 f86e82ef Iustin Pop
# Check for graphviz (dot)
150 f86e82ef Iustin Pop
AC_ARG_VAR(DOT, [dot path])
151 f86e82ef Iustin Pop
AC_PATH_PROG(DOT, [dot], [])
152 f86e82ef Iustin Pop
if test -z "$DOT"
153 f86e82ef Iustin Pop
then
154 2ab2b9f5 Iustin Pop
  AC_MSG_WARN([dot (from the graphviz suite) not found, documentation rebuild not possible])
155 f86e82ef Iustin Pop
fi
156 f86e82ef Iustin Pop
157 a5d17f9f Michael Hanselmann
# Check for Python
158 a8083063 Iustin Pop
AM_PATH_PYTHON(2.4)
159 a8083063 Iustin Pop
160 6e06b36c Iustin Pop
AC_PYTHON_MODULE(OpenSSL, t)
161 6e06b36c Iustin Pop
AC_PYTHON_MODULE(simplejson, t)
162 6e06b36c Iustin Pop
AC_PYTHON_MODULE(pyparsing, t)
163 6e06b36c Iustin Pop
164 e8230860 Michael Hanselmann
AC_CONFIG_FILES([ Makefile ])
165 3571f686 Iustin Pop
166 a8083063 Iustin Pop
AC_OUTPUT