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