]> git.proxmox.com Git - mirror_lxc.git/blob - configure.ac
templates: add PLD Linux support
[mirror_lxc.git] / configure.ac
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 m4_define([lxc_version_major], 2)
5 m4_define([lxc_version_minor], 0)
6 m4_define([lxc_version_micro], 0)
7 m4_define([lxc_version_beta], [])
8 m4_define([lxc_version_abi], 1.2.0)
9
10 m4_define([lxc_version_base], [lxc_version_major.lxc_version_minor.lxc_version_micro])
11 m4_define([lxc_version],
12 [ifelse(lxc_version_beta, [], [lxc_version_base], [lxc_version_base.lxc_version_beta])])
13
14 AC_INIT([lxc], [lxc_version])
15
16 # We need pkg-config
17 PKG_PROG_PKG_CONFIG
18
19 AC_SUBST(LXC_VERSION_BASE, lxc_version_base)
20 AC_SUBST(LXC_VERSION_BETA, lxc_version_beta)
21
22 AC_SUBST([LXC_VERSION_MAJOR], [lxc_version_major])
23 AC_SUBST([LXC_VERSION_MINOR], [lxc_version_minor])
24 AC_SUBST([LXC_VERSION_MICRO], [lxc_version_micro])
25 AC_SUBST([LXC_VERSION_ABI], [lxc_version_abi])
26 AC_SUBST([LXC_VERSION], [lxc_version])
27
28 AC_CONFIG_SRCDIR([configure.ac])
29 AC_CONFIG_AUX_DIR([config])
30 AC_CONFIG_HEADERS([src/config.h])
31 AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability subdir-objects])
32 AC_CANONICAL_HOST
33 AM_PROG_CC_C_O
34 AC_GNU_SOURCE
35
36 # Detect the distribution. This is used for the default configuration and
37 # for some distro-specific build options.
38 AC_MSG_CHECKING([host distribution])
39 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, plamo, paldo, openmandriva, pardus, sparclinux, altlinux.]))
40 if type lsb_release >/dev/null 2>&1 && test "z$with_distro" = "z"; then
41 with_distro=`lsb_release -is`
42 fi
43 if test "z$with_distro" = "z"; then
44 AC_CHECK_FILE(/etc/redhat-release,with_distro="redhat")
45 AC_CHECK_FILE(/etc/oracle-release,with_distro="oracle")
46 AC_CHECK_FILE(/etc/sparclinux-release,with_distro="sparclinux")
47 AC_CHECK_FILE(/etc/centos-release,with_distro="centos")
48 AC_CHECK_FILE(/etc/fedora-release,with_distro="fedora")
49 AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
50 AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
51 AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
52 AC_CHECK_FILE(/etc/arch-release,with_distro="arch")
53 AC_CHECK_FILE(/etc/slackware-version,with_distro="slackware")
54 AC_CHECK_FILE(/etc/plamo-version,with_distro="plamo")
55 AC_CHECK_FILE(/etc/frugalware-release,with_distro="frugalware")
56 AC_CHECK_FILE(/etc/mandrakelinux-release, with_distro="openmandriva")
57 AC_CHECK_FILE(/etc/mandriva-release,with_distro="openmandriva")
58 AC_CHECK_FILE(/etc/pardus-release,with_distro="pardus")
59 AC_CHECK_FILE(/etc/altlinux-release,with_distro="altlinux")
60 AC_CHECK_FILE(/etc/pld-release,with_distro="pld")
61 fi
62 with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]'`
63
64 if test "z$with_distro" = "zforsparc"; then
65 with_distro="sparclinux"
66 fi
67
68 if test "z$with_distro" = "z"; then
69 with_distro="unknown"
70 fi
71 case $with_distro in
72 ubuntu|raspbian)
73 distroconf=default.conf.lxcbr
74 distrosysconf="$sysconfdir/default"
75 ;;
76 redhat|centos|fedora|oracle|oracleserver|sparclinux|altlinux|suse|opensuse*|plamo|pld)
77 distroconf=default.conf.lxcbr
78 distrosysconf="$sysconfdir/sysconfig"
79 ;;
80 *)
81 distroconf=default.conf.unknown
82 distrosysconf="$sysconfdir/default"
83 ;;
84 esac
85 AC_MSG_RESULT([$with_distro])
86 AM_CONDITIONAL([HAVE_DEBIAN], [test x"$with_distro" = "xdebian" -o x"$with_distro" = "xubuntu" -o x"$with_distro" = "xraspbian"])
87 AM_CONDITIONAL([DISTRO_UBUNTU], [test "x$with_distro" = "xubuntu"])
88
89 AC_CONFIG_LINKS([config/etc/default.conf:config/etc/${distroconf}])
90
91 # Check for init system type
92 AC_MSG_CHECKING([for init system type])
93 AC_ARG_WITH([init-script],
94 [AC_HELP_STRING([--with-init-script@<:@=TYPE@<:@,TYPE,...@:>@@:>@],
95 [Type(s) of init script to install: sysvinit, systemd, upstart,
96 distro @<:@default=distro@:>@])],[],[with_init_script=distro])
97 case "$with_init_script" in
98 distro)
99 case $with_distro in
100 fedora|altlinux|opensuse*)
101 init_script=systemd
102 ;;
103 redhat|centos|oracle|oracleserver|sparclinux|plamo)
104 init_script=sysvinit
105 ;;
106 debian|raspbian)
107 init_script=upstart,systemd
108 ;;
109 ubuntu)
110 init_script=upstart,systemd
111 ;;
112 pld)
113 init_script=sysvinit,upstart,systemd
114 ;;
115 *)
116 echo -n "Linux distribution init system unknown."
117 init_script=
118 ;;
119 esac
120 ;;
121 *)
122 init_script=$with_init_script
123 ;;
124 esac
125
126 # Check valid init systems were given, run in subshell so we don't mess up IFS
127 (IFS="," ; for init_sys in $init_script;
128 do
129 case "$init_sys" in
130 none|sysvinit|systemd|upstart)
131 ;;
132 *)
133 exit 1
134 ;;
135 esac
136 done) || AC_MSG_ERROR([Unknown init system type in $init_script])
137
138 AM_CONDITIONAL([INIT_SCRIPT_SYSV], [echo "$init_script" |grep -q "sysvinit"])
139 AM_CONDITIONAL([INIT_SCRIPT_SYSTEMD], [echo "$init_script" |grep -q "systemd"])
140 AM_CONDITIONAL([INIT_SCRIPT_UPSTART], [echo "$init_script" |grep -q "upstart"])
141 AC_MSG_RESULT($init_script)
142
143 # systemd unit dir
144 AC_ARG_WITH([systemdsystemunitdir],
145 AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]),
146 [],
147 [with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)])
148 if test -z "$with_systemdsystemunitdir"; then
149 with_systemdsystemunitdir=/lib/systemd/system
150 fi
151 if test "x$with_systemdsystemunitdir" != "xno"; then
152 AC_SUBST([SYSTEMD_UNIT_DIR], [$with_systemdsystemunitdir])
153 fi
154
155 # Allow enabling deprecated executables
156 AC_ARG_ENABLE([deprecated],
157 [AC_HELP_STRING([--enable-deprecated],
158 [enable deprecated executables [default=no]])],
159 [], [enable_deprecated=false])
160 AM_CONDITIONAL([ENABLE_DEPRECATED], [test "x$enable_deprecated" = "xyes"])
161
162 # Allow disabling rpath
163 AC_ARG_ENABLE([rpath],
164 [AC_HELP_STRING([--enable-rpath], [set rpath in executables [default=no]])],
165 [], [enable_rpath=no])
166 AM_CONDITIONAL([ENABLE_RPATH], [test "x$enable_rpath" = "xyes"])
167
168 # Documentation (manpages)
169 AC_ARG_ENABLE([doc],
170 [AC_HELP_STRING([--enable-doc], [make man pages [default=auto]])],
171 [], [enable_doc=auto])
172
173 if test "x$enable_doc" = "xyes" -o "x$enable_doc" = "xauto"; then
174 db2xman=""
175 dbparsers="docbook2X2man docbook2x-man db2x_docbook2man docbook2man docbook-to-man"
176
177 AC_MSG_CHECKING(for docbook2x-man)
178 for name in ${dbparsers}; do
179 if "$name" --help >/dev/null 2>&1; then
180 db2xman="$name"
181 break;
182 fi
183 done
184
185 if test -n "${db2xman}"; then
186 AC_MSG_RESULT([${db2xman}])
187 enable_doc="yes"
188 else
189 AC_MSG_RESULT([no])
190 if test "x$enable_doc" = "xyes"; then
191 AC_MSG_ERROR([docbook2x-man is required, but could not be found])
192 fi
193 enable_doc="no"
194 fi
195
196 AC_SUBST(db2xman)
197 fi
198 AM_CONDITIONAL([ENABLE_DOCBOOK], [test "x$db2xman" != "x"])
199 AM_CONDITIONAL([USE_DOCBOOK2X], [test "x$db2xman" != "xdocbook2man"])
200
201 if test "x$db2xman" = "xdocbook2man"; then
202 docdtd="\"-//Davenport//DTD DocBook V3.0//EN\""
203 else
204 docdtd="\"-//OASIS//DTD DocBook XML\" \"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd\""
205 fi
206 AC_SUBST(docdtd)
207
208 # Documentation (API)
209 AC_ARG_ENABLE([api-docs],
210 [AC_HELP_STRING([--enable-api-docs],
211 [make API documentation [default=auto]])],
212 [], [enable_api_docs=auto])
213
214 if test "x$enable_api_docs" = "xyes" -o "x$enable_api_docs" = "xauto"; then
215 AC_CHECK_PROGS([HAVE_DOXYGEN],[doxygen])
216 AC_SUBST([HAVE_DOXYGEN])
217
218 if test "x$HAVE_DOXYGEN" != "x"; then
219 enable_api_docs="yes"
220 else
221 if test "x$enable_api_docs" = "xyes"; then
222 AC_MSG_ERROR([doxygen is required, but could not be found])
223 fi
224 enable_api_docs="no"
225 fi
226 fi
227
228 AM_CONDITIONAL([ENABLE_API_DOCS], [test "x$HAVE_DOXYGEN" != "x"])
229
230 # Apparmor
231 AC_ARG_ENABLE([apparmor],
232 [AC_HELP_STRING([--enable-apparmor], [enable apparmor support [default=auto]])],
233 [], [enable_apparmor=auto])
234
235 if test "$enable_apparmor" = "auto" ; then
236 AC_CHECK_LIB([apparmor],[aa_change_profile],[enable_apparmor=yes], [enable_apparmor=no])
237 fi
238 AM_CONDITIONAL([ENABLE_APPARMOR], [test "x$enable_apparmor" = "xyes"])
239
240 AC_CHECK_LIB([gnutls], [gnutls_hash_fast], [enable_gnutls=yes], [enable_gnutls=no])
241
242 AM_COND_IF([ENABLE_APPARMOR],
243 [AC_CHECK_HEADER([sys/apparmor.h],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
244 AC_CHECK_LIB([apparmor], [aa_change_profile],[],[AC_MSG_ERROR([You must install the AppArmor development package in order to compile lxc])])
245 AC_SUBST([APPARMOR_LIBS], [-lapparmor])])
246
247 # SELinux
248 AC_ARG_ENABLE([selinux],
249 [AC_HELP_STRING([--enable-selinux], [enable SELinux support [default=auto]])],
250 [], [enable_selinux=auto])
251
252 if test "x$enable_selinux" = xauto; then
253 AC_CHECK_LIB([selinux],[setexeccon_raw],[enable_selinux=yes],[enable_selinux=no])
254 fi
255 AM_CONDITIONAL([ENABLE_SELINUX], [test "x$enable_selinux" = "xyes"])
256 AM_COND_IF([ENABLE_SELINUX],
257 [AC_CHECK_HEADER([selinux/selinux.h],[],[AC_MSG_ERROR([You must install the SELinux development package in order to compile lxc])])
258 AC_CHECK_LIB([selinux], [setexeccon_raw],[true],[AC_MSG_ERROR([You must install the SELinux development package in order to compile lxc])])
259 AC_SUBST([SELINUX_LIBS], [-lselinux])])
260
261 # Seccomp syscall filter
262 AC_ARG_ENABLE([seccomp],
263 [AC_HELP_STRING([--enable-seccomp], [enable seccomp support [default=auto]])],
264 [], [enable_seccomp=auto])
265
266 if test "x$enable_seccomp" = "xauto" ; then
267 AC_CHECK_LIB([seccomp],[seccomp_init],[enable_seccomp=yes],[enable_seccomp=no])
268 fi
269 AM_CONDITIONAL([ENABLE_SECCOMP], [test "x$enable_seccomp" = "xyes"])
270
271 AM_COND_IF([ENABLE_SECCOMP],
272 [PKG_CHECK_MODULES([SECCOMP],[libseccomp],[],[
273 AC_CHECK_HEADER([seccomp.h],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
274 AC_CHECK_LIB([seccomp], [seccomp_init],[],[AC_MSG_ERROR([You must install the seccomp development package in order to compile lxc])])
275 AC_SUBST([SECCOMP_LIBS], [-lseccomp])
276 ])
277 ])
278
279 # cgmanager
280 AC_ARG_ENABLE([cgmanager],
281 [AC_HELP_STRING([--enable-cgmanager], [enable cgmanager support [default=auto]])],
282 [], [enable_cgmanager=auto])
283
284 if test "x$enable_cgmanager" = "xauto" ; then
285 AC_CHECK_LIB([cgmanager],[cgmanager_create],[enable_cgmanager=yes],[enable_cgmanager=no],[-lnih -lnih-dbus -ldbus-1])
286 fi
287 AM_CONDITIONAL([ENABLE_CGMANAGER], [test "x$enable_cgmanager" = "xyes"])
288
289 AM_COND_IF([ENABLE_CGMANAGER],
290 [PKG_CHECK_MODULES([CGMANAGER], [libcgmanager])
291 PKG_CHECK_MODULES([NIH], [libnih >= 1.0.2])
292 PKG_CHECK_MODULES([NIH_DBUS], [libnih-dbus >= 1.0.0])
293 PKG_CHECK_MODULES([DBUS], [dbus-1 >= 1.2.16])
294 ])
295
296 AC_MSG_CHECKING(for get_pid_cgroup_abs_sync)
297 save_LIBS=$LIBS
298 AC_SEARCH_LIBS([cgmanager_get_pid_cgroup_abs_sync], [cgmanager], [have_abs_cgroups=yes], [have_abs_cgroups=no], [-lnih -lnih-dbus -ldbus-1])
299 LIBS=$save_LIBS
300 if test "x$have_abs_cgroups" = "xyes"; then
301 AC_DEFINE([HAVE_CGMANAGER_GET_PID_CGROUP_ABS_SYNC], 1, [Have cgmanager_get_pid_cgroup_abs_sync])
302 AC_MSG_RESULT([yes])
303 else
304 AC_MSG_RESULT([no])
305 fi
306
307 AC_MSG_CHECKING(for cgmanager_list_controllers)
308 save_LIBS=$LIBS
309 AC_SEARCH_LIBS([cgmanager_list_controllers_sync], [cgmanager], [have_list_controllers=yes], [have_list_controllers=no], [-lnih -lnih-dbus -ldbus-1])
310 LIBS=$save_LIBS
311 if test "x$have_list_controllers" = "xyes"; then
312 AC_DEFINE([HAVE_CGMANAGER_LIST_CONTROLLERS], 1, [Have cgmanager_list_controllers])
313 AC_MSG_RESULT([yes])
314 else
315 AC_MSG_RESULT([no])
316 fi
317
318 # Check for static libcap, make sure the function checked for differs from the
319 # the one checked below so the cache doesn't give a wrong answer
320 OLD_CFLAGS="$CFLAGS"
321 CFLAGS="$CFLAGS -static"
322 AC_CHECK_LIB([cap],[cap_init],[have_static_libcap=yes],[have_static_libcap=no])
323 AM_CONDITIONAL([HAVE_STATIC_LIBCAP], [test "x$have_static_libcap" = "xyes"])
324 if test "x$have_static_libcap" = "xyes"; then
325 AC_DEFINE([HAVE_STATIC_LIBCAP], 1, [Have static libcap])
326 fi
327 CFLAGS="$OLD_CFLAGS"
328
329
330 # Linux capabilities
331 AC_ARG_ENABLE([capabilities],
332 [AC_HELP_STRING([--enable-capabilities], [enable kernel capabilities support [default=auto]])],
333 [], [enable_capabilities=auto])
334
335 if test "x$enable_capabilities" = "xauto"; then
336 AC_CHECK_LIB([cap],[cap_set_proc],[enable_capabilities=yes],[enable_capabilities=no])
337 fi
338 AM_CONDITIONAL([ENABLE_CAP], [test "x$enable_capabilities" = "xyes"])
339
340 AM_COND_IF([ENABLE_CAP],
341 [AC_CHECK_LIB(cap,cap_set_proc,[true],[AC_MSG_ERROR([You are missing libcap support.])])
342 AC_SUBST([CAP_LIBS], [-lcap])])
343
344 # HAVE_SCMP_FILTER_CTX=1 will tell us we have libseccomp api >= 1.0.0
345 OLD_CFLAGS="$CFLAGS"
346 CFLAGS="$CFLAGS $SECCOMP_CFLAGS"
347 AC_CHECK_TYPES([scmp_filter_ctx], [], [], [[#include <seccomp.h>]])
348 AC_CHECK_DECLS([seccomp_syscall_resolve_name_arch], [], [], [[#include <seccomp.h>]])
349 CFLAGS="$OLD_CFLAGS"
350
351 # Configuration examples
352 AC_ARG_ENABLE([examples],
353 [AC_HELP_STRING([--enable-examples], [install examples [default=yes]])],
354 [], [enable_examples=yes])
355 AM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" = "xyes"])
356
357 # Python3 module and scripts
358 AC_ARG_ENABLE([python],
359 [AC_HELP_STRING([--enable-python], [enable python binding [default=auto]])],
360 [], [enable_python=auto])
361
362 if test "x$enable_python" = "xauto"; then
363 PKG_CHECK_MODULES([PYTHONDEV], [python3 >= 3.2],[enable_python=yes],[enable_python=no])
364 if test "$CC" = "clang"; then
365 enable_python=no
366 fi
367 fi
368
369 if test "x$enable_python" = "xyes" && test "$CC" = "clang"; then
370 AC_MSG_ERROR([Python3 is incompatible with the clang compiler])
371 fi
372
373 AM_CONDITIONAL([ENABLE_PYTHON], [test "x$enable_python" = "xyes"])
374
375 AM_COND_IF([ENABLE_PYTHON],
376 [AM_PATH_PYTHON([3.2], [], [AC_MSG_ERROR([You must install python3])])
377 PKG_CHECK_MODULES([PYTHONDEV], [python3 >= 3.2],[],[AC_MSG_ERROR([You must install python3-dev])])
378 AC_DEFINE_UNQUOTED([ENABLE_PYTHON], 1, [Python3 is available])])
379
380 # Enable dumping stack traces
381 AC_ARG_ENABLE([mutex-debugging],
382 [AC_HELP_STRING([--enable-mutex-debugging], [Makes mutexes to report error and provide stack trace [default=no]])],
383 [], [enable_mutex_debugging=no])
384 AM_CONDITIONAL([MUTEX_DEBUGGING], [test "x$enable_mutex_debugging" = "xyes"])
385
386 AM_COND_IF([MUTEX_DEBUGGING],
387 AC_DEFINE_UNQUOTED([MUTEX_DEBUGGING], 1, [Enabling mutex debugging]))
388
389 # Not in older autoconf versions
390 # AS_VAR_COPY(DEST, SOURCE)
391 # -------------------------
392 # Set the polymorphic shell variable DEST to the contents of the polymorphic
393 # shell variable SOURCE.
394 m4_ifdef([AS_VAR_COPY], [],
395 [AC_DEFUN([AS_VAR_COPY],
396 [AS_LITERAL_IF([$1[]$2], [$1=$$2], [eval $1=\$$2])])
397 ])
398
399 dnl PKG_CHECK_VAR was introduced with pkg-config 0.28
400 m4_ifdef([PKG_CHECK_VAR], [],
401 [AC_DEFUN([PKG_CHECK_VAR],
402 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
403 AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
404 _PKG_CONFIG([$1], [variable="][$3]["], [$2])
405 AS_VAR_COPY([$1], [pkg_cv_][$1])
406 AS_VAR_IF([$1], [""], [$5], [$4])dnl
407 ])# PKG_CHECK_VAR
408 ])
409
410 # Lua module and scripts
411 AC_ARG_ENABLE([lua],
412 [AC_HELP_STRING([--enable-lua], [enable lua binding [default=auto]])],
413 [], [enable_lua=auto])
414
415 AC_ARG_WITH([lua-pc],
416 [AS_HELP_STRING(
417 [--with-lua-pc=PKG],
418 [Specify pkg-config package name for lua]
419 )], [], [with_lua_pc=no])
420
421 if test "x$enable_lua" = "xyes" -a "x$with_lua_pc" != "xno"; then
422 # exit with error if not found
423 PKG_CHECK_MODULES([LUA], [$with_lua_pc], [LUAPKGCONFIG=$with_lua_pc])
424 fi
425
426 if test "x$enable_lua" = "xauto" -a "x$with_lua_pc" != "xno"; then
427 PKG_CHECK_MODULES([LUA], [$with_lua_pc],
428 [LUAPKGCONFIG=$with_lua_pc
429 enable_lua=yes],
430 [enable_lua=no])
431 fi
432
433 if test "x$enable_lua" != "xno"; then
434 PKG_CHECK_MODULES([LUA], [lua], [LUAPKGCONFIG=lua],
435 [PKG_CHECK_MODULES([LUA], [lua5.2], [LUAPKGCONFIG=lua5.2],
436 [PKG_CHECK_MODULES([LUA], [lua5.1], [LUAPKGCONFIG=lua5.1],
437 [AS_IF([test "x$enable_lua" = "xyes"],
438 [AC_MSG_ERROR([Lua not found. Please use --with-lua-pc=PKG])],
439 [enable_lua=no])]
440 )]
441 )])
442 AS_IF([test "x$LUAPKGCONFIG" != "x"], [enable_lua=yes])
443 fi
444
445 AM_CONDITIONAL([ENABLE_LUA],
446 [test "x$enable_lua" = "xyes"])
447
448 AM_COND_IF([ENABLE_LUA],
449 [AC_MSG_CHECKING([Lua version])
450 PKG_CHECK_VAR([LUA_VERSION], [$LUAPKGCONFIG], [V],,
451 [PKG_CHECK_VAR([LUA_VERSION], [$LUAPKGCONFIG], [major_version])])
452 AC_MSG_RESULT([$LUA_VERSION])
453 AC_SUBST([LUA_LIBDIR], [$libdir/lua/$LUA_VERSION])
454 AC_SUBST([LUA_SHAREDIR], [$datadir/lua/$LUA_VERSION])
455 ])
456
457 # Optional bash integration
458 AC_ARG_ENABLE([bash],
459 [AC_HELP_STRING([--enable-bash], [build bash integration [default=yes]])],
460 [], [enable_bash=yes])
461 AM_CONDITIONAL([ENABLE_BASH], [test "x$enable_bash" = "xyes"])
462
463 # Optional test binaries
464 AC_ARG_ENABLE([tests],
465 [AC_HELP_STRING([--enable-tests], [build test/example binaries [default=no]])],
466 [], [enable_tests=no])
467 AM_CONDITIONAL([ENABLE_TESTS], [test "x$enable_tests" = "xyes"])
468
469 # Allow overriding the default runtime dir (/run)
470 AC_ARG_WITH([runtime-path],
471 [AC_HELP_STRING(
472 [--with-runtime-path=dir],
473 [runtime directory (default: /run)]
474 )], [], [with_runtime_path=['/run']])
475
476 # LXC container path, where the containers are actually stored
477 # This is overridden by an entry in the file called LXCCONF
478 # (i.e. /etc/lxc/lxc.conf)
479 AC_ARG_WITH([config-path],
480 [AC_HELP_STRING(
481 [--with-config-path=dir],
482 [lxc configuration repository path]
483 )], [], [with_config_path=['${localstatedir}/lib/lxc']])
484
485 # The path of the global lxc configuration file.
486 AC_ARG_WITH([global-conf],
487 [AC_HELP_STRING(
488 [--with-global-conf=dir],
489 [global lxc configuration file]
490 )], [], [with_global_conf=['${sysconfdir}/lxc/lxc.conf']])
491
492 # The path of the userns network configuration file
493 AC_ARG_WITH([usernic-conf],
494 [AC_HELP_STRING(
495 [--with-usernic-conf],
496 [user network interface configuration file]
497 )], [], [with_usernic_conf=['${sysconfdir}/lxc/lxc-usernet']])
498
499 # The path of the runtime usernic database
500 AC_ARG_WITH([usernic-db],
501 [AC_HELP_STRING(
502 [--with-usernic-db],
503 [lxc user nic database]
504 )], [], [with_usernic_db=['${with_runtime_path}/lxc/nics']])
505
506 # Rootfs path, where the container mount structure is assembled
507 AC_ARG_WITH([rootfs-path],
508 [AC_HELP_STRING(
509 [--with-rootfs-path=dir],
510 [lxc rootfs mount point]
511 )], [], [with_rootfs_path=['${libdir}/lxc/rootfs']])
512
513 # cgroup pattern specification
514 AC_ARG_WITH([cgroup-pattern],
515 [AC_HELP_STRING(
516 [--with-cgroup-pattern=pattern],
517 [pattern for container cgroups]
518 )], [], [with_cgroup_pattern=['/lxc/%n']])
519
520 # Container log path. By default, use $lxcpath.
521 AC_MSG_CHECKING([Whether to place logfiles in container config path])
522 AC_ARG_ENABLE([configpath-log],
523 [AC_HELP_STRING([--enable-configpath-log], [use logfiles in config path [default=no]])],
524 [], [enable_configpath_log=no])
525 AC_MSG_RESULT([$enable_configpath_log])
526 AM_CONDITIONAL([USE_CONFIGPATH_LOGS], [test "$enable_configpath_log" = "yes"])
527
528 if test "$enable_configpath_log" = "yes"; then
529 default_log_path="${with_config_path}"
530 else
531 default_log_path="${localstatedir}/log/lxc"
532 fi
533
534 AC_ARG_WITH([log-path],
535 [AC_HELP_STRING(
536 [--with-log-path=dir],
537 [per container log path]
538 )], [], [with_log_path=['${default_log_path}']])
539
540 # Expand some useful variables
541 AS_AC_EXPAND(PREFIX, "$prefix")
542 AS_AC_EXPAND(LIBDIR, "$libdir")
543 AS_AC_EXPAND(BINDIR, "$bindir")
544 AS_AC_EXPAND(SBINDIR, "$sbindir")
545 AS_AC_EXPAND(LIBEXECDIR, "$libexecdir")
546 AS_AC_EXPAND(INCLUDEDIR, "$includedir")
547 AS_AC_EXPAND(SYSCONFDIR, "$sysconfdir")
548 AS_AC_EXPAND(LXC_DEFAULT_CONFIG, "$sysconfdir/lxc/default.conf")
549 AS_AC_EXPAND(DATADIR, "$datadir")
550 AS_AC_EXPAND(LOCALSTATEDIR, "$localstatedir")
551 AS_AC_EXPAND(DOCDIR, "$docdir")
552 AS_AC_EXPAND(LXC_GENERATE_DATE, "$(date --utc --date=@${SOURCE_DATE_EPOCH:-$(date +%s)} '+%Y-%m-%d')")
553 AS_AC_EXPAND(LXCPATH, "$with_config_path")
554 AS_AC_EXPAND(LXC_GLOBAL_CONF, "$with_global_conf")
555 AS_AC_EXPAND(LXC_USERNIC_CONF, "$with_usernic_conf")
556 AS_AC_EXPAND(LXC_USERNIC_DB, "$with_usernic_db")
557 AS_AC_EXPAND(LXC_DISTRO_SYSCONF, "$distrosysconf")
558 AS_AC_EXPAND(LXCROOTFSMOUNT, "$with_rootfs_path")
559 AS_AC_EXPAND(LXCTEMPLATEDIR, "$datadir/lxc/templates")
560 AS_AC_EXPAND(LXCTEMPLATECONFIG, "$datadir/lxc/config")
561 AS_AC_EXPAND(LXCHOOKDIR, "$datadir/lxc/hooks")
562 AS_AC_EXPAND(LXCBINHOOKDIR, "$libexecdir/lxc/hooks")
563 AS_AC_EXPAND(LXCINITDIR, "$libexecdir")
564 AS_AC_EXPAND(LOGPATH, "$with_log_path")
565 AS_AC_EXPAND(RUNTIME_PATH, "$with_runtime_path")
566 AC_SUBST(DEFAULT_CGROUP_PATTERN, ["$with_cgroup_pattern"])
567
568 # We need the install path so criu knows where to reference the hook scripts.
569 AC_DEFINE_UNQUOTED([DATADIR], "$DATADIR", ["Prefix for shared files."])
570
571 # Check for some standard kernel headers
572 AC_CHECK_HEADERS([linux/unistd.h linux/netlink.h linux/genetlink.h],
573 [],
574 AC_MSG_ERROR([Please install the Linux kernel headers.]),
575 [#include <sys/socket.h>])
576
577 # Check for alternate C libraries
578 AC_MSG_CHECKING(for bionic libc)
579 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
580 [[#ifndef __ANDROID__
581 error: Not bionic!
582 #endif]])],
583 [is_bionic=yes],
584 [is_bionic=no])
585 if test "x$is_bionic" = "xyes"; then
586 AC_DEFINE([IS_BIONIC], 1, [bionic libc])
587 AC_MSG_RESULT([yes])
588 else
589 AC_MSG_RESULT([no])
590 fi
591 AM_CONDITIONAL([IS_BIONIC], [test "x$is_bionic" = "xyes"])
592
593 # Some systems lack PR_CAPBSET_DROP definition => HAVE_DECL_PR_CAPBSET_DROP
594 AC_CHECK_DECLS([PR_CAPBSET_DROP], [], [], [#include <sys/prctl.h>])
595
596 # Check for some headers
597 AC_CHECK_HEADERS([sys/signalfd.h pty.h ifaddrs.h sys/capability.h sys/personality.h utmpx.h sys/timerfd.h])
598
599 # Check for some syscalls functions
600 AC_CHECK_FUNCS([setns pivot_root sethostname unshare rand_r confstr faccessat])
601
602 # Check for some functions
603 AC_CHECK_LIB(pthread, main)
604 AC_CHECK_FUNCS(pthread_atfork)
605 AC_CHECK_FUNCS(statvfs)
606 AC_CHECK_LIB(util, openpty)
607 AC_CHECK_FUNCS([openpty hasmntopt setmntent endmntent utmpxname])
608 AC_CHECK_FUNCS([getline],
609 AM_CONDITIONAL(HAVE_GETLINE, true)
610 AC_DEFINE(HAVE_GETLINE,1,[Have getline]),
611 AM_CONDITIONAL(HAVE_GETLINE, false))
612 AC_CHECK_FUNCS([getsubopt],
613 AM_CONDITIONAL(HAVE_GETSUBOPT, true)
614 AC_DEFINE(HAVE_GETSUBOPT,1,[Have getsubopt]),
615 AM_CONDITIONAL(HAVE_GETSUBOPT, false))
616 AC_CHECK_FUNCS([fgetln],
617 AM_CONDITIONAL(HAVE_FGETLN, true)
618 AC_DEFINE(HAVE_FGETLN,1,[Have fgetln]),
619 AM_CONDITIONAL(HAVE_FGETLN, false))
620
621 # Check for some libraries
622 AC_SEARCH_LIBS(sem_open, [rt pthread])
623 AC_SEARCH_LIBS(clock_gettime, [rt])
624
625 # Check for some standard binaries
626 AC_PROG_GCC_TRADITIONAL
627 AC_PROG_SED
628
629 # See if we support thread-local storage.
630 LXC_CHECK_TLS
631
632 if test "x$GCC" = "xyes"; then
633 CFLAGS="$CFLAGS -Wall -Werror"
634 fi
635
636 # Files requiring some variable expansion
637 AC_CONFIG_FILES([
638 Makefile
639 lxc.pc
640 lxc.spec
641
642 config/Makefile
643 config/apparmor/Makefile
644 config/selinux/Makefile
645 config/bash/Makefile
646 config/bash/lxc
647 config/init/Makefile
648 config/init/common/Makefile
649 config/init/common/lxc-containers
650 config/init/common/lxc-net
651 config/init/systemd/Makefile
652 config/init/systemd/lxc.service
653 config/init/systemd/lxc@.service
654 config/init/systemd/lxc-net.service
655 config/init/sysvinit/Makefile
656 config/init/sysvinit/lxc-containers
657 config/init/sysvinit/lxc-net
658 config/init/upstart/lxc.conf
659 config/init/upstart/lxc-net.conf
660 config/init/upstart/Makefile
661 config/etc/Makefile
662 config/templates/Makefile
663 config/templates/alpine.common.conf
664 config/templates/alpine.userns.conf
665 config/templates/archlinux.common.conf
666 config/templates/archlinux.userns.conf
667 config/templates/centos.common.conf
668 config/templates/centos.userns.conf
669 config/templates/common.conf
670 config/templates/common.conf.d/Makefile
671 config/templates/debian.common.conf
672 config/templates/debian.userns.conf
673 config/templates/fedora.common.conf
674 config/templates/fedora.userns.conf
675 config/templates/gentoo.common.conf
676 config/templates/gentoo.moresecure.conf
677 config/templates/gentoo.userns.conf
678 config/templates/nesting.conf
679 config/templates/opensuse.common.conf
680 config/templates/opensuse.userns.conf
681 config/templates/oracle.common.conf
682 config/templates/oracle.userns.conf
683 config/templates/plamo.common.conf
684 config/templates/plamo.userns.conf
685 config/templates/slackware.common.conf
686 config/templates/slackware.userns.conf
687 config/templates/ubuntu-cloud.common.conf
688 config/templates/ubuntu-cloud.lucid.conf
689 config/templates/ubuntu-cloud.userns.conf
690 config/templates/ubuntu.common.conf
691 config/templates/ubuntu.lucid.conf
692 config/templates/ubuntu.userns.conf
693 config/templates/openwrt.common.conf
694 config/templates/sparclinux.common.conf
695 config/templates/sparclinux.userns.conf
696 config/templates/userns.conf
697 config/yum/Makefile
698 config/sysconfig/Makefile
699 config/sysconfig/lxc
700
701 doc/Makefile
702 doc/api/Makefile
703 doc/lxc-attach.sgml
704 doc/lxc-autostart.sgml
705 doc/lxc-cgroup.sgml
706 doc/lxc-checkconfig.sgml
707 doc/lxc-checkpoint.sgml
708 doc/lxc-clone.sgml
709 doc/lxc-config.sgml
710 doc/lxc-console.sgml
711 doc/lxc-copy.sgml
712 doc/lxc-create.sgml
713 doc/lxc-destroy.sgml
714 doc/lxc-device.sgml
715 doc/lxc-execute.sgml
716 doc/lxc-freeze.sgml
717 doc/lxc-info.sgml
718 doc/lxc-ls.sgml
719 doc/lxc-monitor.sgml
720 doc/lxc-snapshot.sgml
721 doc/lxc-start-ephemeral.sgml
722 doc/lxc-start.sgml
723 doc/lxc-stop.sgml
724 doc/lxc-top.sgml
725 doc/lxc-unfreeze.sgml
726 doc/lxc-unshare.sgml
727 doc/lxc-user-nic.sgml
728 doc/lxc-usernsexec.sgml
729 doc/lxc-wait.sgml
730
731 doc/lxc.conf.sgml
732 doc/lxc.container.conf.sgml
733 doc/lxc.system.conf.sgml
734 doc/lxc-usernet.sgml
735 doc/lxc.sgml
736 doc/common_options.sgml
737 doc/see_also.sgml
738
739 doc/rootfs/Makefile
740
741 doc/examples/Makefile
742 doc/examples/lxc-macvlan.conf
743 doc/examples/lxc-vlan.conf
744 doc/examples/lxc-no-netns.conf
745 doc/examples/lxc-empty-netns.conf
746 doc/examples/lxc-phys.conf
747 doc/examples/lxc-veth.conf
748 doc/examples/lxc-complex.conf
749
750 doc/ja/Makefile
751 doc/ja/lxc-attach.sgml
752 doc/ja/lxc-autostart.sgml
753 doc/ja/lxc-cgroup.sgml
754 doc/ja/lxc-checkconfig.sgml
755 doc/ja/lxc-checkpoint.sgml
756 doc/ja/lxc-clone.sgml
757 doc/ja/lxc-config.sgml
758 doc/ja/lxc-console.sgml
759 doc/ja/lxc-copy.sgml
760 doc/ja/lxc-create.sgml
761 doc/ja/lxc-destroy.sgml
762 doc/ja/lxc-device.sgml
763 doc/ja/lxc-execute.sgml
764 doc/ja/lxc-freeze.sgml
765 doc/ja/lxc-info.sgml
766 doc/ja/lxc-ls.sgml
767 doc/ja/lxc-monitor.sgml
768 doc/ja/lxc-snapshot.sgml
769 doc/ja/lxc-start-ephemeral.sgml
770 doc/ja/lxc-start.sgml
771 doc/ja/lxc-stop.sgml
772 doc/ja/lxc-top.sgml
773 doc/ja/lxc-unfreeze.sgml
774 doc/ja/lxc-unshare.sgml
775 doc/ja/lxc-user-nic.sgml
776 doc/ja/lxc-usernsexec.sgml
777 doc/ja/lxc-wait.sgml
778
779 doc/ja/lxc.conf.sgml
780 doc/ja/lxc.container.conf.sgml
781 doc/ja/lxc.system.conf.sgml
782 doc/ja/lxc-usernet.sgml
783 doc/ja/lxc.sgml
784 doc/ja/common_options.sgml
785 doc/ja/see_also.sgml
786
787 doc/ko/Makefile
788 doc/ko/lxc-attach.sgml
789 doc/ko/lxc-autostart.sgml
790 doc/ko/lxc-cgroup.sgml
791 doc/ko/lxc-checkconfig.sgml
792 doc/ko/lxc-checkpoint.sgml
793 doc/ko/lxc-clone.sgml
794 doc/ko/lxc-config.sgml
795 doc/ko/lxc-console.sgml
796 doc/ko/lxc-copy.sgml
797 doc/ko/lxc-create.sgml
798 doc/ko/lxc-destroy.sgml
799 doc/ko/lxc-device.sgml
800 doc/ko/lxc-execute.sgml
801 doc/ko/lxc-freeze.sgml
802 doc/ko/lxc-info.sgml
803 doc/ko/lxc-ls.sgml
804 doc/ko/lxc-monitor.sgml
805 doc/ko/lxc-snapshot.sgml
806 doc/ko/lxc-start-ephemeral.sgml
807 doc/ko/lxc-start.sgml
808 doc/ko/lxc-stop.sgml
809 doc/ko/lxc-top.sgml
810 doc/ko/lxc-unfreeze.sgml
811 doc/ko/lxc-unshare.sgml
812 doc/ko/lxc-user-nic.sgml
813 doc/ko/lxc-usernsexec.sgml
814 doc/ko/lxc-wait.sgml
815
816 doc/ko/lxc.conf.sgml
817 doc/ko/lxc.container.conf.sgml
818 doc/ko/lxc.system.conf.sgml
819 doc/ko/lxc-usernet.sgml
820 doc/ko/lxc.sgml
821 doc/ko/common_options.sgml
822 doc/ko/see_also.sgml
823
824 hooks/Makefile
825
826 templates/Makefile
827 templates/lxc-alpine
828 templates/lxc-altlinux
829 templates/lxc-archlinux
830 templates/lxc-busybox
831 templates/lxc-centos
832 templates/lxc-cirros
833 templates/lxc-debian
834 templates/lxc-download
835 templates/lxc-fedora
836 templates/lxc-gentoo
837 templates/lxc-openmandriva
838 templates/lxc-opensuse
839 templates/lxc-oracle
840 templates/lxc-plamo
841 templates/lxc-pld
842 templates/lxc-slackware
843 templates/lxc-sshd
844 templates/lxc-ubuntu
845 templates/lxc-ubuntu-cloud
846 templates/lxc-sparclinux
847
848 src/Makefile
849 src/lxc/Makefile
850 src/lxc/lxc.functions
851 src/lxc/tools/lxc-checkconfig
852 src/lxc/tools/lxc-start-ephemeral
853 src/lxc/version.h
854 src/python-lxc/Makefile
855
856 src/lua-lxc/Makefile
857
858 src/tests/Makefile
859 src/tests/lxc-test-usernic
860 ])
861 AC_CONFIG_COMMANDS([default],[[]],[[]])
862 AC_OUTPUT
863
864 # Configuration overview
865 cat << EOF
866
867 ----------------------------
868 Environment:
869 - compiler: $CC
870 - distribution: $with_distro
871 - init script type(s): $init_script
872 - rpath: $enable_rpath
873 - GnuTLS: $enable_gnutls
874 - Bash integration: $enable_bash
875
876 Security features:
877 - Apparmor: $enable_apparmor
878 - Linux capabilities: $enable_capabilities
879 - seccomp: $enable_seccomp
880 - SELinux: $enable_selinux
881 - cgmanager: $enable_cgmanager
882
883 Bindings:
884 - lua: $enable_lua
885 - python3: $enable_python
886
887 Documentation:
888 - examples: $enable_examples
889 - API documentation: $enable_api_docs
890 - user documentation: $enable_doc
891
892 Debugging:
893 - tests: $enable_tests
894 - mutex debugging: $enable_mutex_debugging
895
896 Paths:
897 - Logs in configpath: $enable_configpath_log
898 EOF
899
900 if test "x$ac_cv_func_pthread_atfork" = "xno" ; then
901 cat << EOF
902
903 WARNING: Threading not supported on your platform
904
905 You are compiling LXC for bionic target which lacks certain threading related functionality used by LXC API (like pthread_atfork).
906 Please note that, because of the missing functionality, multithreaded usage of LXC API cause some problems.
907 EOF
908 fi