-
Notifications
You must be signed in to change notification settings - Fork 63
/
configure.ac
134 lines (112 loc) · 4.33 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.62])
AC_INIT([shifter], [22.02.1], [shifter-hpc@googlegroups.com])
AC_CONFIG_SRCDIR([src/shifter_core.h])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR([auxdir])
AM_INIT_AUTOMAKE([subdir-objects no-dependencies])
AC_PROG_LIBTOOL
AC_CONFIG_MACRO_DIRS([auxdir])
# Checks for programs.
AC_PROG_CXX
AC_PROG_AWK
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
X_AC_MUNGE
X_AC_SLURM
X_AC_JSON
AC_ARG_VAR([DD_PATH], [Path to dd executable])
AC_PATH_PROG([DD_PATH], [dd], [NotFound])
AC_ARG_VAR([CP_PATH], [Path to cp executable])
AC_PATH_PROG([CP_PATH], [cp], [NotFound])
AC_ARG_VAR([MV_PATH], [Path to mv executable])
AC_PATH_PROG([MV_PATH], [mv], [NotFound])
AC_ARG_VAR([CHMOD_PATH], [Path to chmod executable])
AC_PATH_PROG([CHMOD_PATH], [chmod], [NotFound])
AC_ARG_VAR([MKFSXFS_PATH], [Path to mkfs.xfs executable])
AC_PATH_PROG([MKFSXFS_PATH], [mkfs.xfs], [NotFound], [$PATH$PATH_SEPARATOR/sbin$PATH_SEPARATOR/usr/sbin])
AC_ARG_VAR([INSMOD_PATH], [Path to insmod executable])
AC_PATH_PROG([INSMOD_PATH], [insmod], [NotFound], [$PATH$PATH_SEPARATOR/sbin$PATH_SEPARATOR/usr/sbin])
AC_ARG_VAR([MODPROBE_PATH], [Path to modprobe executable])
AC_PATH_PROG([MODPROBE_PATH], [modprobe], [NotFound], [$PATH$PATH_SEPARATOR/sbin$PATH_SEPARATOR/usr/sbin])
AM_PATH_PYTHON
AC_ARG_ENABLE([cray], AS_HELP_STRING([--enable-cray], [Turn on cray support and testing options]))
ROOTFS_TYPE=tmpfs
USE_GETPWUID=1
AS_IF([test "x$enable_cray" == "xyes"], [
ROOTFS_TYPE=ramfs
USE_GETPWUID=0
])
AC_SUBST([ROOTFS_TYPE])
AC_SUBST([USE_GETPWUID])
AC_ARG_ENABLE([staticsshd], AS_HELP_STRING([--disable-staticsshd], [Turn off support for starting a staticly-linked sshd within the container]))
AM_CONDITIONAL([BUILD_STATICSSHD], [test "x$enable_staticsshd" != "xno"])
AM_CONDITIONAL([ALLOW_STATICSSHD], [test "x$enable_staticsshd" != "xno"])
AC_DEFINE_DIR(SHIFTER_PREFIX, prefix, [fully expanded prefix])
AC_DEFINE_DIR(SHIFTER_LIBEXECDIR, libexecdir, [fully expanded libexecdir])
AC_DEFINE_DIR(SHIFTER_SYSCONFDIR, sysconfdir, [fully expanded sysconfdir])
AC_DEFINE_DIR(SHIFTER_ETC_FILESDIR, shifter_etc_files, [fully expanded shifter_etc_files])
AS_VAR_SET([shifter_etc_files], [$sysconfdir/shifter_etc_files])
AC_SUBST([shifter_etc_files])
## get path for slurm
#AC_ARG_WITH([slurm], AS_HELP_STRING([--with-slurm], [Path to slurm]))
#AS_IF([test "x$with_slurm" != "xno"],
LIBCURL_CHECK_CONFIG
# Checks for libraries.
# Checks for header files.
AC_CHECK_HEADERS([fcntl.h limits.h stddef.h stdint.h stdlib.h string.h sys/mount.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_TYPE_UID_T
AC_C_INLINE
AC_TYPE_MODE_T
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_TYPE_UINT32_T
# Checks for library functions.
AC_FUNC_CHOWN
AC_FUNC_FORK
AC_FUNC_GETGROUPS
AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_CHECK_FUNCS([getcwd memmove memset mkdir putenv realpath rmdir setenv strchr strdup strstr strtoul uname prctl])
AC_CHECK_DECLS([CAP_LAST_CAP],
[],
[AC_MSG_ERROR([Cannot build without libcap-devel (sys/capability.h)])],
[[#include <sys/capability.h>]]
)
AC_CHECK_DECLS([PR_SET_NO_NEW_PRIVS],
[have_pr_set_no_new_privs=true],
[have_pr_set_no_new_privs=false],
[[#include <sys/prctl.h>]]
)
AM_CONDITIONAL(HAVE_PR_SET_NO_NEW_PRIVS, $have_pr_set_no_new_privs)
if test "$have_pr_set_no_new_privs" != "true"; then
AC_MSG_WARN([Building without set_no_new_privs because kernel missing support])
fi
AC_CONFIG_FILES([Makefile
src/Makefile
etc_files/Makefile
src/test/Makefile
dep/Makefile
extra/Makefile
wlm_integration/slurm/Makefile
wlm_integration/slurm/test/Makefile
imagegw/Makefile
imagegw/shifter_imagegw/Makefile
imagegw/shifter_imagegw/__init__.py
udiRoot.conf.example
])
# config/Makefile
# dep/Makefile
# kmod/Makefile
# src/Makefile
# src/test/Makefile
# wlm_integration/cray/Makefile
# wlm_integration/torque/Makefile])
AC_OUTPUT