Statistics
| Branch: | Tag: | Revision:

root / configure.ac @ e70f1b7c

History | View | Annotate | Download (3.9 kB)

1 a5d17f9f Michael Hanselmann
# Configure script for Ganeti
2 d5fd92ed Michael Hanselmann
m4_define([gnt_version_major], [1])
3 a618b9ee Michael Hanselmann
m4_define([gnt_version_minor], [3])
4 a618b9ee Michael Hanselmann
m4_define([gnt_version_revision], [0])
5 a618b9ee Michael Hanselmann
m4_define([gnt_version_suffix], [~alpha1])
6 d5fd92ed Michael Hanselmann
m4_define([gnt_version_full],
7 d5fd92ed Michael Hanselmann
          m4_format([%d.%d.%d%s],
8 d5fd92ed Michael Hanselmann
                    gnt_version_major, gnt_version_minor,
9 d5fd92ed Michael Hanselmann
                    gnt_version_revision, gnt_version_suffix))
10 d5fd92ed Michael Hanselmann
11 a8083063 Iustin Pop
AC_PREREQ(2.59)
12 d5fd92ed Michael Hanselmann
AC_INIT(ganeti, gnt_version_full, ganeti@googlegroups.com)
13 16ebf761 Iustin Pop
AC_CONFIG_AUX_DIR(autotools)
14 9ff7e35c Michael Hanselmann
AC_CONFIG_SRCDIR(configure)
15 e70f1b7c Michael Hanselmann
AM_INIT_AUTOMAKE([1.9 foreign tar-ustar -Wall -Wno-portability])
16 a8083063 Iustin Pop
17 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_MAJOR], gnt_version_major)
18 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_MINOR], gnt_version_minor)
19 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_REVISION], gnt_version_revision)
20 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_SUFFIX], gnt_version_suffix)
21 d5fd92ed Michael Hanselmann
AC_SUBST([VERSION_FULL], gnt_version_full)
22 d5fd92ed Michael Hanselmann
23 c6b8baba Michael Hanselmann
# --with-ssh-initscript=...
24 c6b8baba Michael Hanselmann
AC_ARG_WITH([ssh-initscript],
25 8f106515 Guido Trotter
  [AS_HELP_STRING([--with-ssh-initscript=SCRIPT],
26 c6b8baba Michael Hanselmann
    [SSH init script to use (default is /etc/init.d/ssh)]
27 c6b8baba Michael Hanselmann
  )],
28 f491c3a8 Michael Hanselmann
  [ssh_initd_script="$withval"],
29 f491c3a8 Michael Hanselmann
  [ssh_initd_script="/etc/init.d/ssh"])
30 f491c3a8 Michael Hanselmann
AC_SUBST(SSH_INITD_SCRIPT, $ssh_initd_script)
31 c6b8baba Michael Hanselmann
32 68dccc07 Guido Trotter
# --with-export-dir=...
33 68dccc07 Guido Trotter
AC_ARG_WITH([export-dir],
34 68dccc07 Guido Trotter
  [AS_HELP_STRING([--with-export-dir=DIR],
35 f00b46bc Michael Hanselmann
    [directory to use by default for instance image]
36 f00b46bc Michael Hanselmann
    [ exports (default is /srv/ganeti/export)]
37 68dccc07 Guido Trotter
  )],
38 68dccc07 Guido Trotter
  [export_dir="$withval"],
39 68dccc07 Guido Trotter
  [export_dir="/srv/ganeti/export"])
40 68dccc07 Guido Trotter
AC_SUBST(EXPORT_DIR, $export_dir)
41 68dccc07 Guido Trotter
42 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 a5d17f9f Michael Hanselmann
# Check common programs
93 a8083063 Iustin Pop
AC_PROG_INSTALL
94 9ff7e35c Michael Hanselmann
AC_PROG_LN_S
95 a8083063 Iustin Pop
96 a5d17f9f Michael Hanselmann
# Check for Python
97 a8083063 Iustin Pop
AM_PATH_PYTHON(2.4)
98 a8083063 Iustin Pop
99 6e06b36c Iustin Pop
AC_PYTHON_MODULE(twisted.internet, t)
100 6e06b36c Iustin Pop
AC_PYTHON_MODULE(twisted.cred, t)
101 6e06b36c Iustin Pop
AC_PYTHON_MODULE(twisted.spread, t)
102 6e06b36c Iustin Pop
AC_PYTHON_MODULE(OpenSSL, t)
103 6e06b36c Iustin Pop
AC_PYTHON_MODULE(simplejson, t)
104 6e06b36c Iustin Pop
AC_PYTHON_MODULE(pyparsing, t)
105 6e06b36c Iustin Pop
106 a5d17f9f Michael Hanselmann
# Check for docbook2man
107 a5d17f9f Michael Hanselmann
found_docbook2man=
108 a5d17f9f Michael Hanselmann
AC_CHECK_PROG(found_docbook2man, [docbook2man], [yes])
109 a5d17f9f Michael Hanselmann
if test "$found_docbook2man" != "yes"
110 a5d17f9f Michael Hanselmann
then
111 a5d17f9f Michael Hanselmann
  AC_MSG_WARN([docbook2man not found.])
112 a5d17f9f Michael Hanselmann
fi
113 a8083063 Iustin Pop
114 2ec08468 Michael Hanselmann
AC_CONFIG_FILES([
115 2ec08468 Michael Hanselmann
  Makefile
116 2ec08468 Michael Hanselmann
  daemons/Makefile
117 94f3875d Michael Hanselmann
  devel/Makefile
118 2ec08468 Michael Hanselmann
  doc/Makefile
119 2ec08468 Michael Hanselmann
  doc/examples/Makefile
120 2ec08468 Michael Hanselmann
  lib/Makefile
121 65a6f9b7 Michael Hanselmann
  lib/hypervisor/Makefile
122 2ec08468 Michael Hanselmann
  man/Makefile
123 44c23fa6 Michael Hanselmann
  qa/Makefile
124 663ed0ce Michael Hanselmann
  qa/hooks/Makefile
125 2ec08468 Michael Hanselmann
  scripts/Makefile
126 4e5e8bfc Michael Hanselmann
  test/Makefile
127 2ec08468 Michael Hanselmann
  tools/Makefile
128 2ec08468 Michael Hanselmann
])
129 3571f686 Iustin Pop
130 a8083063 Iustin Pop
AC_OUTPUT