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