]> git.proxmox.com Git - mirror_lxc.git/blame - configure.ac
Merge pull request #964 from brauner/2016-04-11/lxc_attach_manpage
[mirror_lxc.git] / configure.ac
CommitLineData
5e97c3fc 1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
99d78dcc
SG
4m4_define([lxc_version_major], 2)
5m4_define([lxc_version_minor], 0)
9588a6ce 6m4_define([lxc_version_micro], 0)
823765e5 7m4_define([lxc_version_beta], [])
99d78dcc 8m4_define([lxc_version_abi], 1.2.0)
9588a6ce
SH
9
10m4_define([lxc_version_base], [lxc_version_major.lxc_version_minor.lxc_version_micro])
11m4_define([lxc_version],
12 [ifelse(lxc_version_beta, [], [lxc_version_base], [lxc_version_base.lxc_version_beta])])
13
14AC_INIT([lxc], [lxc_version])
ddb93593
SG
15
16# We need pkg-config
17PKG_PROG_PKG_CONFIG
18
9588a6ce
SH
19AC_SUBST(LXC_VERSION_BASE, lxc_version_base)
20AC_SUBST(LXC_VERSION_BETA, lxc_version_beta)
5e97c3fc 21
a22185dd
ÇO
22AC_SUBST([LXC_VERSION_MAJOR], [lxc_version_major])
23AC_SUBST([LXC_VERSION_MINOR], [lxc_version_minor])
24AC_SUBST([LXC_VERSION_MICRO], [lxc_version_micro])
99d78dcc 25AC_SUBST([LXC_VERSION_ABI], [lxc_version_abi])
a22185dd
ÇO
26AC_SUBST([LXC_VERSION], [lxc_version])
27
f8dafdbb 28AC_CONFIG_SRCDIR([configure.ac])
5e97c3fc 29AC_CONFIG_AUX_DIR([config])
067cfaeb 30AC_CONFIG_HEADERS([src/config.h])
d007f8ab 31AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability subdir-objects])
5e97c3fc 32AC_CANONICAL_HOST
5e97c3fc 33AM_PROG_CC_C_O
34AC_GNU_SOURCE
5c8f9bd8 35
8aa4885c
SG
36# Detect the distribution. This is used for the default configuration and
37# for some distro-specific build options.
6f75ba0b 38AC_MSG_CHECKING([host distribution])
5c60f990 39AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO], [Specify the Linux distribution to target: One of redhat, oracle, centos, fedora, suse, gentoo, debian, arch, slackware, plamo, paldo, openmandriva, pardus, sparclinux, altlinux.]))
5a15791e 40if type lsb_release >/dev/null 2>&1 && test "z$with_distro" = "z"; then
6f75ba0b 41 with_distro=`lsb_release -is`
be2e4e54 42fi
6f75ba0b
DE
43if test "z$with_distro" = "z"; then
44 AC_CHECK_FILE(/etc/redhat-release,with_distro="redhat")
45 AC_CHECK_FILE(/etc/oracle-release,with_distro="oracle")
beabd0a2 46 AC_CHECK_FILE(/etc/sparclinux-release,with_distro="sparclinux")
164105f6 47 AC_CHECK_FILE(/etc/centos-release,with_distro="centos")
6f75ba0b
DE
48 AC_CHECK_FILE(/etc/fedora-release,with_distro="fedora")
49 AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
50 AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
51 AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
52 AC_CHECK_FILE(/etc/arch-release,with_distro="arch")
53 AC_CHECK_FILE(/etc/slackware-version,with_distro="slackware")
af2d9fad 54 AC_CHECK_FILE(/etc/plamo-version,with_distro="plamo")
6f75ba0b 55 AC_CHECK_FILE(/etc/frugalware-release,with_distro="frugalware")
6e7e54d9
AK
56 AC_CHECK_FILE(/etc/mandrakelinux-release, with_distro="openmandriva")
57 AC_CHECK_FILE(/etc/mandriva-release,with_distro="openmandriva")
6f75ba0b 58 AC_CHECK_FILE(/etc/pardus-release,with_distro="pardus")
5c60f990 59 AC_CHECK_FILE(/etc/altlinux-release,with_distro="altlinux")
6f75ba0b
DE
60fi
61with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]'`
62
beabd0a2
WC
63if test "z$with_distro" = "zforsparc"; then
64 with_distro="sparclinux"
65fi
66
6f75ba0b
DE
67if test "z$with_distro" = "z"; then
68 with_distro="unknown"
69fi
70case $with_distro in
1c1bb85a 71 ubuntu|raspbian)
0af99319
MW
72 distroconf=default.conf.lxcbr
73 distrosysconf="$sysconfdir/default"
6f75ba0b 74 ;;
5c60f990 75 redhat|centos|fedora|oracle|oracleserver|sparclinux|altlinux|suse|opensuse*|plamo)
0af99319
MW
76 distroconf=default.conf.lxcbr
77 distrosysconf="$sysconfdir/sysconfig"
6f75ba0b
DE
78 ;;
79 *)
3a647d58 80 distroconf=default.conf.unknown
0af99319 81 distrosysconf="$sysconfdir/default"
6f75ba0b
DE
82 ;;
83esac
84AC_MSG_RESULT([$with_distro])
1c1bb85a 85AM_CONDITIONAL([HAVE_DEBIAN], [test x"$with_distro" = "xdebian" -o x"$with_distro" = "xubuntu" -o x"$with_distro" = "xraspbian"])
025f59ab 86AM_CONDITIONAL([DISTRO_UBUNTU], [test "x$with_distro" = "xubuntu"])
be2e4e54 87
d79067a7
DM
88AC_CONFIG_LINKS([config/etc/default.conf:config/etc/${distroconf}])
89
420dfb59
DE
90# Check for init system type
91AC_MSG_CHECKING([for init system type])
92AC_ARG_WITH([init-script],
89f79f6b 93 [AC_HELP_STRING([--with-init-script@<:@=TYPE@<:@,TYPE,...@:>@@:>@],
dc068290 94 [Type(s) of init script to install: sysvinit, systemd, upstart,
89f79f6b 95 distro @<:@default=distro@:>@])],[],[with_init_script=distro])
420dfb59 96case "$with_init_script" in
420dfb59
DE
97 distro)
98 case $with_distro in
5c60f990 99 fedora|altlinux|opensuse*)
420dfb59
DE
100 init_script=systemd
101 ;;
beabd0a2 102 redhat|centos|oracle|oracleserver|sparclinux|plamo)
dc068290 103 init_script=sysvinit
420dfb59 104 ;;
1c1bb85a 105 debian|raspbian)
dc068290 106 init_script=upstart,systemd
89f79f6b 107 ;;
420dfb59 108 ubuntu)
882ab607 109 init_script=upstart,systemd
420dfb59
DE
110 ;;
111 *)
dc068290
SG
112 echo -n "Linux distribution init system unknown."
113 init_script=
420dfb59
DE
114 ;;
115 esac
116 ;;
117 *)
89f79f6b 118 init_script=$with_init_script
420dfb59
DE
119 ;;
120esac
89f79f6b
DE
121
122# Check valid init systems were given, run in subshell so we don't mess up IFS
123(IFS="," ; for init_sys in $init_script;
124do
125 case "$init_sys" in
dc068290 126 none|sysvinit|systemd|upstart)
89f79f6b
DE
127 ;;
128 *)
129 exit 1
130 ;;
131 esac
132done) || AC_MSG_ERROR([Unknown init system type in $init_script])
133
dc068290 134AM_CONDITIONAL([INIT_SCRIPT_SYSV], [echo "$init_script" |grep -q "sysvinit"])
89f79f6b
DE
135AM_CONDITIONAL([INIT_SCRIPT_SYSTEMD], [echo "$init_script" |grep -q "systemd"])
136AM_CONDITIONAL([INIT_SCRIPT_UPSTART], [echo "$init_script" |grep -q "upstart"])
420dfb59
DE
137AC_MSG_RESULT($init_script)
138
213b0fe0
MP
139# systemd unit dir
140AC_ARG_WITH([systemdsystemunitdir],
141 AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]),
142 [],
143 [with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)])
144if test -z "$with_systemdsystemunitdir"; then
145 with_systemdsystemunitdir=/lib/systemd/system
146fi
147if test "x$with_systemdsystemunitdir" != "xno"; then
148 AC_SUBST([SYSTEMD_UNIT_DIR], [$with_systemdsystemunitdir])
149fi
150
d0a6bd39
CB
151# Allow enabling deprecated executables
152AC_ARG_ENABLE([deprecated],
153 [AC_HELP_STRING([--enable-deprecated],
154 [enable deprecated executables [default=no]])],
155 [], [enable_deprecated=false])
156AM_CONDITIONAL([ENABLE_DEPRECATED], [test "x$enable_deprecated" = "xyes"])
157
8aa4885c 158# Allow disabling rpath
1c41ddcb 159AC_ARG_ENABLE([rpath],
f91d5e4e
SG
160 [AC_HELP_STRING([--enable-rpath], [set rpath in executables [default=no]])],
161 [], [enable_rpath=no])
1c41ddcb
GK
162AM_CONDITIONAL([ENABLE_RPATH], [test "x$enable_rpath" = "xyes"])
163
8aa4885c 164# Documentation (manpages)
5c8f9bd8 165AC_ARG_ENABLE([doc],
f91d5e4e 166 [AC_HELP_STRING([--enable-doc], [make man pages [default=auto]])],
5c8f9bd8
AN
167 [], [enable_doc=auto])
168
169if test "x$enable_doc" = "xyes" -o "x$enable_doc" = "xauto"; then
7822022c 170 db2xman=""
6424619e 171 dbparsers="docbook2x-man db2x_docbook2man docbook2man docbook-to-man"
69fe23ff 172
7822022c 173 AC_MSG_CHECKING(for docbook2x-man)
69fe23ff 174 for name in ${dbparsers}; do
7822022c
SG
175 if "$name" --help >/dev/null 2>&1; then
176 db2xman="$name"
177 break;
178 fi
179 done
180
181 if test -n "${db2xman}"; then
8aa4885c 182 AC_MSG_RESULT([${db2xman}])
f91d5e4e 183 enable_doc="yes"
7822022c 184 else
8aa4885c 185 AC_MSG_RESULT([no])
7822022c 186 if test "x$enable_doc" = "xyes"; then
f91d5e4e 187 AC_MSG_ERROR([docbook2x-man is required, but could not be found])
7822022c 188 fi
f91d5e4e 189 enable_doc="no"
7822022c
SG
190 fi
191
192 AC_SUBST(db2xman)
5c8f9bd8 193fi
8aa4885c 194AM_CONDITIONAL([ENABLE_DOCBOOK], [test "x$db2xman" != "x"])
7cb14f34 195AM_CONDITIONAL([USE_DOCBOOK2X], [test "x$db2xman" != "xdocbook2man"])
5c8f9bd8 196
7f951458
DE
197if test "x$db2xman" = "xdocbook2man"; then
198 docdtd="\"-//Davenport//DTD DocBook V3.0//EN\""
199else
200 docdtd="\"-//OASIS//DTD DocBook XML\" \"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd\""
201fi
202AC_SUBST(docdtd)
203
953e611c
JH
204# Documentation (API)
205AC_ARG_ENABLE([api-docs],
206 [AC_HELP_STRING([--enable-api-docs],
f91d5e4e 207 [make API documentation [default=auto]])],
953e611c
JH
208 [], [enable_api_docs=auto])
209
210if test "x$enable_api_docs" = "xyes" -o "x$enable_api_docs" = "xauto"; then
f91d5e4e
SG
211 AC_CHECK_PROGS([HAVE_DOXYGEN],[doxygen])
212 AC_SUBST([HAVE_DOXYGEN])
213
214 if test "x$HAVE_DOXYGEN" != "x"; then
215 enable_api_docs="yes"
216 else
217 if test "x$enable_api_docs" = "xyes"; then
218 AC_MSG_ERROR([doxygen is required, but could not be found])
219 fi
220 enable_api_docs="no"
221 fi
953e611c
JH
222fi
223
f91d5e4e 224AM_CONDITIONAL([ENABLE_API_DOCS], [test "x$HAVE_DOXYGEN" != "x"])
953e611c 225
8aa4885c 226# Apparmor
e767dd55 227AC_ARG_ENABLE([apparmor],
f91d5e4e
SG
228 [AC_HELP_STRING([--enable-apparmor], [enable apparmor support [default=auto]])],
229 [], [enable_apparmor=auto])
e767dd55 230
f91d5e4e 231if test "$enable_apparmor" = "auto" ; then
e767dd55
SH
232 AC_CHECK_LIB([apparmor],[aa_change_profile],[enable_apparmor=yes], [enable_apparmor=no])
233fi
e767dd55
SH
234AM_CONDITIONAL([ENABLE_APPARMOR], [test "x$enable_apparmor" = "xyes"])
235
d8d44659 236AC_CHECK_LIB([gnutls], [gnutls_hash_fast], [enable_gnutls=yes], [enable_gnutls=no])
3ce74686 237
e075f5d9 238AM_COND_IF([ENABLE_APPARMOR],
8aa4885c
SG
239 [AC_CHECK_HEADER([sys/apparmor.h],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
240 AC_CHECK_LIB([apparmor], [aa_change_profile],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
241 AC_SUBST([APPARMOR_LIBS], [-lapparmor])])
e075f5d9 242
fe4de9a6
DE
243# SELinux
244AC_ARG_ENABLE([selinux],
f91d5e4e
SG
245 [AC_HELP_STRING([--enable-selinux], [enable SELinux support [default=auto]])],
246 [], [enable_selinux=auto])
fe4de9a6 247
f91d5e4e 248if test "x$enable_selinux" = xauto; then
fe4de9a6
DE
249 AC_CHECK_LIB([selinux],[setexeccon_raw],[enable_selinux=yes],[enable_selinux=no])
250fi
251AM_CONDITIONAL([ENABLE_SELINUX], [test "x$enable_selinux" = "xyes"])
252AM_COND_IF([ENABLE_SELINUX],
253 [AC_CHECK_HEADER([selinux/selinux.h],[],[AC_MSG_ERROR([You must install the SELinux development package in order to compile lxc])])
e9aeeade
DE
254 AC_CHECK_LIB([selinux], [setexeccon_raw],[true],[AC_MSG_ERROR([You must install the SELinux development package in order to compile lxc])])
255 AC_SUBST([SELINUX_LIBS], [-lselinux])])
fe4de9a6 256
8aa4885c 257# Seccomp syscall filter
e767dd55 258AC_ARG_ENABLE([seccomp],
f91d5e4e
SG
259 [AC_HELP_STRING([--enable-seccomp], [enable seccomp support [default=auto]])],
260 [], [enable_seccomp=auto])
e767dd55 261
f91d5e4e 262if test "x$enable_seccomp" = "xauto" ; then
e767dd55
SH
263 AC_CHECK_LIB([seccomp],[seccomp_init],[enable_seccomp=yes],[enable_seccomp=no])
264fi
e767dd55
SH
265AM_CONDITIONAL([ENABLE_SECCOMP], [test "x$enable_seccomp" = "xyes"])
266
8f2c3a70 267AM_COND_IF([ENABLE_SECCOMP],
12dcc892
JS
268 [PKG_CHECK_MODULES([SECCOMP],[libseccomp],[],[
269 AC_CHECK_HEADER([seccomp.h],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
270 AC_CHECK_LIB([seccomp], [seccomp_init],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
271 AC_SUBST([SECCOMP_LIBS], [-lseccomp])
272 ])
273 ])
8f2c3a70 274
d4ef7c50
SH
275# cgmanager
276AC_ARG_ENABLE([cgmanager],
277 [AC_HELP_STRING([--enable-cgmanager], [enable cgmanager support [default=auto]])],
278 [], [enable_cgmanager=auto])
279
280if test "x$enable_cgmanager" = "xauto" ; then
44bbab8c 281 AC_CHECK_LIB([cgmanager],[cgmanager_create],[enable_cgmanager=yes],[enable_cgmanager=no],[-lnih -lnih-dbus -ldbus-1])
d4ef7c50
SH
282fi
283AM_CONDITIONAL([ENABLE_CGMANAGER], [test "x$enable_cgmanager" = "xyes"])
284
285AM_COND_IF([ENABLE_CGMANAGER],
286 [PKG_CHECK_MODULES([CGMANAGER], [libcgmanager])
287 PKG_CHECK_MODULES([NIH], [libnih >= 1.0.2])
288 PKG_CHECK_MODULES([NIH_DBUS], [libnih-dbus >= 1.0.0])
289 PKG_CHECK_MODULES([DBUS], [dbus-1 >= 1.2.16])
290 ])
291
25c7531c 292AC_MSG_CHECKING(for get_pid_cgroup_abs_sync)
07ffb130 293save_LIBS=$LIBS
25c7531c 294AC_SEARCH_LIBS([cgmanager_get_pid_cgroup_abs_sync], [cgmanager], [have_abs_cgroups=yes], [have_abs_cgroups=no], [-lnih -lnih-dbus -ldbus-1])
07ffb130 295LIBS=$save_LIBS
25c7531c
SH
296if test "x$have_abs_cgroups" = "xyes"; then
297 AC_DEFINE([HAVE_CGMANAGER_GET_PID_CGROUP_ABS_SYNC], 1, [Have cgmanager_get_pid_cgroup_abs_sync])
298 AC_MSG_RESULT([yes])
299else
300 AC_MSG_RESULT([no])
301fi
e78884c9 302
a0411275
SH
303AC_MSG_CHECKING(for cgmanager_list_controllers)
304save_LIBS=$LIBS
305AC_SEARCH_LIBS([cgmanager_list_controllers_sync], [cgmanager], [have_list_controllers=yes], [have_list_controllers=no], [-lnih -lnih-dbus -ldbus-1])
306LIBS=$save_LIBS
307if test "x$have_list_controllers" = "xyes"; then
308 AC_DEFINE([HAVE_CGMANAGER_LIST_CONTROLLERS], 1, [Have cgmanager_list_controllers])
309 AC_MSG_RESULT([yes])
310else
311 AC_MSG_RESULT([no])
312fi
313
e78884c9
DE
314# Check for static libcap, make sure the function checked for differs from the
315# the one checked below so the cache doesn't give a wrong answer
316OLD_CFLAGS="$CFLAGS"
317CFLAGS="$CFLAGS -static"
318AC_CHECK_LIB([cap],[cap_init],[have_static_libcap=yes],[have_static_libcap=no])
319AM_CONDITIONAL([HAVE_STATIC_LIBCAP], [test "x$have_static_libcap" = "xyes"])
320if test "x$have_static_libcap" = "xyes"; then
321 AC_DEFINE([HAVE_STATIC_LIBCAP], 1, [Have static libcap])
322fi
323CFLAGS="$OLD_CFLAGS"
324
325
f91d5e4e
SG
326# Linux capabilities
327AC_ARG_ENABLE([capabilities],
328 [AC_HELP_STRING([--enable-capabilities], [enable kernel capabilities support [default=auto]])],
329 [], [enable_capabilities=auto])
330
331if test "x$enable_capabilities" = "xauto"; then
332 AC_CHECK_LIB([cap],[cap_set_proc],[enable_capabilities=yes],[enable_capabilities=no])
333fi
334AM_CONDITIONAL([ENABLE_CAP], [test "x$enable_capabilities" = "xyes"])
335
336AM_COND_IF([ENABLE_CAP],
e9aeeade 337 [AC_CHECK_LIB(cap,cap_set_proc,[true],[AC_MSG_ERROR([You are missing libcap support.])])
f91d5e4e
SG
338 AC_SUBST([CAP_LIBS], [-lcap])])
339
769872f9 340# HAVE_SCMP_FILTER_CTX=1 will tell us we have libseccomp api >= 1.0.0
12dcc892
JS
341OLD_CFLAGS="$CFLAGS"
342CFLAGS="$CFLAGS $SECCOMP_CFLAGS"
f91d5e4e 343AC_CHECK_TYPES([scmp_filter_ctx], [], [], [[#include <seccomp.h>]])
2b0ae718 344AC_CHECK_DECLS([seccomp_syscall_resolve_name_arch], [], [], [[#include <seccomp.h>]])
12dcc892 345CFLAGS="$OLD_CFLAGS"
769872f9 346
8aa4885c 347# Configuration examples
3fb0a9bb 348AC_ARG_ENABLE([examples],
f91d5e4e 349 [AC_HELP_STRING([--enable-examples], [install examples [default=yes]])],
3fb0a9bb 350 [], [enable_examples=yes])
3fb0a9bb
AN
351AM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" = "xyes"])
352
8aa4885c 353# Python3 module and scripts
be2e4e54 354AC_ARG_ENABLE([python],
f91d5e4e
SG
355 [AC_HELP_STRING([--enable-python], [enable python binding [default=auto]])],
356 [], [enable_python=auto])
357
358if test "x$enable_python" = "xauto"; then
359 PKG_CHECK_MODULES([PYTHONDEV], [python3 >= 3.2],[enable_python=yes],[enable_python=no])
2bc93759
SG
360 if test "$CC" = "clang"; then
361 enable_python=no
362 fi
363fi
364
365if test "x$enable_python" = "xyes" && test "$CC" = "clang"; then
366 AC_MSG_ERROR([Python3 is incompatible with the clang compiler])
f91d5e4e
SG
367fi
368
be2e4e54
SG
369AM_CONDITIONAL([ENABLE_PYTHON], [test "x$enable_python" = "xyes"])
370
371AM_COND_IF([ENABLE_PYTHON],
8aa4885c 372 [AM_PATH_PYTHON([3.2], [], [AC_MSG_ERROR([You must install python3])])
59ec0a36 373 PKG_CHECK_MODULES([PYTHONDEV], [python3 >= 3.2],[],[AC_MSG_ERROR([You must install python3-dev])])
8aa4885c 374 AC_DEFINE_UNQUOTED([ENABLE_PYTHON], 1, [Python3 is available])])
be2e4e54 375
052616eb
ÇO
376# Enable dumping stack traces
377AC_ARG_ENABLE([mutex-debugging],
f91d5e4e
SG
378 [AC_HELP_STRING([--enable-mutex-debugging], [Makes mutexes to report error and provide stack trace [default=no]])],
379 [], [enable_mutex_debugging=no])
052616eb
ÇO
380AM_CONDITIONAL([MUTEX_DEBUGGING], [test "x$enable_mutex_debugging" = "xyes"])
381
382AM_COND_IF([MUTEX_DEBUGGING],
383 AC_DEFINE_UNQUOTED([MUTEX_DEBUGGING], 1, [Enabling mutex debugging]))
384
3a1675bf
DE
385# Not in older autoconf versions
386# AS_VAR_COPY(DEST, SOURCE)
387# -------------------------
388# Set the polymorphic shell variable DEST to the contents of the polymorphic
389# shell variable SOURCE.
390m4_ifdef([AS_VAR_COPY], [],
391[AC_DEFUN([AS_VAR_COPY],
392 [AS_LITERAL_IF([$1[]$2], [$1=$$2], [eval $1=\$$2])])
393])
394
12e93188
NC
395dnl PKG_CHECK_VAR was introduced with pkg-config 0.28
396m4_ifdef([PKG_CHECK_VAR], [],
397[AC_DEFUN([PKG_CHECK_VAR],
398 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
399 AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
400 _PKG_CONFIG([$1], [variable="][$3]["], [$2])
401 AS_VAR_COPY([$1], [pkg_cv_][$1])
402 AS_VAR_IF([$1], [""], [$5], [$4])dnl
403 ])# PKG_CHECK_VAR
404])
f080ffd7 405
12e93188 406# Lua module and scripts
f080ffd7 407AC_ARG_ENABLE([lua],
f91d5e4e
SG
408 [AC_HELP_STRING([--enable-lua], [enable lua binding [default=auto]])],
409 [], [enable_lua=auto])
f080ffd7 410
12e93188
NC
411AC_ARG_WITH([lua-pc],
412 [AS_HELP_STRING(
413 [--with-lua-pc=PKG],
414 [Specify pkg-config package name for lua]
f756cda0
NC
415 )], [], [with_lua_pc=no])
416
417if test "x$enable_lua" = "xyes" -a "x$with_lua_pc" != "xno"; then
418 # exit with error if not found
419 PKG_CHECK_MODULES([LUA], [$with_lua_pc], [LUAPKGCONFIG=$with_lua_pc])
420fi
421
f91d5e4e 422if test "x$enable_lua" = "xauto" -a "x$with_lua_pc" != "xno"; then
f756cda0
NC
423 PKG_CHECK_MODULES([LUA], [$with_lua_pc],
424 [LUAPKGCONFIG=$with_lua_pc
425 enable_lua=yes],
426 [enable_lua=no])
427fi
428
429if test "x$enable_lua" != "xno"; then
430 PKG_CHECK_MODULES([LUA], [lua], [LUAPKGCONFIG=lua],
431 [PKG_CHECK_MODULES([LUA], [lua5.2], [LUAPKGCONFIG=lua5.2],
432 [PKG_CHECK_MODULES([LUA], [lua5.1], [LUAPKGCONFIG=lua5.1],
433 [AS_IF([test "x$enable_lua" = "xyes"],
434 [AC_MSG_ERROR([Lua not found. Please use --with-lua-pc=PKG])],
435 [enable_lua=no])]
436 )]
437 )])
438 AS_IF([test "x$LUAPKGCONFIG" != "x"], [enable_lua=yes])
439fi
12e93188
NC
440
441AM_CONDITIONAL([ENABLE_LUA],
69c757b3 442 [test "x$enable_lua" = "xyes"])
f080ffd7
DE
443
444AM_COND_IF([ENABLE_LUA],
f756cda0 445 [AC_MSG_CHECKING([Lua version])
12e93188
NC
446 PKG_CHECK_VAR([LUA_VERSION], [$LUAPKGCONFIG], [V],,
447 [PKG_CHECK_VAR([LUA_VERSION], [$LUAPKGCONFIG], [major_version])])
448 AC_MSG_RESULT([$LUA_VERSION])
94863add
NC
449 AC_SUBST([LUA_LIBDIR], [$libdir/lua/$LUA_VERSION])
450 AC_SUBST([LUA_SHAREDIR], [$datadir/lua/$LUA_VERSION])
12e93188 451 ])
f080ffd7 452
0306de4f
SG
453# Optional bash integration
454AC_ARG_ENABLE([bash],
455 [AC_HELP_STRING([--enable-bash], [build bash integration [default=yes]])],
456 [], [enable_bash=yes])
457AM_CONDITIONAL([ENABLE_BASH], [test "x$enable_bash" = "xyes"])
458
8aa4885c 459# Optional test binaries
525421c9 460AC_ARG_ENABLE([tests],
f91d5e4e
SG
461 [AC_HELP_STRING([--enable-tests], [build test/example binaries [default=no]])],
462 [], [enable_tests=no])
525421c9
SG
463AM_CONDITIONAL([ENABLE_TESTS], [test "x$enable_tests" = "xyes"])
464
061ba5d0
SG
465# Allow overriding the default runtime dir (/run)
466AC_ARG_WITH([runtime-path],
467 [AC_HELP_STRING(
468 [--with-runtime-path=dir],
469 [runtime directory (default: /run)]
470 )], [], [with_runtime_path=['/run']])
471
8aa4885c 472# LXC container path, where the containers are actually stored
fbf5de31 473# This is overridden by an entry in the file called LXCCONF
2a59a681 474# (i.e. /etc/lxc/lxc.conf)
aef4ebcf
AN
475AC_ARG_WITH([config-path],
476 [AC_HELP_STRING(
477 [--with-config-path=dir],
e892973e 478 [lxc configuration repository path]
1c41ddcb 479 )], [], [with_config_path=['${localstatedir}/lib/lxc']])
aef4ebcf 480
2a59a681
SH
481# The path of the global lxc configuration file.
482AC_ARG_WITH([global-conf],
483 [AC_HELP_STRING(
484 [--with-global-conf=dir],
485 [global lxc configuration file]
486 )], [], [with_global_conf=['${sysconfdir}/lxc/lxc.conf']])
487
c75c30ec 488# The path of the userns network configuration file
070a4b8e
SH
489AC_ARG_WITH([usernic-conf],
490 [AC_HELP_STRING(
491 [--with-usernic-conf],
492 [user network interface configuration file]
493 )], [], [with_usernic_conf=['${sysconfdir}/lxc/lxc-usernet']])
494
c75c30ec 495# The path of the runtime usernic database
070a4b8e
SH
496AC_ARG_WITH([usernic-db],
497 [AC_HELP_STRING(
498 [--with-usernic-db],
499 [lxc user nic database]
5a15791e 500 )], [], [with_usernic_db=['${with_runtime_path}/lxc/nics']])
070a4b8e 501
8aa4885c 502# Rootfs path, where the container mount structure is assembled
196db713
DL
503AC_ARG_WITH([rootfs-path],
504 [AC_HELP_STRING(
505 [--with-rootfs-path=dir],
506 [lxc rootfs mount point]
1c41ddcb 507 )], [], [with_rootfs_path=['${libdir}/lxc/rootfs']])
c75c30ec 508
6e16552d
CS
509# cgroup pattern specification
510AC_ARG_WITH([cgroup-pattern],
511 [AC_HELP_STRING(
512 [--with-cgroup-pattern=pattern],
513 [pattern for container cgroups]
514 )], [], [with_cgroup_pattern=['/lxc/%n']])
196db713 515
5e1e7aaf
SH
516# Container log path. By default, use $lxcpath.
517AC_MSG_CHECKING([Whether to place logfiles in container config path])
518AC_ARG_ENABLE([configpath-log],
f91d5e4e
SG
519 [AC_HELP_STRING([--enable-configpath-log], [use logfiles in config path [default=no]])],
520 [], [enable_configpath_log=no])
521AC_MSG_RESULT([$enable_configpath_log])
522AM_CONDITIONAL([USE_CONFIGPATH_LOGS], [test "$enable_configpath_log" = "yes"])
5e1e7aaf 523
f91d5e4e 524if test "$enable_configpath_log" = "yes"; then
5e1e7aaf
SH
525 default_log_path="${with_config_path}"
526else
89d556d8 527 default_log_path="${localstatedir}/log/lxc"
5e1e7aaf
SH
528fi
529
530AC_ARG_WITH([log-path],
531 [AC_HELP_STRING(
532 [--with-log-path=dir],
533 [per container log path]
534 )], [], [with_log_path=['${default_log_path}']])
535
8aa4885c
SG
536# Expand some useful variables
537AS_AC_EXPAND(PREFIX, "$prefix")
538AS_AC_EXPAND(LIBDIR, "$libdir")
539AS_AC_EXPAND(BINDIR, "$bindir")
718e4f48 540AS_AC_EXPAND(SBINDIR, "$sbindir")
8aa4885c
SG
541AS_AC_EXPAND(LIBEXECDIR, "$libexecdir")
542AS_AC_EXPAND(INCLUDEDIR, "$includedir")
543AS_AC_EXPAND(SYSCONFDIR, "$sysconfdir")
0a18b545 544AS_AC_EXPAND(LXC_DEFAULT_CONFIG, "$sysconfdir/lxc/default.conf")
8aa4885c
SG
545AS_AC_EXPAND(DATADIR, "$datadir")
546AS_AC_EXPAND(LOCALSTATEDIR, "$localstatedir")
547AS_AC_EXPAND(DOCDIR, "$docdir")
aef4ebcf 548AS_AC_EXPAND(LXC_GENERATE_DATE, "$(date)")
8aa4885c 549AS_AC_EXPAND(LXCPATH, "$with_config_path")
2a59a681 550AS_AC_EXPAND(LXC_GLOBAL_CONF, "$with_global_conf")
070a4b8e
SH
551AS_AC_EXPAND(LXC_USERNIC_CONF, "$with_usernic_conf")
552AS_AC_EXPAND(LXC_USERNIC_DB, "$with_usernic_db")
0af99319 553AS_AC_EXPAND(LXC_DISTRO_SYSCONF, "$distrosysconf")
8aa4885c
SG
554AS_AC_EXPAND(LXCROOTFSMOUNT, "$with_rootfs_path")
555AS_AC_EXPAND(LXCTEMPLATEDIR, "$datadir/lxc/templates")
f2a95ee1 556AS_AC_EXPAND(LXCTEMPLATECONFIG, "$datadir/lxc/config")
906f8c4d 557AS_AC_EXPAND(LXCHOOKDIR, "$datadir/lxc/hooks")
16d08ae7 558AS_AC_EXPAND(LXCBINHOOKDIR, "$libexecdir/lxc/hooks")
8aa4885c 559AS_AC_EXPAND(LXCINITDIR, "$libexecdir")
5e1e7aaf 560AS_AC_EXPAND(LOGPATH, "$with_log_path")
061ba5d0 561AS_AC_EXPAND(RUNTIME_PATH, "$with_runtime_path")
6e16552d 562AC_SUBST(DEFAULT_CGROUP_PATTERN, ["$with_cgroup_pattern"])
881450bb 563
0080bebf
TA
564# We need the install path so criu knows where to reference the hook scripts.
565AC_DEFINE_UNQUOTED([DATADIR], "$DATADIR", ["Prefix for shared files."])
566
8aa4885c 567# Check for some standard kernel headers
910bb4fa 568AC_CHECK_HEADERS([linux/unistd.h linux/netlink.h linux/genetlink.h],
8aa4885c
SG
569 [],
570 AC_MSG_ERROR([Please install the Linux kernel headers.]),
571 [#include <sys/socket.h>])
35f549fe 572
a6168a17
SG
573# Check for alternate C libraries
574AC_MSG_CHECKING(for bionic libc)
575AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
8aa4885c 576 [[#ifndef __ANDROID__
a6168a17
SG
577error: Not bionic!
578#endif]])],
8aa4885c
SG
579 [is_bionic=yes],
580 [is_bionic=no])
a6168a17 581if test "x$is_bionic" = "xyes"; then
8aa4885c
SG
582 AC_DEFINE([IS_BIONIC], 1, [bionic libc])
583 AC_MSG_RESULT([yes])
a6168a17 584else
8aa4885c 585 AC_MSG_RESULT([no])
a6168a17
SG
586fi
587AM_CONDITIONAL([IS_BIONIC], [test "x$is_bionic" = "xyes"])
588
656994bb
MH
589# Some systems lack PR_CAPBSET_DROP definition => HAVE_DECL_PR_CAPBSET_DROP
590AC_CHECK_DECLS([PR_CAPBSET_DROP], [], [], [#include <sys/prctl.h>])
591
e827ff7e 592# Check for some headers
4ba0d9af 593AC_CHECK_HEADERS([sys/signalfd.h pty.h ifaddrs.h sys/capability.h sys/personality.h utmpx.h sys/timerfd.h])
ff218c25 594
2d76d1d7 595# Check for some syscalls functions
5f7eba0b 596AC_CHECK_FUNCS([setns pivot_root sethostname unshare rand_r confstr faccessat])
2d76d1d7 597
e827ff7e 598# Check for some functions
babbea4b
ÇO
599AC_CHECK_LIB(pthread, main)
600AC_CHECK_FUNCS(pthread_atfork)
614305f3 601AC_CHECK_FUNCS(statvfs)
740ee8c7 602AC_CHECK_LIB(util, openpty)
8b6d8b71 603AC_CHECK_FUNCS([openpty hasmntopt setmntent endmntent utmpxname])
1ba0013f
SG
604AC_CHECK_FUNCS([getline],
605 AM_CONDITIONAL(HAVE_GETLINE, true)
606 AC_DEFINE(HAVE_GETLINE,1,[Have getline]),
607 AM_CONDITIONAL(HAVE_GETLINE, false))
9dbcd668
SG
608AC_CHECK_FUNCS([getsubopt],
609 AM_CONDITIONAL(HAVE_GETSUBOPT, true)
610 AC_DEFINE(HAVE_GETSUBOPT,1,[Have getsubopt]),
611 AM_CONDITIONAL(HAVE_GETSUBOPT, false))
1ba0013f
SG
612AC_CHECK_FUNCS([fgetln],
613 AM_CONDITIONAL(HAVE_FGETLN, true)
614 AC_DEFINE(HAVE_FGETLN,1,[Have fgetln]),
615 AM_CONDITIONAL(HAVE_FGETLN, false))
616
c9a84173
SG
617# Check for some libraries
618AC_SEARCH_LIBS(sem_open, [rt pthread])
336d5469 619AC_SEARCH_LIBS(clock_gettime, [rt])
c9a84173 620
8aa4885c 621# Check for some standard binaries
5e97c3fc 622AC_PROG_GCC_TRADITIONAL
95a717e9 623AC_PROG_SED
5e97c3fc 624
babbea4b
ÇO
625# See if we support thread-local storage.
626LXC_CHECK_TLS
627
5e97c3fc 628if test "x$GCC" = "xyes"; then
8aa4885c 629 CFLAGS="$CFLAGS -Wall -Werror"
5e97c3fc 630fi
631
8aa4885c 632# Files requiring some variable expansion
5e97c3fc 633AC_CONFIG_FILES([
288063bd 634 Makefile
b6345ba1 635 lxc.pc
5e97c3fc 636 lxc.spec
f2a95ee1 637
288063bd 638 config/Makefile
8da250da 639 config/apparmor/Makefile
719fae07 640 config/selinux/Makefile
0306de4f
SG
641 config/bash/Makefile
642 config/bash/lxc
dc068290 643 config/init/Makefile
0af99319
MW
644 config/init/common/Makefile
645 config/init/common/lxc-containers
646 config/init/common/lxc-net
dc068290 647 config/init/systemd/Makefile
015f0dd7 648 config/init/systemd/lxc.service
de2b7e65 649 config/init/systemd/lxc@.service
65b27d84 650 config/init/systemd/lxc-net.service
0af99319
MW
651 config/init/sysvinit/Makefile
652 config/init/sysvinit/lxc-containers
653 config/init/sysvinit/lxc-net
a8c71063 654 config/init/upstart/lxc.conf
0af99319 655 config/init/upstart/lxc-net.conf
dc068290 656 config/init/upstart/Makefile
f2a95ee1
SG
657 config/etc/Makefile
658 config/templates/Makefile
6515faa1
JJ
659 config/templates/alpine.common.conf
660 config/templates/alpine.userns.conf
c194ffc1
AV
661 config/templates/archlinux.common.conf
662 config/templates/archlinux.userns.conf
1ecee40b
MW
663 config/templates/centos.common.conf
664 config/templates/centos.userns.conf
5b99af00 665 config/templates/common.conf
4662c6de 666 config/templates/common.conf.d/Makefile
00fe5e1d
SG
667 config/templates/debian.common.conf
668 config/templates/debian.userns.conf
1ecee40b
MW
669 config/templates/fedora.common.conf
670 config/templates/fedora.userns.conf
cae3584e 671 config/templates/gentoo.common.conf
672 config/templates/gentoo.moresecure.conf
705bfae0 673 config/templates/gentoo.userns.conf
108b88ce 674 config/templates/nesting.conf
41cf1ac3
MW
675 config/templates/opensuse.common.conf
676 config/templates/opensuse.userns.conf
9e69977f
DE
677 config/templates/oracle.common.conf
678 config/templates/oracle.userns.conf
bf3e09c0 679 config/templates/plamo.common.conf
cb131151 680 config/templates/plamo.userns.conf
3a05a669
MB
681 config/templates/slackware.common.conf
682 config/templates/slackware.userns.conf
f2a95ee1
SG
683 config/templates/ubuntu-cloud.common.conf
684 config/templates/ubuntu-cloud.lucid.conf
685 config/templates/ubuntu-cloud.userns.conf
686 config/templates/ubuntu.common.conf
687 config/templates/ubuntu.lucid.conf
71d3a659 688 config/templates/ubuntu.userns.conf
c33bdec8 689 config/templates/openwrt.common.conf
beabd0a2
WC
690 config/templates/sparclinux.common.conf
691 config/templates/sparclinux.userns.conf
5b99af00 692 config/templates/userns.conf
7ceebfd1 693 config/yum/Makefile
0af99319
MW
694 config/sysconfig/Makefile
695 config/sysconfig/lxc
d823d5b9 696
288063bd 697 doc/Makefile
953e611c 698 doc/api/Makefile
4019712d 699 doc/lxc-attach.sgml
a6adab20 700 doc/lxc-autostart.sgml
4019712d
SG
701 doc/lxc-cgroup.sgml
702 doc/lxc-checkconfig.sgml
735f2c6e 703 doc/lxc-checkpoint.sgml
11cddd70 704 doc/lxc-clone.sgml
ff5e2751 705 doc/lxc-config.sgml
4019712d 706 doc/lxc-console.sgml
2b47bac3 707 doc/lxc-copy.sgml
d823d5b9 708 doc/lxc-create.sgml
709 doc/lxc-destroy.sgml
4019712d 710 doc/lxc-device.sgml
d823d5b9 711 doc/lxc-execute.sgml
d823d5b9 712 doc/lxc-freeze.sgml
4019712d 713 doc/lxc-info.sgml
d823d5b9 714 doc/lxc-ls.sgml
4019712d 715 doc/lxc-monitor.sgml
813a4837 716 doc/lxc-snapshot.sgml
4019712d
SG
717 doc/lxc-start-ephemeral.sgml
718 doc/lxc-start.sgml
719 doc/lxc-stop.sgml
f080ffd7 720 doc/lxc-top.sgml
4019712d
SG
721 doc/lxc-unfreeze.sgml
722 doc/lxc-unshare.sgml
df3415e0 723 doc/lxc-user-nic.sgml
adade80c 724 doc/lxc-usernsexec.sgml
4019712d
SG
725 doc/lxc-wait.sgml
726
8a67a2b2 727 doc/lxc.conf.sgml
55fc19a1
SG
728 doc/lxc.container.conf.sgml
729 doc/lxc.system.conf.sgml
df3415e0 730 doc/lxc-usernet.sgml
8b8b04f8 731 doc/lxc.sgml
10fba81b 732 doc/common_options.sgml
99e4008c 733 doc/see_also.sgml
d823d5b9 734
baf6671f
DL
735 doc/rootfs/Makefile
736
0f71d073
DL
737 doc/examples/Makefile
738 doc/examples/lxc-macvlan.conf
26c39028 739 doc/examples/lxc-vlan.conf
0f71d073
DL
740 doc/examples/lxc-no-netns.conf
741 doc/examples/lxc-empty-netns.conf
742 doc/examples/lxc-phys.conf
743 doc/examples/lxc-veth.conf
c553a9c2 744 doc/examples/lxc-complex.conf
0f71d073 745
57da8c32 746 doc/ja/Makefile
57da8c32 747 doc/ja/lxc-attach.sgml
28f2ab26 748 doc/ja/lxc-autostart.sgml
57da8c32
KY
749 doc/ja/lxc-cgroup.sgml
750 doc/ja/lxc-checkconfig.sgml
b0e26ca7 751 doc/ja/lxc-checkpoint.sgml
57da8c32 752 doc/ja/lxc-clone.sgml
3220eceb 753 doc/ja/lxc-config.sgml
57da8c32 754 doc/ja/lxc-console.sgml
842948e4 755 doc/ja/lxc-copy.sgml
57da8c32
KY
756 doc/ja/lxc-create.sgml
757 doc/ja/lxc-destroy.sgml
758 doc/ja/lxc-device.sgml
759 doc/ja/lxc-execute.sgml
760 doc/ja/lxc-freeze.sgml
761 doc/ja/lxc-info.sgml
57da8c32
KY
762 doc/ja/lxc-ls.sgml
763 doc/ja/lxc-monitor.sgml
ebe0aeb1 764 doc/ja/lxc-snapshot.sgml
57da8c32
KY
765 doc/ja/lxc-start-ephemeral.sgml
766 doc/ja/lxc-start.sgml
767 doc/ja/lxc-stop.sgml
768 doc/ja/lxc-top.sgml
769 doc/ja/lxc-unfreeze.sgml
770 doc/ja/lxc-unshare.sgml
07ece600 771 doc/ja/lxc-user-nic.sgml
755d8d03 772 doc/ja/lxc-usernsexec.sgml
57da8c32
KY
773 doc/ja/lxc-wait.sgml
774
775 doc/ja/lxc.conf.sgml
fb261f53
KY
776 doc/ja/lxc.container.conf.sgml
777 doc/ja/lxc.system.conf.sgml
07ece600 778 doc/ja/lxc-usernet.sgml
57da8c32
KY
779 doc/ja/lxc.sgml
780 doc/ja/common_options.sgml
781 doc/ja/see_also.sgml
782
2b371b26 783 doc/ko/Makefile
2b371b26
SY
784 doc/ko/lxc-attach.sgml
785 doc/ko/lxc-autostart.sgml
786 doc/ko/lxc-cgroup.sgml
787 doc/ko/lxc-checkconfig.sgml
788 doc/ko/lxc-checkpoint.sgml
789 doc/ko/lxc-clone.sgml
790 doc/ko/lxc-config.sgml
791 doc/ko/lxc-console.sgml
b035f792 792 doc/ko/lxc-copy.sgml
2b371b26
SY
793 doc/ko/lxc-create.sgml
794 doc/ko/lxc-destroy.sgml
795 doc/ko/lxc-device.sgml
796 doc/ko/lxc-execute.sgml
797 doc/ko/lxc-freeze.sgml
798 doc/ko/lxc-info.sgml
799 doc/ko/lxc-ls.sgml
800 doc/ko/lxc-monitor.sgml
801 doc/ko/lxc-snapshot.sgml
802 doc/ko/lxc-start-ephemeral.sgml
803 doc/ko/lxc-start.sgml
804 doc/ko/lxc-stop.sgml
805 doc/ko/lxc-top.sgml
806 doc/ko/lxc-unfreeze.sgml
807 doc/ko/lxc-unshare.sgml
808 doc/ko/lxc-user-nic.sgml
809 doc/ko/lxc-usernsexec.sgml
810 doc/ko/lxc-wait.sgml
811
812 doc/ko/lxc.conf.sgml
813 doc/ko/lxc.container.conf.sgml
814 doc/ko/lxc.system.conf.sgml
815 doc/ko/lxc-usernet.sgml
816 doc/ko/lxc.sgml
817 doc/ko/common_options.sgml
818 doc/ko/see_also.sgml
819
906f8c4d
SG
820 hooks/Makefile
821
c01d62f2 822 templates/Makefile
f8d0243a 823 templates/lxc-alpine
824 templates/lxc-altlinux
825 templates/lxc-archlinux
826 templates/lxc-busybox
827 templates/lxc-centos
58a46e06 828 templates/lxc-cirros
c01d62f2 829 templates/lxc-debian
71d3a659 830 templates/lxc-download
c01d62f2 831 templates/lxc-fedora
f8d0243a 832 templates/lxc-gentoo
9aad9d12 833 templates/lxc-openmandriva
f8d0243a 834 templates/lxc-opensuse
708f4a80 835 templates/lxc-oracle
cab79123 836 templates/lxc-plamo
3a05a669 837 templates/lxc-slackware
f8d0243a 838 templates/lxc-sshd
839 templates/lxc-ubuntu
840 templates/lxc-ubuntu-cloud
beabd0a2 841 templates/lxc-sparclinux
c9844b87 842
288063bd 843 src/Makefile
5e97c3fc 844 src/lxc/Makefile
237315ff 845 src/lxc/lxc-checkconfig
5b12984b 846 src/lxc/lxc-start-ephemeral
2a59a681 847 src/lxc/lxc.functions
a22185dd 848 src/lxc/version.h
be2e4e54 849 src/python-lxc/Makefile
d79067a7 850 src/python-lxc/setup.py
be2e4e54 851
f080ffd7
DE
852 src/lua-lxc/Makefile
853
72d0e1cb 854 src/tests/Makefile
8cb8e496 855 src/tests/lxc-test-usernic
5e97c3fc 856])
857AC_CONFIG_COMMANDS([default],[[]],[[]])
858AC_OUTPUT
f91d5e4e
SG
859
860# Configuration overview
861cat << EOF
862
863----------------------------
864Environment:
865 - compiler: $CC
866 - distribution: $with_distro
89f79f6b 867 - init script type(s): $init_script
f91d5e4e 868 - rpath: $enable_rpath
d8d44659 869 - GnuTLS: $enable_gnutls
0306de4f 870 - Bash integration: $enable_bash
f91d5e4e
SG
871
872Security features:
873 - Apparmor: $enable_apparmor
874 - Linux capabilities: $enable_capabilities
875 - seccomp: $enable_seccomp
876 - SELinux: $enable_selinux
d4ef7c50 877 - cgmanager: $enable_cgmanager
f91d5e4e
SG
878
879Bindings:
880 - lua: $enable_lua
881 - python3: $enable_python
882
883Documentation:
884 - examples: $enable_examples
885 - API documentation: $enable_api_docs
886 - user documentation: $enable_doc
887
888Debugging:
889 - tests: $enable_tests
890 - mutex debugging: $enable_mutex_debugging
891
892Paths:
893 - Logs in configpath: $enable_configpath_log
894EOF
babbea4b
ÇO
895
896if test "x$ac_cv_func_pthread_atfork" = "xno" ; then
897cat << EOF
898
899WARNING: Threading not supported on your platform
900
901 You are compiling LXC for bionic target which lacks certain threading related functionality used by LXC API (like pthread_atfork).
902 Please note that, because of the missing functionality, multithreaded usage of LXC API cause some problems.
903EOF
904fi