]> git.proxmox.com Git - mirror_lxc.git/blobdiff - configure.ac
gentoo: fix comments about hardened
[mirror_lxc.git] / configure.ac
index ce4e302955248ed5735418152fec7d70488764cd..1f730d96a57062d1bfb4b12702ddbc1c5eba069f 100644 (file)
@@ -1,7 +1,27 @@
 #                                               -*- Autoconf -*-
 # Process this file with autoconf to produce a configure script.
 
-AC_INIT([lxc], [1.0.0.alpha1])
+m4_define([lxc_version_major], 1)
+m4_define([lxc_version_minor], 0)
+m4_define([lxc_version_micro], 0)
+m4_define([lxc_version_beta], [beta3])
+
+m4_define([lxc_version_base], [lxc_version_major.lxc_version_minor.lxc_version_micro])
+m4_define([lxc_version],
+         [ifelse(lxc_version_beta, [], [lxc_version_base], [lxc_version_base.lxc_version_beta])])
+
+AC_INIT([lxc], [lxc_version])
+
+# We need pkg-config
+PKG_PROG_PKG_CONFIG
+
+AC_SUBST(LXC_VERSION_BASE, lxc_version_base)
+AC_SUBST(LXC_VERSION_BETA, lxc_version_beta)
+
+AC_SUBST([LXC_VERSION_MAJOR], [lxc_version_major])
+AC_SUBST([LXC_VERSION_MINOR], [lxc_version_minor])
+AC_SUBST([LXC_VERSION_MICRO], [lxc_version_micro])
+AC_SUBST([LXC_VERSION], [lxc_version])
 
 AC_CONFIG_SRCDIR([configure.ac])
 AC_CONFIG_AUX_DIR([config])
@@ -14,13 +34,14 @@ AC_GNU_SOURCE
 # Detect the distribution. This is used for the default configuration and
 # for some distro-specific build options.
 AC_MSG_CHECKING([host distribution])
-AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO], [Specify the Linux distribution to target: One of redhat, oracle, fedora, suse, gentoo, debian, arch, slackware, paldo, mandriva or pardus.]))
+AC_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.]))
 if test "z$with_distro" = "z"; then
        with_distro=`lsb_release -is`
 fi
 if test "z$with_distro" = "z"; then
        AC_CHECK_FILE(/etc/redhat-release,with_distro="redhat")
        AC_CHECK_FILE(/etc/oracle-release,with_distro="oracle")
+       AC_CHECK_FILE(/etc/centos-release,with_distro="centos")
        AC_CHECK_FILE(/etc/fedora-release,with_distro="fedora")
        AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
        AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
@@ -28,8 +49,8 @@ if test "z$with_distro" = "z"; then
        AC_CHECK_FILE(/etc/arch-release,with_distro="arch")
        AC_CHECK_FILE(/etc/slackware-version,with_distro="slackware")
        AC_CHECK_FILE(/etc/frugalware-release,with_distro="frugalware")
-       AC_CHECK_FILE(/etc/mandrakelinux-release, with_distro="mandriva")
-       AC_CHECK_FILE(/etc/mandriva-release,with_distro="mandriva")
+       AC_CHECK_FILE(/etc/mandrakelinux-release, with_distro="openmandriva")
+       AC_CHECK_FILE(/etc/mandriva-release,with_distro="openmandriva")
        AC_CHECK_FILE(/etc/pardus-release,with_distro="pardus")
 fi
 with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]'`
@@ -41,7 +62,7 @@ case $with_distro in
        ubuntu)
                distroconf=default.conf.ubuntu
                ;;
-       redhat|fedora|oracle|oracleserver)
+       redhat|centos|fedora|oracle|oracleserver)
                distroconf=default.conf.libvirt
                ;;
        *)
@@ -53,24 +74,69 @@ AC_MSG_RESULT([$with_distro])
 AM_CONDITIONAL([HAVE_DEBIAN], [test x"$with_distro" = "xdebian" -o x"$with_distro" = "xubuntu"])
 AM_CONDITIONAL([DISTRO_UBUNTU], [test "x$with_distro" = "xubuntu"])
 
-# Detect the newuidmap tool (required for userns)
-AC_CHECK_PROG([NEWUIDMAP], [newuidmap], [newuidmap])
-AM_CONDITIONAL([HAVE_NEWUIDMAP], [test -n "$NEWUIDMAP"])
+# Check for init system type
+AC_MSG_CHECKING([for init system type])
+AC_ARG_WITH([init-script],
+           [AC_HELP_STRING([--with-init-script@<:@=TYPE@<:@,TYPE,...@:>@@:>@],
+                           [Type(s) of init script to install: sysvinit, systemd, upstart,
+                            distro @<:@default=distro@:>@])],[],[with_init_script=distro])
+case "$with_init_script" in
+       distro)
+               case $with_distro in
+                       fedora)
+                               init_script=systemd
+                               ;;
+                       redhat|centos|oracle|oracleserver)
+                               init_script=sysvinit
+                               ;;
+                       debian)
+                               init_script=upstart,systemd
+                               ;;
+                       ubuntu)
+                               init_script=upstart
+                               ;;
+                       *)
+                               echo -n "Linux distribution init system unknown."
+                               init_script=
+                               ;;
+               esac
+               ;;
+       *)
+               init_script=$with_init_script
+               ;;
+esac
+
+# Check valid init systems were given, run in subshell so we don't mess up IFS
+(IFS="," ; for init_sys in $init_script;
+do
+       case "$init_sys" in
+               none|sysvinit|systemd|upstart)
+                       ;;
+               *)
+                       exit 1
+                       ;;
+       esac
+done) || AC_MSG_ERROR([Unknown init system type in $init_script])
+
+AM_CONDITIONAL([INIT_SCRIPT_SYSV], [echo "$init_script" |grep -q "sysvinit"])
+AM_CONDITIONAL([INIT_SCRIPT_SYSTEMD], [echo "$init_script" |grep -q "systemd"])
+AM_CONDITIONAL([INIT_SCRIPT_UPSTART], [echo "$init_script" |grep -q "upstart"])
+AC_MSG_RESULT($init_script)
 
 # Allow disabling rpath
 AC_ARG_ENABLE([rpath],
-       [AC_HELP_STRING([--disable-rpath], [do not set rpath in executables])],
-       [], [enable_rpath=yes])
+       [AC_HELP_STRING([--enable-rpath], [set rpath in executables [default=no]])],
+       [], [enable_rpath=no])
 AM_CONDITIONAL([ENABLE_RPATH], [test "x$enable_rpath" = "xyes"])
 
 # Documentation (manpages)
 AC_ARG_ENABLE([doc],
-       [AC_HELP_STRING([--enable-doc], [make mans (requires docbook2man or docbook2x-man to be installed) [default=auto]])],
+       [AC_HELP_STRING([--enable-doc], [make man pages [default=auto]])],
        [], [enable_doc=auto])
 
 if test "x$enable_doc" = "xyes" -o "x$enable_doc" = "xauto"; then
        db2xman=""
-       dbparsers="docbook2x-man db2x_docbook2man docbook2man"
+       dbparsers="docbook2x-man db2x_docbook2man docbook2man docbook-to-man"
 
        AC_MSG_CHECKING(for docbook2x-man)
        for name in ${dbparsers}; do
@@ -82,11 +148,13 @@ if test "x$enable_doc" = "xyes" -o "x$enable_doc" = "xauto"; then
 
        if test -n "${db2xman}"; then
                AC_MSG_RESULT([${db2xman}])
+               enable_doc="yes"
        else
                AC_MSG_RESULT([no])
                if test "x$enable_doc" = "xyes"; then
-                       AC_MSG_ERROR([docbook2x-man required by man request, but not found])
+                       AC_MSG_ERROR([docbook2x-man is required, but could not be found])
                fi
+               enable_doc="no"
        fi
 
        AC_SUBST(db2xman)
@@ -101,17 +169,39 @@ else
 fi
 AC_SUBST(docdtd)
 
+# Documentation (API)
+AC_ARG_ENABLE([api-docs],
+       [AC_HELP_STRING([--enable-api-docs],
+       [make API documentation [default=auto]])],
+       [], [enable_api_docs=auto])
+
+if test "x$enable_api_docs" = "xyes" -o "x$enable_api_docs" = "xauto"; then
+       AC_CHECK_PROGS([HAVE_DOXYGEN],[doxygen])
+       AC_SUBST([HAVE_DOXYGEN])
+
+       if test "x$HAVE_DOXYGEN" != "x"; then
+               enable_api_docs="yes"
+       else
+               if test "x$enable_api_docs" = "xyes"; then
+                       AC_MSG_ERROR([doxygen is required, but could not be found])
+               fi
+               enable_api_docs="no"
+       fi
+fi
+
+AM_CONDITIONAL([ENABLE_API_DOCS], [test "x$HAVE_DOXYGEN" != "x"])
+
 # Apparmor
 AC_ARG_ENABLE([apparmor],
-       [AC_HELP_STRING([--enable-apparmor], [enable apparmor])],
-       [], [enable_apparmor=check])
+       [AC_HELP_STRING([--enable-apparmor], [enable apparmor support [default=auto]])],
+       [], [enable_apparmor=auto])
 
-if test "$enable_apparmor" = "check" ; then
+if test "$enable_apparmor" = "auto" ; then
        AC_CHECK_LIB([apparmor],[aa_change_profile],[enable_apparmor=yes], [enable_apparmor=no])
 fi
 AM_CONDITIONAL([ENABLE_APPARMOR], [test "x$enable_apparmor" = "xyes"])
 
-AC_CHECK_LIB([gnutls], [gnutls_hash_fast])
+AC_CHECK_LIB([gnutls], [gnutls_hash_fast], [enable_gnutls=yes], [enable_gnutls=no])
 
 AM_COND_IF([ENABLE_APPARMOR],
        [AC_CHECK_HEADER([sys/apparmor.h],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
@@ -120,10 +210,10 @@ AM_COND_IF([ENABLE_APPARMOR],
 
 # SELinux
 AC_ARG_ENABLE([selinux],
-       [AC_HELP_STRING([--enable-selinux], [enable SELinux support])],
-       [], [enable_selinux=check])
+       [AC_HELP_STRING([--enable-selinux], [enable SELinux support [default=auto]])],
+       [], [enable_selinux=auto])
 
-if test "x$enable_selinux" = xcheck; then
+if test "x$enable_selinux" = xauto; then
        AC_CHECK_LIB([selinux],[setexeccon_raw],[enable_selinux=yes],[enable_selinux=no])
 fi
 AM_CONDITIONAL([ENABLE_SELINUX], [test "x$enable_selinux" = "xyes"])
@@ -134,32 +224,81 @@ AM_COND_IF([ENABLE_SELINUX],
 
 # Seccomp syscall filter
 AC_ARG_ENABLE([seccomp],
-       [AC_HELP_STRING([--enable-seccomp], [enable seccomp])],
-       [], [enable_seccomp=check])
+       [AC_HELP_STRING([--enable-seccomp], [enable seccomp support [default=auto]])],
+       [], [enable_seccomp=auto])
 
-if test "$enable_seccomp" = "check" ; then
+if test "x$enable_seccomp" = "xauto" ; then
        AC_CHECK_LIB([seccomp],[seccomp_init],[enable_seccomp=yes],[enable_seccomp=no])
 fi
 AM_CONDITIONAL([ENABLE_SECCOMP], [test "x$enable_seccomp" = "xyes"])
 
 AM_COND_IF([ENABLE_SECCOMP],
-       [AC_CHECK_HEADER([seccomp.h],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
-       AC_CHECK_LIB([seccomp], [seccomp_init],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
-       AC_SUBST([SECCOMP_LIBS], [-lseccomp])])
+       [PKG_CHECK_MODULES([SECCOMP],[libseccomp],[],[
+               AC_CHECK_HEADER([seccomp.h],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
+               AC_CHECK_LIB([seccomp], [seccomp_init],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
+               AC_SUBST([SECCOMP_LIBS], [-lseccomp])
+               ])
+       ])
+
+# cgmanager
+AC_ARG_ENABLE([cgmanager],
+       [AC_HELP_STRING([--enable-cgmanager], [enable cgmanager support [default=auto]])],
+       [], [enable_cgmanager=auto])
+
+if test "x$enable_cgmanager" = "xauto" ; then
+       AC_CHECK_LIB([cgmanager],[cgmanager_create],[enable_cgmanager=yes],[enable_cgmanager=no])
+fi
+AM_CONDITIONAL([ENABLE_CGMANAGER], [test "x$enable_cgmanager" = "xyes"])
+
+AM_COND_IF([ENABLE_CGMANAGER],
+       [PKG_CHECK_MODULES([CGMANAGER], [libcgmanager])
+       PKG_CHECK_MODULES([NIH], [libnih >= 1.0.2])
+       PKG_CHECK_MODULES([NIH_DBUS], [libnih-dbus >= 1.0.0])
+       PKG_CHECK_MODULES([DBUS], [dbus-1 >= 1.2.16])
+       ])
+
+# Linux capabilities
+AC_ARG_ENABLE([capabilities],
+       [AC_HELP_STRING([--enable-capabilities], [enable kernel capabilities support [default=auto]])],
+       [], [enable_capabilities=auto])
+
+if test "x$enable_capabilities" = "xauto"; then
+       AC_CHECK_LIB([cap],[cap_set_proc],[enable_capabilities=yes],[enable_capabilities=no])
+fi
+AM_CONDITIONAL([ENABLE_CAP], [test "x$enable_capabilities" = "xyes"])
+
+AM_COND_IF([ENABLE_CAP],
+       [AC_CHECK_LIB(cap,cap_set_proc,[],[AC_MSG_ERROR([You are missing libcap support.])])
+       AC_SUBST([CAP_LIBS], [-lcap])])
 
 # HAVE_SCMP_FILTER_CTX=1 will tell us we have libseccomp api >= 1.0.0
-AC_CHECK_TYPES([scmp_filter_ctx], [], [], [#include <seccomp.h>])
+OLD_CFLAGS="$CFLAGS"
+CFLAGS="$CFLAGS $SECCOMP_CFLAGS"
+AC_CHECK_TYPES([scmp_filter_ctx], [], [], [[#include <seccomp.h>]])
+CFLAGS="$OLD_CFLAGS"
 
 # Configuration examples
 AC_ARG_ENABLE([examples],
-       [AC_HELP_STRING([--disable-examples], [do not install configuration examples])],
+       [AC_HELP_STRING([--enable-examples], [install examples [default=yes]])],
        [], [enable_examples=yes])
 AM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" = "xyes"])
 
 # Python3 module and scripts
 AC_ARG_ENABLE([python],
-       [AC_HELP_STRING([--enable-python], [enable python binding])],
-       [enable_python=yes], [enable_python=no])
+       [AC_HELP_STRING([--enable-python], [enable python binding [default=auto]])],
+       [], [enable_python=auto])
+
+if test "x$enable_python" = "xauto"; then
+       PKG_CHECK_MODULES([PYTHONDEV], [python3 >= 3.2],[enable_python=yes],[enable_python=no])
+       if test "$CC" = "clang"; then
+               enable_python=no
+       fi
+fi
+
+if test "x$enable_python" = "xyes" && test "$CC" = "clang"; then
+       AC_MSG_ERROR([Python3 is incompatible with the clang compiler])
+fi
+
 AM_CONDITIONAL([ENABLE_PYTHON], [test "x$enable_python" = "xyes"])
 
 AM_COND_IF([ENABLE_PYTHON],
@@ -167,6 +306,15 @@ AM_COND_IF([ENABLE_PYTHON],
        PKG_CHECK_MODULES([PYTHONDEV], [python3 >= 3.2],[],[AC_MSG_ERROR([You must install python3-dev])])
        AC_DEFINE_UNQUOTED([ENABLE_PYTHON], 1, [Python3 is available])])
 
+# Enable dumping stack traces
+AC_ARG_ENABLE([mutex-debugging],
+       [AC_HELP_STRING([--enable-mutex-debugging], [Makes mutexes to report error and provide stack trace [default=no]])],
+       [], [enable_mutex_debugging=no])
+AM_CONDITIONAL([MUTEX_DEBUGGING], [test "x$enable_mutex_debugging" = "xyes"])
+
+AM_COND_IF([MUTEX_DEBUGGING],
+       AC_DEFINE_UNQUOTED([MUTEX_DEBUGGING], 1, [Enabling mutex debugging]))
+
 # Not in older autoconf versions
 # AS_VAR_COPY(DEST, SOURCE)
 # -------------------------
@@ -190,8 +338,8 @@ m4_ifdef([PKG_CHECK_VAR], [],
 
 # Lua module and scripts
 AC_ARG_ENABLE([lua],
-       [AC_HELP_STRING([--enable-lua], [enable lua binding])],
-       [], [enable_lua=check])
+       [AC_HELP_STRING([--enable-lua], [enable lua binding [default=auto]])],
+       [], [enable_lua=auto])
 
 AC_ARG_WITH([lua-pc],
        [AS_HELP_STRING(
@@ -204,7 +352,7 @@ if test "x$enable_lua" = "xyes" -a "x$with_lua_pc" != "xno"; then
        PKG_CHECK_MODULES([LUA], [$with_lua_pc], [LUAPKGCONFIG=$with_lua_pc])
 fi
 
-if test "x$enable_lua" = "xcheck" -a "x$with_lua_pc" != "xno"; then
+if test "x$enable_lua" = "xauto" -a "x$with_lua_pc" != "xno"; then
        PKG_CHECK_MODULES([LUA], [$with_lua_pc],
                [LUAPKGCONFIG=$with_lua_pc
                enable_lua=yes],
@@ -237,10 +385,16 @@ AM_COND_IF([ENABLE_LUA],
                [LUA_INSTALL_LMOD=$datadir/lua/$LUA_VERSION])
        ])
 
+# Optional bash integration
+AC_ARG_ENABLE([bash],
+       [AC_HELP_STRING([--enable-bash], [build bash integration [default=yes]])],
+       [], [enable_bash=yes])
+AM_CONDITIONAL([ENABLE_BASH], [test "x$enable_bash" = "xyes"])
+
 # Optional test binaries
 AC_ARG_ENABLE([tests],
-       [AC_HELP_STRING([--enable-tests], [build test/example binaries])],
-       [enable_tests=yes], [enable_tests=no])
+       [AC_HELP_STRING([--enable-tests], [build test/example binaries [default=no]])],
+       [], [enable_tests=no])
 AM_CONDITIONAL([ENABLE_TESTS], [test "x$enable_tests" = "xyes"])
 
 # LXC container path, where the containers are actually stored
@@ -290,12 +444,12 @@ AC_ARG_WITH([cgroup-pattern],
 # Container log path.  By default, use $lxcpath.
 AC_MSG_CHECKING([Whether to place logfiles in container config path])
 AC_ARG_ENABLE([configpath-log],
-       [AC_HELP_STRING([--enable-configpath-log], [use logfiles in config path])],
-       [use_configpath_logs=yes], [use_configpath_logs=no])
-AC_MSG_RESULT([$use_configpath_logs])
-AM_CONDITIONAL([USE_CONFIGPATH_LOGS], [test "$use_configpath_logs" = "yes"])
+       [AC_HELP_STRING([--enable-configpath-log], [use logfiles in config path [default=no]])],
+       [], [enable_configpath_log=no])
+AC_MSG_RESULT([$enable_configpath_log])
+AM_CONDITIONAL([USE_CONFIGPATH_LOGS], [test "$enable_configpath_log" = "yes"])
 
-if test "$use_configpath_logs" = "yes"; then
+if test "$enable_configpath_log" = "yes"; then
        default_log_path="${with_config_path}"
 else
        default_log_path="${localstatedir}/log/lxc"
@@ -326,6 +480,7 @@ AS_AC_EXPAND(LXC_USERNIC_CONF, "$with_usernic_conf")
 AS_AC_EXPAND(LXC_USERNIC_DB, "$with_usernic_db")
 AS_AC_EXPAND(LXCROOTFSMOUNT, "$with_rootfs_path")
 AS_AC_EXPAND(LXCTEMPLATEDIR, "$datadir/lxc/templates")
+AS_AC_EXPAND(LXCTEMPLATECONFIG, "$datadir/lxc/config")
 AS_AC_EXPAND(LXCHOOKDIR, "$datadir/lxc/hooks")
 AS_AC_EXPAND(LXCINITDIR, "$libexecdir")
 AS_AC_EXPAND(LOGPATH, "$with_log_path")
@@ -337,27 +492,6 @@ AC_CHECK_HEADERS([linux/unistd.h linux/netlink.h linux/genetlink.h],
                                AC_MSG_ERROR([Please install the Linux kernel headers.]),
                                [#include <sys/socket.h>])
 
-# Allow disabling libcap support
-AC_ARG_ENABLE([capabilities],
-       [AC_HELP_STRING([--disable-capabilities], [disable kernel capabilities])],
-       [], [enable_capabilities=yes])
-
-# Check for libcap support
-if test "x$enable_capabilities" = "xyes"; then
-       AC_CHECK_LIB(cap,cap_set_proc,caplib=yes,caplib=no)
-       AC_MSG_CHECKING([linux capabilities])
-       if test "x$caplib" = "xyes" ; then
-               CAP_LIBS="-lcap"
-               AC_MSG_RESULT([$CAP_LIBS])
-       else
-               AC_MSG_RESULT([no])
-               AC_MSG_ERROR([You are missing libcap support. If you really want to build without kernel capabilities, use --disable-capabilities])
-       fi
-else
-       CAP_LIBS=""
-fi
-AC_SUBST([CAP_LIBS])
-
 # Check for alternate C libraries
 AC_MSG_CHECKING(for bionic libc)
 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
@@ -384,6 +518,8 @@ AC_CHECK_HEADERS([sys/signalfd.h pty.h ifaddrs.h sys/capability.h sys/personalit
 AC_CHECK_FUNCS([setns pivot_root sethostname unshare rand_r confstr])
 
 # Check for some functions
+AC_CHECK_LIB(pthread, main)
+AC_CHECK_FUNCS(pthread_atfork)
 AC_CHECK_LIB(util, openpty)
 AC_CHECK_FUNCS([openpty hasmntopt setmntent endmntent])
 AC_CHECK_FUNCS([getline],
@@ -403,6 +539,9 @@ AC_SEARCH_LIBS(clock_gettime, [rt])
 AC_PROG_GCC_TRADITIONAL
 AC_PROG_SED
 
+# See if we support thread-local storage.
+LXC_CHECK_TLS
+
 if test "x$GCC" = "xyes"; then
        CFLAGS="$CFLAGS -Wall -Werror"
 fi
@@ -412,15 +551,45 @@ AC_CONFIG_FILES([
        Makefile
        lxc.pc
        lxc.spec
+
        config/Makefile
+       config/apparmor/Makefile
+       config/bash/Makefile
+       config/bash/lxc
+       config/init/Makefile
+       config/init/sysvinit/Makefile
+       config/init/systemd/Makefile
+       config/init/upstart/Makefile
+       config/etc/Makefile
+       config/templates/Makefile
+       config/templates/centos.common.conf
+       config/templates/centos.userns.conf
+       config/templates/debian.common.conf
+       config/templates/debian.userns.conf
+       config/templates/fedora.common.conf
+       config/templates/fedora.userns.conf
+       config/templates/gentoo.common.conf
+       config/templates/gentoo.moresecure.conf
+       config/templates/oracle.common.conf
+       config/templates/oracle.userns.conf
+       config/templates/plamo.common.conf
+       config/templates/plamo.userns.conf
+       config/templates/ubuntu-cloud.common.conf
+       config/templates/ubuntu-cloud.lucid.conf
+       config/templates/ubuntu-cloud.userns.conf
+       config/templates/ubuntu.common.conf
+       config/templates/ubuntu.lucid.conf
+       config/templates/ubuntu.userns.conf
 
        doc/Makefile
+       doc/api/Makefile
        doc/legacy/lxc-ls.sgml
        doc/lxc-attach.sgml
+       doc/lxc-autostart.sgml
        doc/lxc-cgroup.sgml
        doc/lxc-checkconfig.sgml
-       doc/lxc-checkpoint.sgml
        doc/lxc-clone.sgml
+       doc/lxc-config.sgml
        doc/lxc-console.sgml
        doc/lxc-create.sgml
        doc/lxc-destroy.sgml
@@ -428,12 +597,8 @@ AC_CONFIG_FILES([
        doc/lxc-execute.sgml
        doc/lxc-freeze.sgml
        doc/lxc-info.sgml
-       doc/lxc-kill.sgml
        doc/lxc-ls.sgml
        doc/lxc-monitor.sgml
-       doc/lxc-netstat.sgml
-       doc/lxc-ps.sgml
-       doc/lxc-restart.sgml
        doc/lxc-snapshot.sgml
        doc/lxc-start-ephemeral.sgml
        doc/lxc-start.sgml
@@ -441,10 +606,14 @@ AC_CONFIG_FILES([
        doc/lxc-top.sgml
        doc/lxc-unfreeze.sgml
        doc/lxc-unshare.sgml
-       doc/lxc-version.sgml
+       doc/lxc-user-nic.sgml
+       doc/lxc-usernsexec.sgml
        doc/lxc-wait.sgml
 
        doc/lxc.conf.sgml
+       doc/lxc.container.conf.sgml
+       doc/lxc.system.conf.sgml
+       doc/lxc-usernet.sgml
        doc/lxc.sgml
        doc/common_options.sgml
        doc/see_also.sgml
@@ -463,10 +632,11 @@ AC_CONFIG_FILES([
        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-checkpoint.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
@@ -474,12 +644,8 @@ AC_CONFIG_FILES([
        doc/ja/lxc-execute.sgml
        doc/ja/lxc-freeze.sgml
        doc/ja/lxc-info.sgml
-       doc/ja/lxc-kill.sgml
        doc/ja/lxc-ls.sgml
        doc/ja/lxc-monitor.sgml
-       doc/ja/lxc-netstat.sgml
-       doc/ja/lxc-ps.sgml
-       doc/ja/lxc-restart.sgml
        doc/ja/lxc-snapshot.sgml
        doc/ja/lxc-start-ephemeral.sgml
        doc/ja/lxc-start.sgml
@@ -487,10 +653,14 @@ AC_CONFIG_FILES([
        doc/ja/lxc-top.sgml
        doc/ja/lxc-unfreeze.sgml
        doc/ja/lxc-unshare.sgml
-       doc/ja/lxc-version.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
@@ -498,34 +668,83 @@ AC_CONFIG_FILES([
        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-ubuntu
-       templates/lxc-ubuntu-cloud
-       templates/lxc-opensuse
-       templates/lxc-busybox
+       templates/lxc-download
        templates/lxc-fedora
+       templates/lxc-gentoo
+       templates/lxc-openmandriva
+       templates/lxc-opensuse
        templates/lxc-oracle
-       templates/lxc-altlinux
+       templates/lxc-plamo
        templates/lxc-sshd
-       templates/lxc-archlinux
-       templates/lxc-alpine
+       templates/lxc-ubuntu
+       templates/lxc-ubuntu-cloud
 
        src/Makefile
        src/lxc/Makefile
-       src/lxc/lxc-ps
-       src/lxc/lxc-netstat
        src/lxc/lxc-checkconfig
-       src/lxc/lxc-version
        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