]> git.proxmox.com Git - mirror_lxc.git/blame - configure.ac
add lxc-user-nic
[mirror_lxc.git] / configure.ac
CommitLineData
5e97c3fc 1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
e9831f83 4AC_INIT([lxc], [0.9.0])
5e97c3fc 5
f8dafdbb 6AC_CONFIG_SRCDIR([configure.ac])
5e97c3fc 7AC_CONFIG_AUX_DIR([config])
067cfaeb 8AC_CONFIG_HEADERS([src/config.h])
ad563aea 9AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability])
5e97c3fc 10AC_CANONICAL_HOST
5e97c3fc 11AM_PROG_CC_C_O
12AC_GNU_SOURCE
5c8f9bd8 13
8aa4885c
SG
14# Detect the distribution. This is used for the default configuration and
15# for some distro-specific build options.
6f75ba0b 16AC_MSG_CHECKING([host distribution])
8aa4885c 17AC_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.]))
6f75ba0b
DE
18if test "z$with_distro" = "z"; then
19 with_distro=`lsb_release -is`
be2e4e54 20fi
6f75ba0b
DE
21if test "z$with_distro" = "z"; then
22 AC_CHECK_FILE(/etc/redhat-release,with_distro="redhat")
23 AC_CHECK_FILE(/etc/oracle-release,with_distro="oracle")
24 AC_CHECK_FILE(/etc/fedora-release,with_distro="fedora")
25 AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
26 AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
27 AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
28 AC_CHECK_FILE(/etc/arch-release,with_distro="arch")
29 AC_CHECK_FILE(/etc/slackware-version,with_distro="slackware")
30 AC_CHECK_FILE(/etc/frugalware-release,with_distro="frugalware")
31 AC_CHECK_FILE(/etc/mandrakelinux-release, with_distro="mandriva")
32 AC_CHECK_FILE(/etc/mandriva-release,with_distro="mandriva")
33 AC_CHECK_FILE(/etc/pardus-release,with_distro="pardus")
34fi
35with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]'`
36
37if test "z$with_distro" = "z"; then
38 with_distro="unknown"
39fi
40case $with_distro in
41 ubuntu)
3a647d58 42 distroconf=default.conf.ubuntu
6f75ba0b
DE
43 ;;
44 redhat|fedora|oracle|oracleserver)
3a647d58 45 distroconf=default.conf.libvirt
6f75ba0b
DE
46 ;;
47 *)
48 echo -n "Linux distribution network config unknown, defaulting to lxc.network.type = empty"
3a647d58 49 distroconf=default.conf.unknown
6f75ba0b
DE
50 ;;
51esac
52AC_MSG_RESULT([$with_distro])
6f75ba0b 53AM_CONDITIONAL([HAVE_DEBIAN], [test x"$with_distro" = "xdebian" -o x"$with_distro" = "xubuntu"])
be2e4e54 54
d155b47d
SH
55AC_CHECK_PROG([NEWUIDMAP], [newuidmap], [newuidmap])
56AM_CONDITIONAL([HAVE_NEWUIDMAP], [test -n "$NEWUIDMAP"])
57
8aa4885c 58# Allow disabling rpath
1c41ddcb
GK
59AC_ARG_ENABLE([rpath],
60 [AC_HELP_STRING([--disable-rpath], [do not set rpath in executables])],
61 [], [enable_rpath=yes])
1c41ddcb
GK
62AM_CONDITIONAL([ENABLE_RPATH], [test "x$enable_rpath" = "xyes"])
63
8aa4885c 64# Documentation (manpages)
5c8f9bd8 65AC_ARG_ENABLE([doc],
7f951458 66 [AC_HELP_STRING([--enable-doc], [make mans (requires docbook2man or docbook2x-man to be installed) [default=auto]])],
5c8f9bd8
AN
67 [], [enable_doc=auto])
68
69if test "x$enable_doc" = "xyes" -o "x$enable_doc" = "xauto"; then
7822022c 70 db2xman=""
7f951458 71 dbparsers="docbook2x-man db2x_docbook2man docbook2man"
69fe23ff 72
7822022c 73 AC_MSG_CHECKING(for docbook2x-man)
69fe23ff 74 for name in ${dbparsers}; do
7822022c
SG
75 if "$name" --help >/dev/null 2>&1; then
76 db2xman="$name"
77 break;
78 fi
79 done
80
81 if test -n "${db2xman}"; then
8aa4885c 82 AC_MSG_RESULT([${db2xman}])
7822022c 83 else
8aa4885c 84 AC_MSG_RESULT([no])
7822022c
SG
85 if test "x$enable_doc" = "xyes"; then
86 AC_MSG_ERROR([docbook2x-man required by man request, but not found])
87 fi
88 fi
89
90 AC_SUBST(db2xman)
5c8f9bd8 91fi
8aa4885c 92AM_CONDITIONAL([ENABLE_DOCBOOK], [test "x$db2xman" != "x"])
5c8f9bd8 93
7f951458
DE
94if test "x$db2xman" = "xdocbook2man"; then
95 docdtd="\"-//Davenport//DTD DocBook V3.0//EN\""
96else
97 docdtd="\"-//OASIS//DTD DocBook XML\" \"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd\""
98fi
99AC_SUBST(docdtd)
100
8aa4885c 101# Apparmor
e767dd55
SH
102AC_ARG_ENABLE([apparmor],
103 [AC_HELP_STRING([--enable-apparmor], [enable apparmor])],
104 [], [enable_apparmor=check])
105
106if test "$enable_apparmor" = "check" ; then
107 AC_CHECK_LIB([apparmor],[aa_change_profile],[enable_apparmor=yes], [enable_apparmor=no])
108fi
e767dd55
SH
109AM_CONDITIONAL([ENABLE_APPARMOR], [test "x$enable_apparmor" = "xyes"])
110
3ce74686
SH
111AC_CHECK_LIB([gnutls], [gnutls_hash_fast])
112
e075f5d9 113AM_COND_IF([ENABLE_APPARMOR],
8aa4885c
SG
114 [AC_CHECK_HEADER([sys/apparmor.h],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
115 AC_CHECK_LIB([apparmor], [aa_change_profile],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
116 AC_SUBST([APPARMOR_LIBS], [-lapparmor])])
e075f5d9 117
8aa4885c 118# Seccomp syscall filter
e767dd55
SH
119AC_ARG_ENABLE([seccomp],
120 [AC_HELP_STRING([--enable-seccomp], [enable seccomp])],
121 [], [enable_seccomp=check])
122
123if test "$enable_seccomp" = "check" ; then
124 AC_CHECK_LIB([seccomp],[seccomp_init],[enable_seccomp=yes],[enable_seccomp=no])
125fi
e767dd55
SH
126AM_CONDITIONAL([ENABLE_SECCOMP], [test "x$enable_seccomp" = "xyes"])
127
8f2c3a70 128AM_COND_IF([ENABLE_SECCOMP],
8aa4885c
SG
129 [AC_CHECK_HEADER([seccomp.h],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
130 AC_CHECK_LIB([seccomp], [seccomp_init],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
131 AC_SUBST([SECCOMP_LIBS], [-lseccomp])])
8f2c3a70 132
769872f9
SH
133# HAVE_SCMP_FILTER_CTX=1 will tell us we have libseccomp api >= 1.0.0
134AC_CHECK_TYPES([scmp_filter_ctx], [], [], [#include <seccomp.h>])
135
8aa4885c 136# Configuration examples
3fb0a9bb
AN
137AC_ARG_ENABLE([examples],
138 [AC_HELP_STRING([--disable-examples], [do not install configuration examples])],
139 [], [enable_examples=yes])
3fb0a9bb
AN
140AM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" = "xyes"])
141
8aa4885c 142# Python3 module and scripts
be2e4e54
SG
143AC_ARG_ENABLE([python],
144 [AC_HELP_STRING([--enable-python], [enable python binding])],
145 [enable_python=yes], [enable_python=no])
be2e4e54
SG
146AM_CONDITIONAL([ENABLE_PYTHON], [test "x$enable_python" = "xyes"])
147
148AM_COND_IF([ENABLE_PYTHON],
8aa4885c 149 [AM_PATH_PYTHON([3.2], [], [AC_MSG_ERROR([You must install python3])])
59ec0a36 150 PKG_CHECK_MODULES([PYTHONDEV], [python3 >= 3.2],[],[AC_MSG_ERROR([You must install python3-dev])])
8aa4885c 151 AC_DEFINE_UNQUOTED([ENABLE_PYTHON], 1, [Python3 is available])])
be2e4e54 152
f080ffd7
DE
153# Lua module and scripts
154if test x"$with_distro" = "xdebian" -o x"$with_distro" = "xubuntu" ; then
155 LUAPKGCONFIG=lua5.1
156else
157 LUAPKGCONFIG=lua
158fi
159
160AC_ARG_ENABLE([lua],
161 [AC_HELP_STRING([--enable-lua], [enable lua binding])],
162 [enable_lua=yes], [enable_lua=no])
163
164AM_CONDITIONAL([ENABLE_LUA], [test "x$enable_lua" = "xyes"])
165
166AM_COND_IF([ENABLE_LUA],
167 [PKG_CHECK_MODULES([LUA], [$LUAPKGCONFIG >= 5.1],[],[AC_MSG_ERROR([You must install lua-devel for lua 5.1])])
168 AC_DEFINE_UNQUOTED([ENABLE_LUA], 1, [Lua is available])])
169
8aa4885c 170# Optional test binaries
525421c9
SG
171AC_ARG_ENABLE([tests],
172 [AC_HELP_STRING([--enable-tests], [build test/example binaries])],
173 [enable_tests=yes], [enable_tests=no])
525421c9
SG
174AM_CONDITIONAL([ENABLE_TESTS], [test "x$enable_tests" = "xyes"])
175
8aa4885c 176# LXC container path, where the containers are actually stored
fbf5de31 177# This is overridden by an entry in the file called LXCCONF
2a59a681 178# (i.e. /etc/lxc/lxc.conf)
aef4ebcf
AN
179AC_ARG_WITH([config-path],
180 [AC_HELP_STRING(
181 [--with-config-path=dir],
e892973e 182 [lxc configuration repository path]
1c41ddcb 183 )], [], [with_config_path=['${localstatedir}/lib/lxc']])
aef4ebcf 184
2a59a681
SH
185# The path of the global lxc configuration file.
186AC_ARG_WITH([global-conf],
187 [AC_HELP_STRING(
188 [--with-global-conf=dir],
189 [global lxc configuration file]
190 )], [], [with_global_conf=['${sysconfdir}/lxc/lxc.conf']])
191
8aa4885c 192# Rootfs path, where the container mount structure is assembled
196db713
DL
193AC_ARG_WITH([rootfs-path],
194 [AC_HELP_STRING(
195 [--with-rootfs-path=dir],
196 [lxc rootfs mount point]
1c41ddcb 197 )], [], [with_rootfs_path=['${libdir}/lxc/rootfs']])
196db713 198
5e1e7aaf
SH
199# Container log path. By default, use $lxcpath.
200AC_MSG_CHECKING([Whether to place logfiles in container config path])
201AC_ARG_ENABLE([configpath-log],
202 [AC_HELP_STRING([--enable-configpath-log], [use logfiles in config path])],
203 [use_configpath_logs=yes], [use_configpath_logs=no])
204AC_MSG_RESULT([$use_configpath_logs])
205AM_CONDITIONAL([USE_CONFIGPATH_LOGS], [test "$use_configpath_logs" = "yes"])
206
207if test "$use_configpath_logs" = "yes"; then
208 default_log_path="${with_config_path}"
209else
89d556d8 210 default_log_path="${localstatedir}/log/lxc"
5e1e7aaf
SH
211fi
212
213AC_ARG_WITH([log-path],
214 [AC_HELP_STRING(
215 [--with-log-path=dir],
216 [per container log path]
217 )], [], [with_log_path=['${default_log_path}']])
218
8aa4885c
SG
219# Expand some useful variables
220AS_AC_EXPAND(PREFIX, "$prefix")
221AS_AC_EXPAND(LIBDIR, "$libdir")
222AS_AC_EXPAND(BINDIR, "$bindir")
223AS_AC_EXPAND(LIBEXECDIR, "$libexecdir")
224AS_AC_EXPAND(INCLUDEDIR, "$includedir")
225AS_AC_EXPAND(SYSCONFDIR, "$sysconfdir")
0a18b545 226AS_AC_EXPAND(LXC_DEFAULT_CONFIG, "$sysconfdir/lxc/default.conf")
8aa4885c
SG
227AS_AC_EXPAND(DATADIR, "$datadir")
228AS_AC_EXPAND(LOCALSTATEDIR, "$localstatedir")
229AS_AC_EXPAND(DOCDIR, "$docdir")
3a647d58 230AS_AC_EXPAND(LXC_DISTRO_CONF, "$distroconf")
aef4ebcf 231AS_AC_EXPAND(LXC_GENERATE_DATE, "$(date)")
8aa4885c 232AS_AC_EXPAND(LXCPATH, "$with_config_path")
2a59a681 233AS_AC_EXPAND(LXC_GLOBAL_CONF, "$with_global_conf")
8aa4885c
SG
234AS_AC_EXPAND(LXCROOTFSMOUNT, "$with_rootfs_path")
235AS_AC_EXPAND(LXCTEMPLATEDIR, "$datadir/lxc/templates")
906f8c4d 236AS_AC_EXPAND(LXCHOOKDIR, "$datadir/lxc/hooks")
8aa4885c 237AS_AC_EXPAND(LXCINITDIR, "$libexecdir")
5e1e7aaf 238AS_AC_EXPAND(LOGPATH, "$with_log_path")
881450bb 239
8aa4885c 240# Check for some standard kernel headers
910bb4fa 241AC_CHECK_HEADERS([linux/unistd.h linux/netlink.h linux/genetlink.h],
8aa4885c
SG
242 [],
243 AC_MSG_ERROR([Please install the Linux kernel headers.]),
244 [#include <sys/socket.h>])
35f549fe 245
495d2046
SG
246# Allow disabling libcap support
247AC_ARG_ENABLE([capabilities],
248 [AC_HELP_STRING([--disable-capabilities], [disable kernel capabilities])],
249 [], [enable_capabilities=yes])
250
8aa4885c 251# Check for libcap support
495d2046
SG
252if test "x$enable_capabilities" = "xyes"; then
253 AC_CHECK_LIB(cap,cap_set_proc,caplib=yes,caplib=no)
254 AC_MSG_CHECKING([linux capabilities])
255 if test "x$caplib" = "xyes" ; then
256 CAP_LIBS="-lcap"
257 AC_MSG_RESULT([$CAP_LIBS])
258 else
259 AC_MSG_RESULT([no])
260 AC_MSG_ERROR([You are missing libcap support. If you really want to build without kernel capabilities, use --disable-capabilities])
261 fi
0af683cf 262else
495d2046 263 CAP_LIBS=""
0af683cf 264fi
265AC_SUBST([CAP_LIBS])
35f549fe 266
a6168a17
SG
267# Check for alternate C libraries
268AC_MSG_CHECKING(for bionic libc)
269AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
8aa4885c 270 [[#ifndef __ANDROID__
a6168a17
SG
271error: Not bionic!
272#endif]])],
8aa4885c
SG
273 [is_bionic=yes],
274 [is_bionic=no])
a6168a17 275if test "x$is_bionic" = "xyes"; then
8aa4885c
SG
276 AC_DEFINE([IS_BIONIC], 1, [bionic libc])
277 AC_MSG_RESULT([yes])
a6168a17 278else
8aa4885c 279 AC_MSG_RESULT([no])
a6168a17
SG
280fi
281AM_CONDITIONAL([IS_BIONIC], [test "x$is_bionic" = "xyes"])
282
656994bb
MH
283# Some systems lack PR_CAPBSET_DROP definition => HAVE_DECL_PR_CAPBSET_DROP
284AC_CHECK_DECLS([PR_CAPBSET_DROP], [], [], [#include <sys/prctl.h>])
285
e827ff7e 286# Check for some headers
9be380b0 287AC_CHECK_HEADERS([sys/signalfd.h pty.h sys/capability.h sys/personality.h utmpx.h sys/timerfd.h])
ff218c25 288
2d76d1d7
SG
289# Check for some syscalls functions
290AC_CHECK_FUNCS([setns pivot_root sethostname unshare])
291
e827ff7e 292# Check for some functions
740ee8c7 293AC_CHECK_LIB(util, openpty)
edaf8b1b 294AC_CHECK_FUNCS([openpty hasmntopt setmntent endmntent])
1ba0013f
SG
295AC_CHECK_FUNCS([getline],
296 AM_CONDITIONAL(HAVE_GETLINE, true)
297 AC_DEFINE(HAVE_GETLINE,1,[Have getline]),
298 AM_CONDITIONAL(HAVE_GETLINE, false))
299AC_CHECK_FUNCS([fgetln],
300 AM_CONDITIONAL(HAVE_FGETLN, true)
301 AC_DEFINE(HAVE_FGETLN,1,[Have fgetln]),
302 AM_CONDITIONAL(HAVE_FGETLN, false))
303
c9a84173
SG
304# Check for some libraries
305AC_SEARCH_LIBS(sem_open, [rt pthread])
336d5469 306AC_SEARCH_LIBS(clock_gettime, [rt])
c9a84173 307
8aa4885c 308# Check for some standard binaries
5e97c3fc 309AC_PROG_GCC_TRADITIONAL
95a717e9 310AC_PROG_SED
5e97c3fc 311
312if test "x$GCC" = "xyes"; then
8aa4885c 313 CFLAGS="$CFLAGS -Wall -Werror"
5e97c3fc 314fi
315
8aa4885c 316# Files requiring some variable expansion
5e97c3fc 317AC_CONFIG_FILES([
288063bd 318 Makefile
b6345ba1 319 lxc.pc
5e97c3fc 320 lxc.spec
288063bd 321 config/Makefile
d823d5b9 322
288063bd 323 doc/Makefile
4019712d
SG
324 doc/legacy/lxc-ls.sgml
325 doc/lxc-attach.sgml
326 doc/lxc-cgroup.sgml
327 doc/lxc-checkconfig.sgml
328 doc/lxc-checkpoint.sgml
11cddd70 329 doc/lxc-clone.sgml
4019712d 330 doc/lxc-console.sgml
d823d5b9 331 doc/lxc-create.sgml
332 doc/lxc-destroy.sgml
4019712d 333 doc/lxc-device.sgml
d823d5b9 334 doc/lxc-execute.sgml
d823d5b9 335 doc/lxc-freeze.sgml
4019712d
SG
336 doc/lxc-info.sgml
337 doc/lxc-kill.sgml
d823d5b9 338 doc/lxc-ls.sgml
4019712d
SG
339 doc/lxc-monitor.sgml
340 doc/lxc-netstat.sgml
d823d5b9 341 doc/lxc-ps.sgml
4019712d 342 doc/lxc-restart.sgml
4019712d
SG
343 doc/lxc-start-ephemeral.sgml
344 doc/lxc-start.sgml
345 doc/lxc-stop.sgml
f080ffd7 346 doc/lxc-top.sgml
4019712d
SG
347 doc/lxc-unfreeze.sgml
348 doc/lxc-unshare.sgml
349 doc/lxc-version.sgml
350 doc/lxc-wait.sgml
351
8a67a2b2 352 doc/lxc.conf.sgml
8b8b04f8 353 doc/lxc.sgml
10fba81b 354 doc/common_options.sgml
99e4008c 355 doc/see_also.sgml
d823d5b9 356
baf6671f
DL
357 doc/rootfs/Makefile
358
0f71d073
DL
359 doc/examples/Makefile
360 doc/examples/lxc-macvlan.conf
26c39028 361 doc/examples/lxc-vlan.conf
0f71d073
DL
362 doc/examples/lxc-no-netns.conf
363 doc/examples/lxc-empty-netns.conf
364 doc/examples/lxc-phys.conf
365 doc/examples/lxc-veth.conf
c553a9c2 366 doc/examples/lxc-complex.conf
0f71d073 367
906f8c4d
SG
368 hooks/Makefile
369
c01d62f2 370 templates/Makefile
58a46e06 371 templates/lxc-cirros
c01d62f2 372 templates/lxc-debian
7c382572 373 templates/lxc-ubuntu
d1458ac8 374 templates/lxc-ubuntu-cloud
c840b37d 375 templates/lxc-opensuse
c01d62f2
DL
376 templates/lxc-busybox
377 templates/lxc-fedora
708f4a80 378 templates/lxc-oracle
262f4e48 379 templates/lxc-altlinux
c01d62f2 380 templates/lxc-sshd
f6267d90 381 templates/lxc-archlinux
2a9a0a08 382 templates/lxc-alpine
c9844b87 383
288063bd 384 src/Makefile
5e97c3fc 385 src/lxc/Makefile
386 src/lxc/lxc-ps
9d0195cb 387 src/lxc/lxc-netstat
237315ff 388 src/lxc/lxc-checkconfig
bcd952a1 389 src/lxc/lxc-version
5b12984b 390 src/lxc/lxc-start-ephemeral
6a85cf91 391 src/lxc/legacy/lxc-ls
2a59a681 392 src/lxc/lxc.functions
c9844b87 393
be2e4e54
SG
394 src/python-lxc/Makefile
395
f080ffd7
DE
396 src/lua-lxc/Makefile
397
72d0e1cb 398 src/tests/Makefile
5e97c3fc 399])
400AC_CONFIG_COMMANDS([default],[[]],[[]])
401AC_OUTPUT