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