configure.ac revision 64c3c9020bb797cc902f3915c71971a4b1bd8502
145N/A# -*- Autoconf -*-
145N/A# Process this file with autoconf to produce a configure script.
145N/A
145N/AAC_INIT([lxc], [0.8.0])
145N/A
145N/AAC_CONFIG_SRCDIR([configure.ac])
145N/AAC_CONFIG_AUX_DIR([config])
145N/AAM_CONFIG_HEADER([src/config.h])
145N/AAM_INIT_AUTOMAKE([-Wno-portability])
145N/AAC_CANONICAL_HOST
145N/AAM_PROG_CC_C_O
145N/AAC_GNU_SOURCE
145N/AAC_CHECK_PROG(SETCAP, setcap, yes, no, $PATH$PATH_SEPARATOR/sbin)
145N/A
145N/AAC_MSG_CHECKING([host distribution])
145N/AAC_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]))
145N/Aif test "z$with_distro" = "z"; then
145N/A with_distro=`lsb_release -is`
145N/Afi
145N/Aif test "z$with_distro" = "z"; then
5630N/A AC_CHECK_FILE(/etc/redhat-release,with_distro="redhat")
145N/A AC_CHECK_FILE(/etc/oracle-release,with_distro="oracle")
145N/A AC_CHECK_FILE(/etc/fedora-release,with_distro="fedora")
145N/A AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
187N/A AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
3996N/A AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
187N/A AC_CHECK_FILE(/etc/arch-release,with_distro="arch")
187N/A AC_CHECK_FILE(/etc/slackware-version,with_distro="slackware")
187N/A AC_CHECK_FILE(/etc/frugalware-release,with_distro="frugalware")
145N/A AC_CHECK_FILE(/etc/mandrakelinux-release, with_distro="mandriva")
187N/A AC_CHECK_FILE(/etc/mandriva-release,with_distro="mandriva")
187N/A AC_CHECK_FILE(/etc/pardus-release,with_distro="pardus")
187N/Afi
145N/Awith_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]'`
1273N/A
1273N/Aif test "z$with_distro" = "z"; then
1273N/A with_distro="unknown"
5630N/Afi
5630N/Acase $with_distro in
5630N/A ubuntu)
5630N/A conffile=lxc.conf.ubuntu
5630N/A ;;
187N/A redhat|fedora|oracle|oracleserver)
5630N/A conffile=lxc.conf.libvirt
197N/A ;;
197N/A *)
197N/A echo -n "Linux distribution network config unknown, defaulting to lxc.network.type = empty"
197N/A conffile=lxc.conf.unknown
187N/A ;;
5630N/Aesac
187N/AAC_MSG_RESULT([$with_distro])
5630N/A
5630N/AAM_CONDITIONAL([HAVE_DEBIAN], [test x"$with_distro" = "xdebian" -o x"$with_distro" = "xubuntu"])
5630N/A
5630N/AAC_ARG_ENABLE([rpath],
5630N/A [AC_HELP_STRING([--disable-rpath], [do not set rpath in executables])],
5630N/A [], [enable_rpath=yes])
5630N/A
5630N/AAM_CONDITIONAL([ENABLE_RPATH], [test "x$enable_rpath" = "xyes"])
5630N/A
145N/AAC_ARG_ENABLE([doc],
4409N/A [AC_HELP_STRING([--enable-doc], [make mans (require docbook2man installed) [default=auto]])],
4409N/A [], [enable_doc=auto])
4409N/A
4409N/Aif test "x$enable_doc" = "xyes" -o "x$enable_doc" = "xauto"; then
4409N/A AC_CHECK_PROG(have_docbook, [docbook2man], [yes], [no])
4409N/A
192N/A test "x$have_docbook" = "xno" -a "x$enable_doc" = "xyes" && \
192N/A AC_MSG_ERROR([docbook2man required by man request, but not found])
192N/Afi
145N/A
145N/AAC_ARG_ENABLE([apparmor],
145N/A [AC_HELP_STRING([--enable-apparmor], [enable apparmor])],
187N/A [], [enable_apparmor=check])
4409N/A
3468N/Aif test "$enable_apparmor" = "check" ; then
187N/A AC_CHECK_LIB([apparmor],[aa_change_profile],[enable_apparmor=yes], [enable_apparmor=no])
5630N/Afi
5630N/A
5630N/AAM_CONDITIONAL([ENABLE_APPARMOR], [test "x$enable_apparmor" = "xyes"])
5630N/A
187N/AAM_COND_IF([ENABLE_APPARMOR],
1900N/A [AC_CHECK_HEADER([sys/apparmor.h],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
191N/A AC_CHECK_LIB([apparmor], [aa_change_profile],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
145N/A AC_SUBST([APPARMOR_LIBS], [-lapparmor])])
5630N/A
5630N/AAC_ARG_ENABLE([seccomp],
5630N/A [AC_HELP_STRING([--enable-seccomp], [enable seccomp])],
5630N/A [], [enable_seccomp=check])
5630N/A
187N/Aif test "$enable_seccomp" = "check" ; then
2541N/A AC_CHECK_LIB([seccomp],[seccomp_init],[enable_seccomp=yes],[enable_seccomp=no])
187N/Afi
187N/A
187N/AAM_CONDITIONAL([ENABLE_SECCOMP], [test "x$enable_seccomp" = "xyes"])
187N/A
187N/AAM_COND_IF([ENABLE_SECCOMP],
1900N/A [AC_CHECK_HEADER([seccomp.h],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
1900N/A AC_CHECK_LIB([seccomp], [seccomp_init],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
1900N/A AC_SUBST([SECCOMP_LIBS], [-lseccomp])])
187N/A
187N/AAM_CONDITIONAL([ENABLE_DOCBOOK], [test "x$have_docbook" = "xyes"])
187N/A
145N/AAC_ARG_ENABLE([examples],
197N/A [AC_HELP_STRING([--disable-examples], [do not install configuration examples])],
197N/A [], [enable_examples=yes])
197N/A
145N/AAM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" = "xyes"])
197N/A
AC_ARG_ENABLE([python],
[AC_HELP_STRING([--enable-python], [enable python binding])],
[enable_python=yes], [enable_python=no])
AM_CONDITIONAL([ENABLE_PYTHON], [test "x$enable_python" = "xyes"])
AM_COND_IF([ENABLE_PYTHON],
[AM_PATH_PYTHON([3.2], [], [AC_MSG_ERROR([You must install python3])])
AC_CHECK_HEADER([python$PYTHON_VERSION/Python.h],[],[AC_MSG_ERROR([You must install python3-dev])])
AC_DEFINE_UNQUOTED([ENABLE_PYTHON], 1, [Python3 is available])])
AC_ARG_ENABLE([tests],
[AC_HELP_STRING([--enable-tests], [build test/example binaries])],
[enable_tests=yes], [enable_tests=no])
AM_CONDITIONAL([ENABLE_TESTS], [test "x$enable_tests" = "xyes"])
AS_AC_EXPAND(PREFIX, $prefix)
AS_AC_EXPAND(LIBDIR, $libdir)
AS_AC_EXPAND(BINDIR, $bindir)
AS_AC_EXPAND(LIBEXECDIR, $libexecdir)
AS_AC_EXPAND(INCLUDEDIR, $includedir)
AS_AC_EXPAND(SYSCONFDIR, $sysconfdir)
AS_AC_EXPAND(DATADIR, $datadir)
AS_AC_EXPAND(LOCALSTATEDIR, $localstatedir)
AS_AC_EXPAND(DOCDIR, $docdir)
AC_ARG_WITH([config-path],
[AC_HELP_STRING(
[--with-config-path=dir],
[lxc configuration repository path]
)], [], [with_config_path=['${localstatedir}/lib/lxc']])
AC_ARG_WITH([rootfs-path],
[AC_HELP_STRING(
[--with-rootfs-path=dir],
[lxc rootfs mount point]
)], [], [with_rootfs_path=['${libdir}/lxc/rootfs']])
AS_AC_EXPAND(LXC_CONFFILE, $conffile)
AS_AC_EXPAND(LXC_GENERATE_DATE, "$(date)")
AS_AC_EXPAND(LXCPATH, "${with_config_path}")
AS_AC_EXPAND(LXCROOTFSMOUNT, "${with_rootfs_path}")
AS_AC_EXPAND(LXCTEMPLATEDIR, ['${datadir}/lxc/templates'])
AS_AC_EXPAND(LXCINITDIR, ['${libexecdir}'])
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>
])
AC_CHECK_HEADERS([sys/capability.h], [], AC_MSG_ERROR([Please install the libcap development files.]),
[#include <sys/types.h>
#include <sys/capability.h>])
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_ERROR([not found])
fi
AC_SUBST([CAP_LIBS])
# Some systems lack PR_CAPBSET_DROP definition => HAVE_DECL_PR_CAPBSET_DROP
AC_CHECK_DECLS([PR_CAPBSET_DROP], [], [], [#include <sys/prctl.h>])
AC_CHECK_HEADERS([sys/signalfd.h])
AC_PROG_GCC_TRADITIONAL
AC_PROG_SED
if test "x$GCC" = "xyes"; then
CFLAGS="$CFLAGS -Wall"
fi
AC_CONFIG_FILES([
Makefile
lxc.pc
lxc.spec
config/Makefile
doc/Makefile
doc/lxc-create.sgml
doc/lxc-destroy.sgml
doc/lxc-execute.sgml
doc/lxc-start.sgml
doc/lxc-checkpoint.sgml
doc/lxc-restart.sgml
doc/lxc-stop.sgml
doc/lxc-console.sgml
doc/lxc-freeze.sgml
doc/lxc-unfreeze.sgml
doc/lxc-monitor.sgml
doc/lxc-wait.sgml
doc/lxc-ls.sgml
doc/lxc-ps.sgml
doc/lxc-cgroup.sgml
doc/lxc-kill.sgml
doc/lxc-attach.sgml
doc/lxc.conf.sgml
doc/lxc.sgml
doc/common_options.sgml
doc/see_also.sgml
doc/rootfs/Makefile
doc/examples/Makefile
doc/examples/lxc-macvlan.conf
doc/examples/lxc-vlan.conf
doc/examples/lxc-no-netns.conf
doc/examples/lxc-empty-netns.conf
doc/examples/lxc-phys.conf
doc/examples/lxc-veth.conf
doc/examples/lxc-complex.conf
templates/Makefile
templates/lxc-lenny
templates/lxc-debian
templates/lxc-ubuntu
templates/lxc-ubuntu-cloud
templates/lxc-opensuse
templates/lxc-busybox
templates/lxc-fedora
templates/lxc-oracle
templates/lxc-altlinux
templates/lxc-sshd
templates/lxc-archlinux
src/Makefile
src/lxc/Makefile
src/lxc/lxc-ps
src/lxc/lxc-ls
src/lxc/lxc-netstat
src/lxc/lxc-checkconfig
src/lxc/lxc-setcap
src/lxc/lxc-setuid
src/lxc/lxc-version
src/lxc/lxc-create
src/lxc/lxc-clone
src/lxc/lxc-shutdown
src/lxc/lxc-start-ephemeral
src/lxc/lxc-destroy
src/python-lxc/Makefile
src/tests/Makefile
])
AC_CONFIG_COMMANDS([default],[[]],[[]])
AC_OUTPUT
if test "x$SETCAP" = "xno"; then
AC_MSG_NOTICE([
Warning:
--------
The setcap binary was not found. This means the tools to set the
privilege for the lxc commands are not available, that's ok, but you
will need to run these commands as root or install libcap-2.
])
else
AC_MSG_NOTICE([
Advice:
-------
If you wish to have a non root user to use the lxc tools,
you can add the needed capabilities to the tools by invoking
the 'lxc-setcap' script. To remove the capabilities, use
'lxc-setcap -d'.
])
fi