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