This repository has been archived by the owner on May 3, 2019. It is now read-only.
forked from osuosl/ganeti-instance-image
-
Notifications
You must be signed in to change notification settings - Fork 2
/
configure.ac
74 lines (55 loc) · 2.24 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
AC_PREREQ(2.59)
AC_INIT(ganeti-instance-image, 0.6, [email protected])
AC_CONFIG_AUX_DIR(autotools)
AC_CONFIG_SRCDIR(configure)
AM_INIT_AUTOMAKE([1.9 foreign tar-ustar -Wall -Wno-portability])
# --with-os-dir=...
AC_ARG_WITH([os-dir],
[AS_HELP_STRING([--with-os-dir=DIR],
[top-level OS directory under which to install]
[ [DATADIR/ganeti/os]]
)],
[os_dir="$withval"],
[os_dir="$datadir/ganeti/os"])
AC_SUBST(OS_DIR, $os_dir)
# --with-default-dir=...
AC_ARG_WITH([default-dir],
[AS_HELP_STRING([--with-default-dir=DIR],
[top-level default config directory under which to install]
[ [SYSCONFDIR/default]]
)],
[default_dir="$withval"],
[default_dir="$sysconfdir/default"])
AC_SUBST(DEFAULT_DIR, $default_dir)
# Check common programs
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_AWK
AC_PROG_MKDIR_P
# These are all actually runtime deps, but all need to be
# "build-deps" in order to inject their paths into the scripts
AC_PATH_PROG(DUMP, [dump], [], [$PATH:/usr/sbin:/sbin])
test -n "$DUMP" || AC_MSG_ERROR([dump not found in $PATH])
AC_PATH_PROG(LOSETUP, [losetup], [], [$PATH:/usr/sbin:/sbin])
test -n "$LOSETUP" || AC_MSG_ERROR([losetup not found in $PATH])
AC_PATH_PROG(KPARTX, [kpartx], [], [$PATH:/usr/sbin:/sbin])
test -n "$KPARTX" || AC_MSG_ERROR([kpartx not found in $PATH])
! $KPARTX | grep -q -- '-s sync mode' || KPARTX="$KPARTX -s"
AC_PATH_PROG(SFDISK, [sfdisk], [], [$PATH:/usr/sbin:/sbin])
test -n "$SFDISK" || AC_MSG_ERROR([sfdisk not found in $PATH])
AC_PATH_PROG(PARTED, [parted], [], [$PATH:/usr/sbin:/sbin])
test -n "$PARTED" || AC_MSG_WARN([parted not found in $PATH])
AC_PATH_PROG(QEMU_IMG, [qemu-img], [], [$PATH:/usr/bin:/bin])
test -n "$QEMU_IMG" || AC_MSG_ERROR([qemu-img not found in $PATH])
AC_PATH_PROG(WGET, [wget], [], [$PATH:/usr/bin:/bin])
test -n "$WGET" || AC_MSG_ERROR([wget not found in $PATH])
AC_PATH_PROG(SHA1SUM, [sha1sum], [], [$PATH:/usr/bin:/bin])
test -n "$SHA1SUM" || AC_MSG_ERROR([sha1sum not found in $PATH])
AC_PATH_PROG(BLOCKDEV_CMD, [blockdev], [], [$PATH:/usr/sbin:/sbin])
test -n "$BLOCKDEV_CMD" || AC_MSG_ERROR([blockdev not found in $PATH])
AC_PATH_PROG(BLKID, [blkid], [], [$PATH:/usr/sbin:/sbin])
test -n "$BLKID" || AC_MSG_ERROR([blkid not found in $PATH])
AC_CONFIG_FILES([
Makefile
])
AC_OUTPUT