configure.ac revision f338fa89ef28b40f1607416042711d7eda614458
52N/A# -*- Autoconf -*-
52N/A# Process this file with autoconf to produce a configure script.
292N/A
52N/Am4_define([lxc_version_major], 1)
52N/Am4_define([lxc_version_minor], 0)
327N/Am4_define([lxc_version_micro], 0)
52N/Am4_define([lxc_version_beta], [rc3])
52N/A
52N/Am4_define([lxc_version_base], [lxc_version_major.lxc_version_minor.lxc_version_micro])
52N/Am4_define([lxc_version],
292N/A [ifelse(lxc_version_beta, [], [lxc_version_base], [lxc_version_base.lxc_version_beta])])
292N/A
292N/AAC_INIT([lxc], [lxc_version])
292N/A
52N/A# We need pkg-config
52N/APKG_PROG_PKG_CONFIG
52N/A
292N/AAC_SUBST(LXC_VERSION_BASE, lxc_version_base)
292N/AAC_SUBST(LXC_VERSION_BETA, lxc_version_beta)
292N/A
292N/AAC_SUBST([LXC_VERSION_MAJOR], [lxc_version_major])
292N/AAC_SUBST([LXC_VERSION_MINOR], [lxc_version_minor])
292N/AAC_SUBST([LXC_VERSION_MICRO], [lxc_version_micro])
292N/AAC_SUBST([LXC_VERSION], [lxc_version])
292N/A
292N/AAC_CONFIG_SRCDIR([configure.ac])
292N/AAC_CONFIG_AUX_DIR([config])
292N/AAC_CONFIG_HEADERS([src/config.h])
52N/AAM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability subdir-objects])
52N/AAC_CANONICAL_HOST
52N/AAM_PROG_CC_C_O
52N/AAC_GNU_SOURCE
52N/A
52N/A# Detect the distribution. This is used for the default configuration and
52N/A# for some distro-specific build options.
52N/AAC_MSG_CHECKING([host distribution])
52N/AAC_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.]))
52N/Aif type lsb_release >/dev/null 2>&1 && test "z$with_distro" = "z"; then
52N/A with_distro=`lsb_release -is`
52N/Afi
292N/Aif test "z$with_distro" = "z"; then
52N/A AC_CHECK_FILE(/etc/redhat-release,with_distro="redhat")
52N/A AC_CHECK_FILE(/etc/oracle-release,with_distro="oracle")
6N/A AC_CHECK_FILE(/etc/centos-release,with_distro="centos")
6N/A AC_CHECK_FILE(/etc/fedora-release,with_distro="fedora")
6N/A AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
6N/A AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
6N/A AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
15N/A AC_CHECK_FILE(/etc/arch-release,with_distro="arch")
6N/A AC_CHECK_FILE(/etc/slackware-version,with_distro="slackware")
6N/A AC_CHECK_FILE(/etc/frugalware-release,with_distro="frugalware")
335N/A AC_CHECK_FILE(/etc/mandrakelinux-release, with_distro="openmandriva")
6N/A AC_CHECK_FILE(/etc/mandriva-release,with_distro="openmandriva")
15N/A AC_CHECK_FILE(/etc/pardus-release,with_distro="pardus")
302N/Afi
6N/Awith_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]'`
6N/A
6N/Aif test "z$with_distro" = "z"; then
6N/A with_distro="unknown"
6N/Afi
6N/Acase $with_distro in
6N/A ubuntu)
6N/A distroconf=default.conf.ubuntu
6N/A ;;
6N/A redhat|centos|fedora|oracle|oracleserver)
15N/A distroconf=default.conf.libvirt
6N/A ;;
6N/A *)
6N/A distroconf=default.conf.unknown
6N/A ;;
6N/Aesac
6N/AAC_MSG_RESULT([$with_distro])
302N/AAM_CONDITIONAL([HAVE_DEBIAN], [test x"$with_distro" = "xdebian" -o x"$with_distro" = "xubuntu"])
302N/AAM_CONDITIONAL([DISTRO_UBUNTU], [test "x$with_distro" = "xubuntu"])
6N/A
6N/A# Check for init system type
6N/AAC_MSG_CHECKING([for init system type])
335N/AAC_ARG_WITH([init-script],
121N/A [AC_HELP_STRING([--with-init-script@<:@=TYPE@<:@,TYPE,...@:>@@:>@],
335N/A [Type(s) of init script to install: sysvinit, systemd, upstart,
6N/A distro @<:@default=distro@:>@])],[],[with_init_script=distro])
6N/Acase "$with_init_script" in
15N/A distro)
15N/A case $with_distro in
15N/A fedora)
15N/A init_script=systemd
15N/A ;;
15N/A redhat|centos|oracle|oracleserver)
15N/A init_script=sysvinit
15N/A ;;
15N/A debian)
15N/A init_script=upstart,systemd
302N/A ;;
302N/A ubuntu)
302N/A init_script=upstart
44N/A ;;
44N/A *)
44N/A echo -n "Linux distribution init system unknown."
191N/A init_script=
191N/A ;;
191N/A esac
191N/A ;;
191N/A *)
191N/A init_script=$with_init_script
44N/A ;;
44N/Aesac
44N/A
190N/A# Check valid init systems were given, run in subshell so we don't mess up IFS
194N/A(IFS="," ; for init_sys in $init_script;
194N/Ado
220N/A case "$init_sys" in
221N/A none|sysvinit|systemd|upstart)
349N/A ;;
349N/A *)
349N/A exit 1
367N/A ;;
367N/A esac
367N/Adone) || AC_MSG_ERROR([Unknown init system type in $init_script])
367N/A
367N/AAM_CONDITIONAL([INIT_SCRIPT_SYSV], [echo "$init_script" |grep -q "sysvinit"])
367N/AAM_CONDITIONAL([INIT_SCRIPT_SYSTEMD], [echo "$init_script" |grep -q "systemd"])
367N/AAM_CONDITIONAL([INIT_SCRIPT_UPSTART], [echo "$init_script" |grep -q "upstart"])
6N/AAC_MSG_RESULT($init_script)
6N/A
6N/A# Allow disabling rpath
6N/AAC_ARG_ENABLE([rpath],
6N/A [AC_HELP_STRING([--enable-rpath], [set rpath in executables [default=no]])],
6N/A [], [enable_rpath=no])
302N/AAM_CONDITIONAL([ENABLE_RPATH], [test "x$enable_rpath" = "xyes"])
6N/A
6N/A# Documentation (manpages)
6N/AAC_ARG_ENABLE([doc],
6N/A [AC_HELP_STRING([--enable-doc], [make man pages [default=auto]])],
6N/A [], [enable_doc=auto])
6N/A
6N/Aif test "x$enable_doc" = "xyes" -o "x$enable_doc" = "xauto"; then
6N/A db2xman=""
6N/A dbparsers="docbook2x-man db2x_docbook2man docbook2man docbook-to-man"
302N/A
6N/A AC_MSG_CHECKING(for docbook2x-man)
6N/A for name in ${dbparsers}; do
6N/A if "$name" --help >/dev/null 2>&1; then
6N/A db2xman="$name"
302N/A break;
6N/A fi
6N/A done
63N/A
63N/A if test -n "${db2xman}"; then
63N/A AC_MSG_RESULT([${db2xman}])
63N/A enable_doc="yes"
63N/A else
63N/A AC_MSG_RESULT([no])
63N/A if test "x$enable_doc" = "xyes"; then
63N/A AC_MSG_ERROR([docbook2x-man is required, but could not be found])
63N/A fi
63N/A enable_doc="no"
63N/A fi
63N/A
63N/A AC_SUBST(db2xman)
63N/Afi
168N/AAM_CONDITIONAL([ENABLE_DOCBOOK], [test "x$db2xman" != "x"])
275N/AAM_CONDITIONAL([USE_DOCBOOK2X], [test "x$db2xman" != "xdocbook2man"])
63N/A
63N/Aif test "x$db2xman" = "xdocbook2man"; then
63N/A docdtd="\"-//Davenport//DTD DocBook V3.0//EN\""
63N/Aelse
63N/A docdtd="\"-//OASIS//DTD DocBook XML\" \"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd\""
63N/Afi
63N/AAC_SUBST(docdtd)
63N/A
63N/A# Documentation (API)
63N/AAC_ARG_ENABLE([api-docs],
63N/A [AC_HELP_STRING([--enable-api-docs],
63N/A [make API documentation [default=auto]])],
63N/A [], [enable_api_docs=auto])
63N/A
63N/Aif test "x$enable_api_docs" = "xyes" -o "x$enable_api_docs" = "xauto"; then
63N/A AC_CHECK_PROGS([HAVE_DOXYGEN],[doxygen])
288N/A AC_SUBST([HAVE_DOXYGEN])
288N/A
288N/A if test "x$HAVE_DOXYGEN" != "x"; then
327N/A enable_api_docs="yes"
327N/A else
327N/A if test "x$enable_api_docs" = "xyes"; then
327N/A AC_MSG_ERROR([doxygen is required, but could not be found])
327N/A fi
327N/A enable_api_docs="no"
327N/A fi
327N/Afi
327N/A
327N/AAM_CONDITIONAL([ENABLE_API_DOCS], [test "x$HAVE_DOXYGEN" != "x"])
327N/A
63N/A# Apparmor
220N/AAC_ARG_ENABLE([apparmor],
220N/A [AC_HELP_STRING([--enable-apparmor], [enable apparmor support [default=auto]])],
220N/A [], [enable_apparmor=auto])
220N/A
220N/Aif test "$enable_apparmor" = "auto" ; then
220N/A AC_CHECK_LIB([apparmor],[aa_change_profile],[enable_apparmor=yes], [enable_apparmor=no])
220N/Afi
220N/AAM_CONDITIONAL([ENABLE_APPARMOR], [test "x$enable_apparmor" = "xyes"])
220N/A
220N/AAC_CHECK_LIB([gnutls], [gnutls_hash_fast], [enable_gnutls=yes], [enable_gnutls=no])
220N/A
220N/AAM_COND_IF([ENABLE_APPARMOR],
220N/A [AC_CHECK_HEADER([sys/apparmor.h],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
220N/A AC_CHECK_LIB([apparmor], [aa_change_profile],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
220N/A AC_SUBST([APPARMOR_LIBS], [-lapparmor])])
220N/A
220N/A# SELinux
220N/AAC_ARG_ENABLE([selinux],
220N/A [AC_HELP_STRING([--enable-selinux], [enable SELinux support [default=auto]])],
220N/A [], [enable_selinux=auto])
220N/A
220N/Aif test "x$enable_selinux" = xauto; then
220N/A AC_CHECK_LIB([selinux],[setexeccon_raw],[enable_selinux=yes],[enable_selinux=no])
253N/Afi
220N/AAM_CONDITIONAL([ENABLE_SELINUX], [test "x$enable_selinux" = "xyes"])
220N/AAM_COND_IF([ENABLE_SELINUX],
220N/A [AC_CHECK_HEADER([selinux/selinux.h],[],[AC_MSG_ERROR([You must install the SELinux development package in order to compile lxc])])
220N/A AC_CHECK_LIB([selinux], [setexeccon_raw],[],[AC_MSG_ERROR([You must install the SELinux development package in order to compile lxc])])
253N/A AC_SUBST([SELINUX_LIBS])])
253N/A
253N/A# Seccomp syscall filter
220N/AAC_ARG_ENABLE([seccomp],
220N/A [AC_HELP_STRING([--enable-seccomp], [enable seccomp support [default=auto]])],
220N/A [], [enable_seccomp=auto])
220N/A
220N/Aif test "x$enable_seccomp" = "xauto" ; then
220N/A AC_CHECK_LIB([seccomp],[seccomp_init],[enable_seccomp=yes],[enable_seccomp=no])
220N/Afi
220N/AAM_CONDITIONAL([ENABLE_SECCOMP], [test "x$enable_seccomp" = "xyes"])
63N/A
63N/AAM_COND_IF([ENABLE_SECCOMP],
63N/A [PKG_CHECK_MODULES([SECCOMP],[libseccomp],[],[
63N/A AC_CHECK_HEADER([seccomp.h],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
63N/A AC_CHECK_LIB([seccomp], [seccomp_init],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
327N/A AC_SUBST([SECCOMP_LIBS], [-lseccomp])
327N/A ])
327N/A ])
187N/A
63N/A# cgmanager
63N/AAC_ARG_ENABLE([cgmanager],
63N/A [AC_HELP_STRING([--enable-cgmanager], [enable cgmanager support [default=auto]])],
6N/A [], [enable_cgmanager=auto])
26N/A
6N/Aif test "x$enable_cgmanager" = "xauto" ; then
44N/A AC_CHECK_LIB([cgmanager],[cgmanager_create],[enable_cgmanager=yes],[enable_cgmanager=no],[-lnih -lnih-dbus -ldbus-1])
213N/Afi
213N/AAM_CONDITIONAL([ENABLE_CGMANAGER], [test "x$enable_cgmanager" = "xyes"])
213N/A
213N/AAM_COND_IF([ENABLE_CGMANAGER],
213N/A [PKG_CHECK_MODULES([CGMANAGER], [libcgmanager])
213N/A PKG_CHECK_MODULES([NIH], [libnih >= 1.0.2])
213N/A PKG_CHECK_MODULES([NIH_DBUS], [libnih-dbus >= 1.0.0])
213N/A PKG_CHECK_MODULES([DBUS], [dbus-1 >= 1.2.16])
222N/A ])
222N/A
222N/A# Linux capabilities
222N/AAC_ARG_ENABLE([capabilities],
222N/A [AC_HELP_STRING([--enable-capabilities], [enable kernel capabilities support [default=auto]])],
222N/A [], [enable_capabilities=auto])
222N/A
222N/Aif test "x$enable_capabilities" = "xauto"; then
222N/A AC_CHECK_LIB([cap],[cap_set_proc],[enable_capabilities=yes],[enable_capabilities=no])
222N/Afi
222N/AAM_CONDITIONAL([ENABLE_CAP], [test "x$enable_capabilities" = "xyes"])
222N/A
222N/AAM_COND_IF([ENABLE_CAP],
222N/A [AC_CHECK_LIB(cap,cap_set_proc,[],[AC_MSG_ERROR([You are missing libcap support.])])
222N/A AC_SUBST([CAP_LIBS], [-lcap])])
213N/A
213N/A# HAVE_SCMP_FILTER_CTX=1 will tell us we have libseccomp api >= 1.0.0
213N/AOLD_CFLAGS="$CFLAGS"
44N/ACFLAGS="$CFLAGS $SECCOMP_CFLAGS"
44N/AAC_CHECK_TYPES([scmp_filter_ctx], [], [], [[#include <seccomp.h>]])
302N/AAC_CHECK_DECLS([seccomp_syscall_resolve_name_arch], [], [], [[#include <seccomp.h>]])
44N/ACFLAGS="$OLD_CFLAGS"
44N/A
44N/A# Configuration examples
44N/AAC_ARG_ENABLE([examples],
44N/A [AC_HELP_STRING([--enable-examples], [install examples [default=yes]])],
44N/A [], [enable_examples=yes])
44N/AAM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" = "xyes"])
302N/A
302N/A# Python3 module and scripts
302N/AAC_ARG_ENABLE([python],
44N/A [AC_HELP_STRING([--enable-python], [enable python binding [default=auto]])],
44N/A [], [enable_python=auto])
44N/A
191N/Aif test "x$enable_python" = "xauto"; then
191N/A PKG_CHECK_MODULES([PYTHONDEV], [python3 >= 3.2],[enable_python=yes],[enable_python=no])
191N/A if test "$CC" = "clang"; then
44N/A enable_python=no
44N/A fi
44N/Afi
206N/A
206N/Aif test "x$enable_python" = "xyes" && test "$CC" = "clang"; then
206N/A AC_MSG_ERROR([Python3 is incompatible with the clang compiler])
44N/Afi
44N/A
44N/AAM_CONDITIONAL([ENABLE_PYTHON], [test "x$enable_python" = "xyes"])
44N/A
44N/AAM_COND_IF([ENABLE_PYTHON],
44N/A [AM_PATH_PYTHON([3.2], [], [AC_MSG_ERROR([You must install python3])])
44N/A PKG_CHECK_MODULES([PYTHONDEV], [python3 >= 3.2],[],[AC_MSG_ERROR([You must install python3-dev])])
44N/A AC_DEFINE_UNQUOTED([ENABLE_PYTHON], 1, [Python3 is available])])
44N/A
44N/A# Enable dumping stack traces
44N/AAC_ARG_ENABLE([mutex-debugging],
44N/A [AC_HELP_STRING([--enable-mutex-debugging], [Makes mutexes to report error and provide stack trace [default=no]])],
44N/A [], [enable_mutex_debugging=no])
44N/AAM_CONDITIONAL([MUTEX_DEBUGGING], [test "x$enable_mutex_debugging" = "xyes"])
44N/A
44N/AAM_COND_IF([MUTEX_DEBUGGING],
44N/A AC_DEFINE_UNQUOTED([MUTEX_DEBUGGING], 1, [Enabling mutex debugging]))
194N/A
194N/A# Not in older autoconf versions
194N/A# AS_VAR_COPY(DEST, SOURCE)
194N/A# -------------------------
194N/A# Set the polymorphic shell variable DEST to the contents of the polymorphic
194N/A# shell variable SOURCE.
194N/Am4_ifdef([AS_VAR_COPY], [],
194N/A[AC_DEFUN([AS_VAR_COPY],
194N/A [AS_LITERAL_IF([$1[]$2], [$1=$$2], [eval $1=\$$2])])
194N/A])
194N/A
194N/Adnl PKG_CHECK_VAR was introduced with pkg-config 0.28
194N/Am4_ifdef([PKG_CHECK_VAR], [],
194N/A[AC_DEFUN([PKG_CHECK_VAR],
194N/A [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
194N/A AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
194N/A _PKG_CONFIG([$1], [variable="][$3]["], [$2])
194N/A AS_VAR_COPY([$1], [pkg_cv_][$1])
194N/A AS_VAR_IF([$1], [""], [$5], [$4])dnl
194N/A ])# PKG_CHECK_VAR
194N/A])
194N/A
194N/A# Lua module and scripts
194N/AAC_ARG_ENABLE([lua],
194N/A [AC_HELP_STRING([--enable-lua], [enable lua binding [default=auto]])],
194N/A [], [enable_lua=auto])
213N/A
213N/AAC_ARG_WITH([lua-pc],
213N/A [AS_HELP_STRING(
213N/A [--with-lua-pc=PKG],
6N/A [Specify pkg-config package name for lua]
6N/A )], [], [with_lua_pc=no])
213N/A
213N/Aif test "x$enable_lua" = "xyes" -a "x$with_lua_pc" != "xno"; then
213N/A # exit with error if not found
213N/A PKG_CHECK_MODULES([LUA], [$with_lua_pc], [LUAPKGCONFIG=$with_lua_pc])
213N/Afi
213N/A
213N/Aif test "x$enable_lua" = "xauto" -a "x$with_lua_pc" != "xno"; then
213N/A PKG_CHECK_MODULES([LUA], [$with_lua_pc],
213N/A [LUAPKGCONFIG=$with_lua_pc
213N/A enable_lua=yes],
213N/A [enable_lua=no])
213N/Afi
213N/A
213N/Aif test "x$enable_lua" != "xno"; then
213N/A PKG_CHECK_MODULES([LUA], [lua], [LUAPKGCONFIG=lua],
213N/A [PKG_CHECK_MODULES([LUA], [lua5.2], [LUAPKGCONFIG=lua5.2],
6N/A [PKG_CHECK_MODULES([LUA], [lua5.1], [LUAPKGCONFIG=lua5.1],
6N/A [AS_IF([test "x$enable_lua" = "xyes"],
6N/A [AC_MSG_ERROR([Lua not found. Please use --with-lua-pc=PKG])],
15N/A [enable_lua=no])]
15N/A )]
15N/A )])
15N/A AS_IF([test "x$LUAPKGCONFIG" != "x"], [enable_lua=yes])
15N/Afi
44N/A
44N/AAM_CONDITIONAL([ENABLE_LUA],
44N/A [test "x$enable_lua" = "xyes"])
44N/A
44N/AAM_COND_IF([ENABLE_LUA],
44N/A [AC_MSG_CHECKING([Lua version])
44N/A PKG_CHECK_VAR([LUA_VERSION], [$LUAPKGCONFIG], [V],,
44N/A [PKG_CHECK_VAR([LUA_VERSION], [$LUAPKGCONFIG], [major_version])])
15N/A AC_MSG_RESULT([$LUA_VERSION])
15N/A PKG_CHECK_VAR([LUA_INSTALL_CMOD], [$LUAPKGCONFIG], [INSTALL_CMOD],,
15N/A [LUA_INSTALL_CMOD=$libdir/lua/$LUA_VERSION])
15N/A PKG_CHECK_VAR([LUA_INSTALL_LMOD], [$LUAPKGCONFIG], [INSTALL_LMOD],,
15N/A [LUA_INSTALL_LMOD=$datadir/lua/$LUA_VERSION])
15N/A ])
15N/A
15N/A# Optional bash integration
302N/AAC_ARG_ENABLE([bash],
302N/A [AC_HELP_STRING([--enable-bash], [build bash integration [default=yes]])],
15N/A [], [enable_bash=yes])
15N/AAM_CONDITIONAL([ENABLE_BASH], [test "x$enable_bash" = "xyes"])
15N/A
15N/A# Optional test binaries
15N/AAC_ARG_ENABLE([tests],
15N/A [AC_HELP_STRING([--enable-tests], [build test/example binaries [default=no]])],
15N/A [], [enable_tests=no])
15N/AAM_CONDITIONAL([ENABLE_TESTS], [test "x$enable_tests" = "xyes"])
15N/A
15N/A# Allow overriding the default runtime dir (/run)
15N/AAC_ARG_WITH([runtime-path],
15N/A [AC_HELP_STRING(
15N/A [--with-runtime-path=dir],
15N/A [runtime directory (default: /run)]
15N/A )], [], [with_runtime_path=['/run']])
190N/A
190N/A# LXC container path, where the containers are actually stored
190N/A# This is overridden by an entry in the file called LXCCONF
15N/A# (i.e. /etc/lxc/lxc.conf)
15N/AAC_ARG_WITH([config-path],
15N/A [AC_HELP_STRING(
15N/A [--with-config-path=dir],
15N/A [lxc configuration repository path]
15N/A )], [], [with_config_path=['${localstatedir}/lib/lxc']])
6N/A
6N/A# The path of the global lxc configuration file.
6N/AAC_ARG_WITH([global-conf],
372N/A [AC_HELP_STRING(
372N/A [--with-global-conf=dir],
372N/A [global lxc configuration file]
372N/A )], [], [with_global_conf=['${sysconfdir}/lxc/lxc.conf']])
372N/A
372N/A# The path of the userns network configuration file
372N/AAC_ARG_WITH([usernic-conf],
372N/A [AC_HELP_STRING(
372N/A [--with-usernic-conf],
372N/A [user network interface configuration file]
372N/A )], [], [with_usernic_conf=['${sysconfdir}/lxc/lxc-usernet']])
372N/A
372N/A# The path of the runtime usernic database
372N/AAC_ARG_WITH([usernic-db],
372N/A [AC_HELP_STRING(
372N/A [--with-usernic-db],
372N/A [lxc user nic database]
372N/A )], [], [with_usernic_db=['${with_runtime_path}/lxc/nics']])
372N/A
372N/A# Rootfs path, where the container mount structure is assembled
372N/AAC_ARG_WITH([rootfs-path],
372N/A [AC_HELP_STRING(
372N/A [--with-rootfs-path=dir],
372N/A [lxc rootfs mount point]
372N/A )], [], [with_rootfs_path=['${libdir}/lxc/rootfs']])
372N/A
372N/A# cgroup pattern specification
372N/AAC_ARG_WITH([cgroup-pattern],
372N/A [AC_HELP_STRING(
372N/A [--with-cgroup-pattern=pattern],
372N/A [pattern for container cgroups]
372N/A )], [], [with_cgroup_pattern=['/lxc/%n']])
372N/A
372N/A# Container log path. By default, use $lxcpath.
372N/AAC_MSG_CHECKING([Whether to place logfiles in container config path])
372N/AAC_ARG_ENABLE([configpath-log],
372N/A [AC_HELP_STRING([--enable-configpath-log], [use logfiles in config path [default=no]])],
372N/A [], [enable_configpath_log=no])
372N/AAC_MSG_RESULT([$enable_configpath_log])
372N/AAM_CONDITIONAL([USE_CONFIGPATH_LOGS], [test "$enable_configpath_log" = "yes"])
372N/A
372N/Aif test "$enable_configpath_log" = "yes"; then
372N/A default_log_path="${with_config_path}"
372N/Aelse
372N/A default_log_path="${localstatedir}/log/lxc"
372N/Afi
372N/A
6N/AAC_ARG_WITH([log-path],
6N/A [AC_HELP_STRING(
6N/A [--with-log-path=dir],
6N/A [per container log path]
6N/A )], [], [with_log_path=['${default_log_path}']])
6N/A
6N/A# Expand some useful variables
6N/AAS_AC_EXPAND(PREFIX, "$prefix")
6N/AAS_AC_EXPAND(LIBDIR, "$libdir")
6N/AAS_AC_EXPAND(BINDIR, "$bindir")
6N/AAS_AC_EXPAND(LIBEXECDIR, "$libexecdir")
6N/AAS_AC_EXPAND(INCLUDEDIR, "$includedir")
6N/AAS_AC_EXPAND(SYSCONFDIR, "$sysconfdir")
6N/AAS_AC_EXPAND(LXC_DEFAULT_CONFIG, "$sysconfdir/lxc/default.conf")
6N/AAS_AC_EXPAND(DATADIR, "$datadir")
6N/AAS_AC_EXPAND(LOCALSTATEDIR, "$localstatedir")
6N/AAS_AC_EXPAND(DOCDIR, "$docdir")
6N/AAS_AC_EXPAND(LXC_DISTRO_CONF, "$distroconf")
6N/AAS_AC_EXPAND(LXC_GENERATE_DATE, "$(date)")
6N/AAS_AC_EXPAND(LXCPATH, "$with_config_path")
121N/AAS_AC_EXPAND(LXC_GLOBAL_CONF, "$with_global_conf")
6N/AAS_AC_EXPAND(LXC_USERNIC_CONF, "$with_usernic_conf")
6N/AAS_AC_EXPAND(LXC_USERNIC_DB, "$with_usernic_db")
6N/AAS_AC_EXPAND(LXCROOTFSMOUNT, "$with_rootfs_path")
6N/AAS_AC_EXPAND(LXCTEMPLATEDIR, "$datadir/lxc/templates")
6N/AAS_AC_EXPAND(LXCTEMPLATECONFIG, "$datadir/lxc/config")
6N/AAS_AC_EXPAND(LXCHOOKDIR, "$datadir/lxc/hooks")
6N/AAS_AC_EXPAND(LXCINITDIR, "$libexecdir")
6N/AAS_AC_EXPAND(LOGPATH, "$with_log_path")
6N/AAS_AC_EXPAND(RUNTIME_PATH, "$with_runtime_path")
63N/AAC_SUBST(DEFAULT_CGROUP_PATTERN, ["$with_cgroup_pattern"])
63N/A
63N/A# Check for some standard kernel headers
63N/AAC_CHECK_HEADERS([linux/unistd.h linux/netlink.h linux/genetlink.h],
63N/A [],
63N/A AC_MSG_ERROR([Please install the Linux kernel headers.]),
63N/A [#include <sys/socket.h>])
63N/A
63N/A# Check for alternate C libraries
6N/AAC_MSG_CHECKING(for bionic libc)
63N/AAC_COMPILE_IFELSE([AC_LANG_PROGRAM(
164N/A [[#ifndef __ANDROID__
164N/Aerror: Not bionic!
164N/A#endif]])],
164N/A [is_bionic=yes],
164N/A [is_bionic=no])
367N/Aif test "x$is_bionic" = "xyes"; then
367N/A AC_DEFINE([IS_BIONIC], 1, [bionic libc])
164N/A AC_MSG_RESULT([yes])
164N/Aelse
164N/A AC_MSG_RESULT([no])
367N/Afi
164N/AAM_CONDITIONAL([IS_BIONIC], [test "x$is_bionic" = "xyes"])
367N/A
367N/A# Some systems lack PR_CAPBSET_DROP definition => HAVE_DECL_PR_CAPBSET_DROP
367N/AAC_CHECK_DECLS([PR_CAPBSET_DROP], [], [], [#include <sys/prctl.h>])
367N/A
367N/A# Check for some headers
367N/AAC_CHECK_HEADERS([sys/signalfd.h pty.h ifaddrs.h sys/capability.h sys/personality.h utmpx.h sys/timerfd.h])
367N/A
164N/A# Check for some syscalls functions
164N/AAC_CHECK_FUNCS([setns pivot_root sethostname unshare rand_r confstr faccessat])
314N/A
314N/A# Check for some functions
314N/AAC_CHECK_LIB(pthread, main)
314N/AAC_CHECK_FUNCS(pthread_atfork)
314N/AAC_CHECK_LIB(util, openpty)
314N/AAC_CHECK_FUNCS([openpty hasmntopt setmntent endmntent utmpxname])
314N/AAC_CHECK_FUNCS([getline],
314N/A AM_CONDITIONAL(HAVE_GETLINE, true)
314N/A AC_DEFINE(HAVE_GETLINE,1,[Have getline]),
314N/A AM_CONDITIONAL(HAVE_GETLINE, false))
371N/AAC_CHECK_FUNCS([fgetln],
371N/A AM_CONDITIONAL(HAVE_FGETLN, true)
371N/A AC_DEFINE(HAVE_FGETLN,1,[Have fgetln]),
371N/A AM_CONDITIONAL(HAVE_FGETLN, false))
371N/A
164N/A# Check for some libraries
164N/AAC_SEARCH_LIBS(sem_open, [rt pthread])
164N/AAC_SEARCH_LIBS(clock_gettime, [rt])
63N/A
63N/A# Check for some standard binaries
63N/AAC_PROG_GCC_TRADITIONAL
63N/AAC_PROG_SED
63N/A
63N/A# See if we support thread-local storage.
63N/ALXC_CHECK_TLS
63N/A
63N/Aif test "x$GCC" = "xyes"; then
63N/A CFLAGS="$CFLAGS -Wall -Werror"
63N/Afi
63N/A
63N/A# Files requiring some variable expansion
6N/AAC_CONFIG_FILES([
6N/A Makefile
32N/A lxc.pc
32N/A lxc.spec
32N/A
308N/A config/Makefile
308N/A config/apparmor/Makefile
32N/A config/bash/Makefile
32N/A config/bash/lxc
32N/A config/init/Makefile
32N/A config/init/sysvinit/Makefile
32N/A config/init/systemd/Makefile
32N/A config/init/upstart/Makefile
32N/A config/etc/Makefile
32N/A config/templates/Makefile
32N/A config/templates/centos.common.conf
32N/A config/templates/centos.userns.conf
32N/A config/templates/debian.common.conf
32N/A config/templates/debian.userns.conf
32N/A config/templates/fedora.common.conf
32N/A config/templates/fedora.userns.conf
32N/A config/templates/gentoo.common.conf
32N/A config/templates/gentoo.moresecure.conf
32N/A config/templates/gentoo.userns.conf
32N/A config/templates/oracle.common.conf
32N/A config/templates/oracle.userns.conf
32N/A config/templates/plamo.common.conf
32N/A config/templates/plamo.userns.conf
32N/A config/templates/ubuntu-cloud.common.conf
32N/A config/templates/ubuntu-cloud.lucid.conf
32N/A config/templates/ubuntu-cloud.userns.conf
32N/A config/templates/ubuntu.common.conf
32N/A config/templates/ubuntu.lucid.conf
32N/A config/templates/ubuntu.userns.conf
32N/A
32N/A doc/Makefile
32N/A doc/api/Makefile
6N/A doc/legacy/lxc-ls.sgml
6N/A doc/lxc-attach.sgml
6N/A doc/lxc-autostart.sgml
6N/A doc/lxc-cgroup.sgml
6N/A doc/lxc-checkconfig.sgml
6N/A doc/lxc-clone.sgml
6N/A doc/lxc-config.sgml
6N/A doc/lxc-console.sgml
6N/A doc/lxc-create.sgml
63N/A doc/lxc-destroy.sgml
63N/A doc/lxc-device.sgml
63N/A doc/lxc-execute.sgml
63N/A doc/lxc-freeze.sgml
63N/A doc/lxc-info.sgml
6N/A doc/lxc-ls.sgml
199N/A doc/lxc-monitor.sgml
199N/A doc/lxc-snapshot.sgml
199N/A doc/lxc-start-ephemeral.sgml
199N/A doc/lxc-start.sgml
199N/A doc/lxc-stop.sgml
199N/A doc/lxc-top.sgml
199N/A doc/lxc-unfreeze.sgml
199N/A doc/lxc-unshare.sgml
367N/A doc/lxc-user-nic.sgml
367N/A doc/lxc-usernsexec.sgml
367N/A doc/lxc-wait.sgml
367N/A
367N/A doc/lxc.conf.sgml
367N/A doc/lxc.container.conf.sgml
367N/A doc/lxc.system.conf.sgml
367N/A doc/lxc-usernet.sgml
367N/A doc/lxc.sgml
367N/A doc/common_options.sgml
367N/A doc/see_also.sgml
367N/A
367N/A doc/rootfs/Makefile
367N/A
367N/A doc/examples/Makefile
367N/A doc/examples/lxc-macvlan.conf
367N/A doc/examples/lxc-vlan.conf
367N/A doc/examples/lxc-no-netns.conf
367N/A doc/examples/lxc-empty-netns.conf
367N/A doc/examples/lxc-phys.conf
6N/A doc/examples/lxc-veth.conf
doc/examples/lxc-complex.conf
doc/ja/Makefile
doc/ja/legacy/lxc-ls.sgml
doc/ja/lxc-attach.sgml
doc/ja/lxc-autostart.sgml
doc/ja/lxc-cgroup.sgml
doc/ja/lxc-checkconfig.sgml
doc/ja/lxc-clone.sgml
doc/ja/lxc-config.sgml
doc/ja/lxc-console.sgml
doc/ja/lxc-create.sgml
doc/ja/lxc-destroy.sgml
doc/ja/lxc-device.sgml
doc/ja/lxc-execute.sgml
doc/ja/lxc-freeze.sgml
doc/ja/lxc-info.sgml
doc/ja/lxc-ls.sgml
doc/ja/lxc-monitor.sgml
doc/ja/lxc-snapshot.sgml
doc/ja/lxc-start-ephemeral.sgml
doc/ja/lxc-start.sgml
doc/ja/lxc-stop.sgml
doc/ja/lxc-top.sgml
doc/ja/lxc-unfreeze.sgml
doc/ja/lxc-unshare.sgml
doc/ja/lxc-user-nic.sgml
doc/ja/lxc-usernsexec.sgml
doc/ja/lxc-wait.sgml
doc/ja/lxc.conf.sgml
doc/ja/lxc.container.conf.sgml
doc/ja/lxc.system.conf.sgml
doc/ja/lxc-usernet.sgml
doc/ja/lxc.sgml
doc/ja/common_options.sgml
doc/ja/see_also.sgml
hooks/Makefile
templates/Makefile
templates/lxc-alpine
templates/lxc-altlinux
templates/lxc-archlinux
templates/lxc-busybox
templates/lxc-centos
templates/lxc-cirros
templates/lxc-debian
templates/lxc-download
templates/lxc-fedora
templates/lxc-gentoo
templates/lxc-openmandriva
templates/lxc-opensuse
templates/lxc-oracle
templates/lxc-plamo
templates/lxc-sshd
templates/lxc-ubuntu
templates/lxc-ubuntu-cloud
src/Makefile
src/lxc/Makefile
src/lxc/lxc-checkconfig
src/lxc/lxc-start-ephemeral
src/lxc/legacy/lxc-ls
src/lxc/lxc.functions
src/lxc/version.h
src/python-lxc/Makefile
src/lua-lxc/Makefile
src/tests/Makefile
src/tests/lxc-test-usernic
])
AC_CONFIG_COMMANDS([default],[[]],[[]])
AC_OUTPUT
# Configuration overview
cat << EOF
----------------------------
Environment:
- compiler: $CC
- distribution: $with_distro
- init script type(s): $init_script
- rpath: $enable_rpath
- GnuTLS: $enable_gnutls
- Bash integration: $enable_bash
Security features:
- Apparmor: $enable_apparmor
- Linux capabilities: $enable_capabilities
- seccomp: $enable_seccomp
- SELinux: $enable_selinux
- cgmanager: $enable_cgmanager
Bindings:
- lua: $enable_lua
- python3: $enable_python
Documentation:
- examples: $enable_examples
- API documentation: $enable_api_docs
- user documentation: $enable_doc
Debugging:
- tests: $enable_tests
- mutex debugging: $enable_mutex_debugging
Paths:
- Logs in configpath: $enable_configpath_log
EOF
if test "x$ac_cv_func_pthread_atfork" = "xno" ; then
cat << EOF
WARNING: Threading not supported on your platform
You are compiling LXC for bionic target which lacks certain threading related functionality used by LXC API (like pthread_atfork).
Please note that, because of the missing functionality, multithreaded usage of LXC API cause some problems.
EOF
fi