2 # This file is part of systemd.
4 # Copyright 2010-2012 Lennart Poettering
5 # Copyright 2010-2012 Kay Sievers
7 # systemd is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU Lesser General Public License as published by
9 # the Free Software Foundation; either version 2.1 of the License, or
10 # (at your option) any later version.
12 # systemd is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # Lesser General Public License for more details.
17 # You should have received a copy of the GNU Lesser General Public License
18 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
24 [http://github.com/systemd/systemd/issues],
26 [http://www.freedesktop.org/wiki/Software/systemd])
28 AC_CONFIG_SRCDIR([src/core/main.c])
29 AC_CONFIG_MACRO_DIR([m4])
30 AC_CONFIG_HEADERS([config.h])
31 AC_CONFIG_AUX_DIR([build-aux])
33 AC_USE_SYSTEM_EXTENSIONS
35 AC_PREFIX_DEFAULT([/usr])
36 AM_MAINTAINER_MODE([enable])
37 AM_INIT_AUTOMAKE([foreign 1.11 -Wall -Wno-portability silent-rules tar-pax no-dist-gzip dist-xz subdir-objects parallel-tests])
38 AM_SILENT_RULES([yes])
40 AC_DEFINE_UNQUOTED([CANONICAL_HOST], "$host", [Canonical host string.])
45 AS_IF([test "x$ax_cv_c_compiler_vendor" = "xgnu"], [
46 AC_CHECK_TOOLS([AR], [gcc-ar ar], [:])
47 AC_CHECK_TOOLS([NM], [gcc-nm nm], [:])
48 AC_CHECK_TOOLS([RANLIB], [gcc-ranlib ranlib], [:])
52 LT_INIT([disable-static])
54 AS_IF([test "x$enable_static" = "xyes"], [AC_MSG_ERROR([--enable-static is not supported by systemd])])
55 AS_IF([test "x$enable_largefile" = "xno"], [AC_MSG_ERROR([--disable-largefile is not supported by systemd])])
57 SET_ARCH(X86_64, x86_64*)
60 SET_ARCH(AARCH64, aarch64*)
62 # i18n stuff for the PolicyKit policy files, heck whether intltool can be found, disable NLS otherwise
63 AC_CHECK_PROG(intltool_found, [intltool-merge], [yes], [no])
64 AS_IF([test x"$intltool_found" != xyes],
65 [AS_IF([test x"$enable_nls" = xyes],
66 [AC_MSG_ERROR([--enable-nls requested but intltool not found])],
67 [AS_IF([test x"$enable_nls" != xno],
68 [AC_MSG_WARN([*** Disabling NLS support because intltool was not found])
74 AS_IF([test x"$enable_nls" != xno -o "x$enable_polkit" != xno], [
75 # intltoolize greps for '^(AC|IT)_PROG_INTLTOOL', so it needs to be on its own line
76 IT_PROG_INTLTOOL([0.40.0])
79 AS_IF([test -z "$INTLTOOL_POLICY_RULE"], [
80 # If intltool is not available, provide a dummy rule to fail generation of %.policy files with a meaningful error message
81 INTLTOOL_POLICY_RULE='%.policy: %.policy.in ; @echo " ITMRG " $@ && echo "*** intltool support required to build target $@" && false'
82 AC_SUBST(INTLTOOL_POLICY_RULE)
85 GETTEXT_PACKAGE=systemd
86 AC_SUBST(GETTEXT_PACKAGE)
87 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [systemd])
95 AC_PATH_PROG([M4], [m4])
97 AC_PATH_PROG([QUOTAON], [quotaon], [/usr/sbin/quotaon], [$PATH:/usr/sbin:/sbin])
98 AC_PATH_PROG([QUOTACHECK], [quotacheck], [/usr/sbin/quotacheck], [$PATH:/usr/sbin:/sbin])
100 AC_PATH_PROG([SETCAP], [setcap], [/usr/sbin/setcap], [$PATH:/usr/sbin:/sbin])
102 AC_PATH_PROG([KILL], [kill], [/usr/bin/kill], [$PATH:/usr/sbin:/sbin])
104 AC_PATH_PROG([KMOD], [kmod], [/usr/bin/kmod], [$PATH:/usr/sbin:/sbin])
106 AC_PATH_PROG([KEXEC], [kexec], [/usr/sbin/kexec], [$PATH:/usr/sbin:/sbin])
108 AC_PATH_PROG([SULOGIN], [sulogin], [/usr/sbin/sulogin], [$PATH:/usr/sbin:/sbin])
110 AC_PATH_PROG([MOUNT_PATH], [mount], [/usr/bin/mount], [$PATH:/usr/sbin:/sbin])
111 AC_PATH_PROG([UMOUNT_PATH], [umount], [/usr/bin/umount], [$PATH:/usr/sbin:/sbin])
113 AS_IF([! ln --relative --help > /dev/null 2>&1], [AC_MSG_ERROR([*** ln doesn't support --relative ***])])
117 AC_CHECK_TOOL(OBJCOPY, objcopy)
118 AC_CHECK_TOOL(STRINGS, strings)
119 AC_CHECK_TOOL(GPERF, gperf)
120 if test -z "$GPERF" ; then
121 AC_MSG_ERROR([*** gperf not found])
124 # ------------------------------------------------------------------------------
125 address_sanitizer_cflags=
126 address_sanitizer_cppflags=
127 address_sanitizer_ldflags=
128 AC_ARG_ENABLE(address-sanitizer, AS_HELP_STRING([--enable-address-sanitizer], [enable -fsanitize=address]))
129 AS_IF([test "x$enable_address_sanitizer" = "xyes"], [
130 CC_CHECK_FLAG_APPEND([with_as_cflags], [CFLAGS], [-fsanitize=address])
131 AS_IF([test -z "$with_as_cflags"],
132 [AC_MSG_ERROR([*** -fsanitize=address is not supported])])
133 address_sanitizer_cflags="$with_as_cflags -fno-omit-frame-pointer -DVALGRIND=1"
134 address_sanitizer_cppflags="-DVALGRIND=1"
135 address_sanitizer_ldflags="-Wc,-fsanitize=address"
138 undefined_sanitizer_cflags=
139 undefined_sanitizer_cppflags=
140 undefined_sanitizer_ldflags=
141 AC_ARG_ENABLE(undefined-sanitizer, AS_HELP_STRING([--enable-undefined-sanitizer], [enable -fsanitize=undefined]))
142 AS_IF([test "x$enable_undefined_sanitizer" = "xyes"], [
143 CC_CHECK_FLAG_APPEND([with_us_cflags], [CFLAGS], [-fsanitize=undefined])
144 AS_IF([test -z "$with_us_cflags"],
145 [AC_MSG_ERROR([*** -fsanitize=undefined is not supported])])
146 undefined_sanitizer_cflags="$with_us_cflags -fno-omit-frame-pointer -DVALGRIND=1"
147 undefined_sanitizer_cppflags="-DVALGRIND=1"
148 undefined_sanitizer_ldflags="-Wc,-fsanitize=undefined"
151 sanitizer_cflags="$address_sanitizer_cflags $undefined_sanitizer_cflags"
152 sanitizer_cppflags="$address_sanitizer_cppflags $undefined_sanitizer_cppflags"
153 sanitizer_ldflags="$address_sanitizer_ldflags $undefined_sanitizer_ldflags"
155 CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
160 "-Wformat=2 -Wformat-security -Wformat-nonliteral" \
162 -Wmissing-include-dirs \
163 -Wold-style-definition \
166 -Wdeclaration-after-statement \
168 -Wsuggest-attribute=noreturn \
169 -Werror=missing-prototypes \
170 -Werror=implicit-function-declaration \
171 -Werror=missing-declarations \
172 -Werror=return-type \
173 -Wstrict-prototypes \
178 -Wstrict-aliasing=2 \
180 -Wno-unused-parameter \
181 -Wno-missing-field-initializers \
183 -Wno-format-signedness \
189 -fdiagnostics-show-option \
190 -fno-strict-aliasing \
191 -fvisibility=hidden \
193 -fstack-protector-strong \
195 --param=ssp-buffer-size=4])
197 CC_CHECK_FLAG_APPEND([with_cflags], [CFLAGS], [-Werror=shadow], [
199 #include <inttypes.h>
200 typedef uint64_t usec_t;
201 usec_t now(clockid_t clock);
208 AS_CASE([$CC], [*clang*],
209 [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
210 -Wno-typedef-redefinition \
211 -Wno-gnu-variable-sized-type-not-at-end \
214 AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*],
215 [CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
217 [AC_MSG_RESULT([skipping -flto, optimization not enabled])])
218 AC_SUBST([OUR_CFLAGS], "$with_cflags $sanitizer_cflags")
220 AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*],
221 [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
222 -Wp,-D_FORTIFY_SOURCE=2])],
223 [AC_MSG_RESULT([skipping -D_FORTIFY_SOURCE, optimization not enabled])])
224 AC_SUBST([OUR_CPPFLAGS], "$with_cppflags $sanitizer_cppflags")
226 AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*],
227 [CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\
228 -Wl,--gc-sections])],
229 [AC_MSG_RESULT([skipping --gc-sections, optimization not enabled])])
230 AC_SUBST([OUR_CFLAGS], "$with_ldflags $sanitizer_cflags")
232 AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*],
233 [CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
234 -ffunction-sections -fdata-sections])],
235 [AC_MSG_RESULT([skipping -ffunction/data-section, optimization not enabled])])
236 AC_SUBST([OUR_CFLAGS], "$with_cflags $sanitizer_cflags")
238 CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\
245 AC_SUBST([OUR_LDFLAGS], "$with_ldflags $sanitizer_ldflags")
247 AC_CHECK_SIZEOF(pid_t)
248 AC_CHECK_SIZEOF(uid_t)
249 AC_CHECK_SIZEOF(gid_t)
250 AC_CHECK_SIZEOF(time_t)
251 AC_CHECK_SIZEOF(dev_t)
252 AC_CHECK_SIZEOF(rlim_t,,[
253 #include <sys/time.h>
254 #include <sys/resource.h>
257 # ------------------------------------------------------------------------------
258 # we use python to build the man page index
260 AC_ARG_WITH([python],
261 [AS_HELP_STRING([--without-python], [Disable building the man page index and systemd-python (default: test)])])
264 AS_IF([test "x$with_python" != "xno"], [
265 AM_PATH_PYTHON(,, [:])
266 AS_IF([test "x$PYTHON" != "x:"], [
267 AC_MSG_CHECKING([for python lxml module])
268 AS_IF(["$PYTHON" -c 'import lxml' 2>/dev/null], [have_lxml=yes])
269 AC_MSG_RESULT([$have_lxml])
270 AS_IF([test "x$have_lxml" = "xyes"], [have_python=yes],
271 [AC_MSG_WARN([*** python support requires python-lxml module installed])])
274 AS_IF([test "$have_python" != "yes"], [
275 AS_IF([test "$with_python" = "yes"],
276 [AC_MSG_ERROR([*** python support requested but python support not found])])
277 AS_IF([test "$with_python" != "no"],
278 [AC_MSG_WARN([*** python support not found, some documentation cannot be built])])
280 AM_CONDITIONAL([HAVE_PYTHON], [test "x$have_python" = "xyes"])
282 # ------------------------------------------------------------------------------
284 AC_CHECK_HEADERS([sys/capability.h], [], [AC_MSG_ERROR([*** POSIX caps headers not found])])
285 AC_CHECK_HEADERS([linux/btrfs.h], [], [])
286 AC_CHECK_HEADERS([linux/memfd.h], [], [])
288 # unconditionally pull-in librt with old glibc versions
289 AC_SEARCH_LIBS([clock_gettime], [rt], [], [])
293 AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
298 AC_CHECK_FUNCS([memfd_create])
299 AC_CHECK_FUNCS([__secure_getenv secure_getenv])
300 AC_CHECK_DECLS([gettid, pivot_root, name_to_handle_at, setns, getrandom, renameat2,
301 kcmp, keyctl, key_serial_t, char16_t, char32_t, LO_FLAGS_PARTSCAN],
303 #include <sys/types.h>
305 #include <sys/mount.h>
308 #include <linux/loop.h>
309 #include <linux/random.h>
312 AC_CHECK_DECLS([IFLA_INET6_ADDR_GEN_MODE,
319 IFLA_VXLAN_REMCSUM_NOPARTIAL,
320 IFLA_IPTUN_ENCAP_DPORT,
321 IFLA_GRE_ENCAP_DPORT,
322 IFLA_BRIDGE_VLAN_INFO,
323 IFLA_BRPORT_LEARNING_SYNC,
328 #include <inttypes.h>
329 #include <netinet/in.h>
330 #include <netinet/ether.h>
331 #include <linux/rtnetlink.h>
333 #include <linux/ip.h>
334 #include <linux/if_tunnel.h>
335 #include <linux/if_link.h>
336 #include <linux/if_bridge.h>
337 #include <linux/if_addr.h>
338 #include <linux/neighbour.h>
341 # This makes sure pkg.m4 is available.
342 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
344 # ------------------------------------------------------------------------------
346 AC_ARG_ENABLE(dbus, AS_HELP_STRING([--disable-dbus], [disable usage of dbus-1 in tests]))
347 AS_IF([test "x$enable_dbus" != "xno"], [
348 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.3.2],
349 [AC_DEFINE(HAVE_DBUS, 1, [Define if dbus-1 library is available]) have_dbus=yes],
351 AS_IF([test "x$have_dbus" = "xno" -a "x$enable_dbus" = "xyes"],
352 [AC_MSG_ERROR([*** dbus-1 support requested but libraries not found])])])
353 AM_CONDITIONAL(HAVE_DBUS, [test "$have_dbus" = "yes"])
355 # ------------------------------------------------------------------------------
357 AC_ARG_ENABLE([utmp], AS_HELP_STRING([--disable-utmp], [disable utmp/wtmp log handling]),
358 AS_CASE("x${enableval}",
359 [xyes], [have_utmp=yes],
360 [xno], [have_utmp=no],
361 AC_MSG_ERROR(bad value ${enableval} for --enable-utmp)))
362 AS_IF([test "x$have_utmp" = "xyes"], [AC_DEFINE(HAVE_UTMP, 1, [Define if utmp/wtmp support is enabled])])
363 AM_CONDITIONAL([HAVE_UTMP], [test "x$have_utmp" = "xyes"])
365 # ------------------------------------------------------------------------------
367 AC_ARG_ENABLE([compat_libs], AS_HELP_STRING([--enable-compat-libs],[Enable creation of compatibility libraries]),
368 [case "${enableval}" in
369 yes) have_compat_libs=yes ;;
370 no) have_compat_libs=no ;;
371 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-libs) ;;
373 [have_compat_libs=no])
374 AM_CONDITIONAL([ENABLE_COMPAT_LIBS], [test "$have_compat_libs" = "yes"])
376 # ------------------------------------------------------------------------------
378 AC_ARG_ENABLE(coverage, AS_HELP_STRING([--enable-coverage], [enable test coverage]))
379 if test "x$enable_coverage" = "xyes" ; then
380 AC_CHECK_PROG(lcov_found, [lcov], [yes], [no])
381 if test "x$lcov_found" = xno ; then
382 AC_MSG_ERROR([*** lcov support requested but the program was not found])
384 lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`"
385 lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`"
386 if test "$lcov_version_major" -eq 1 -a "$lcov_version_minor" -lt 10; then
387 AC_MSG_ERROR([*** lcov version is too old. 1.10 required])
390 CC_CHECK_FLAGS_APPEND([with_coverage_cflags], [CFLAGS], [\
393 AC_SUBST([OUR_CFLAGS], "$with_cflags $with_coverage_cflags")
397 AM_CONDITIONAL(ENABLE_COVERAGE, [test "$have_coverage" = "yes"])
399 # ------------------------------------------------------------------------------
401 AC_ARG_ENABLE(kmod, AS_HELP_STRING([--disable-kmod], [disable loadable modules support]))
402 if test "x$enable_kmod" != "xno"; then
403 PKG_CHECK_EXISTS([ libkmod ], have_kmod=yes, have_kmod=no)
404 if test "x$have_kmod" = "xyes"; then
405 PKG_CHECK_MODULES(KMOD, [ libkmod >= 15 ],
406 [AC_DEFINE(HAVE_KMOD, 1, [Define if kmod is available])],
407 AC_MSG_ERROR([*** kmod version >= 15 not found]))
409 if test "x$have_kmod" = xno -a "x$enable_kmod" = xyes; then
410 AC_MSG_ERROR([*** kmod support requested, but libraries not found])
413 AM_CONDITIONAL(HAVE_KMOD, [test "$have_kmod" = "yes"])
415 # ------------------------------------------------------------------------------
417 AC_ARG_ENABLE(xkbcommon, AS_HELP_STRING([--disable-xkbcommon], [disable xkbcommon keymap support]))
418 if test "x$enable_xkbcommon" != "xno"; then
419 PKG_CHECK_MODULES(XKBCOMMON, [ xkbcommon >= 0.3.0 ],
420 [AC_DEFINE(HAVE_XKBCOMMON, 1, [Define if libxkbcommon is available]) have_xkbcommon=yes], have_xkbcommon=no)
421 if test "x$have_xkbcommon" = xno -a "x$enable_xkbcommon" = xyes; then
422 AC_MSG_ERROR([*** xkbcommon support requested but libraries not found])
425 AM_CONDITIONAL(HAVE_XKBCOMMON, [test "$have_xkbcommon" = "yes"])
427 # ------------------------------------------------------------------------------
429 AC_ARG_ENABLE(blkid, AS_HELP_STRING([--disable-blkid], [disable blkid support]))
430 if test "x$enable_blkid" != "xno"; then
431 PKG_CHECK_MODULES(BLKID, [ blkid >= 2.24 ],
432 [AC_DEFINE(HAVE_BLKID, 1, [Define if blkid is available]) have_blkid=yes], have_blkid=no)
433 if test "x$have_blkid" = xno -a "x$enable_blkid" = xyes; then
434 AC_MSG_ERROR([*** blkid support requested but libraries not found])
437 AM_CONDITIONAL(HAVE_BLKID, [test "$have_blkid" = "yes"])
439 # ------------------------------------------------------------------------------
441 PKG_CHECK_MODULES(MOUNT, [ mount >= 2.27 ],
442 [AC_DEFINE(HAVE_LIBMOUNT, 1, [Define if libmount is available]) have_libmount=yes], have_libmount=no)
443 if test "x$have_libmount" = xno; then
444 AC_MSG_ERROR([*** libmount support required but libraries not found])
446 AM_CONDITIONAL(HAVE_LIBMOUNT, [test "$have_libmount" = "yes"])
448 # ------------------------------------------------------------------------------
450 AC_ARG_ENABLE(seccomp, AS_HELP_STRING([--disable-seccomp], [Disable optional SECCOMP support]))
451 if test "x$enable_seccomp" != "xno"; then
452 PKG_CHECK_MODULES(SECCOMP, [libseccomp >= 1.0.0],
453 [AC_DEFINE(HAVE_SECCOMP, 1, [Define if seccomp is available])
455 M4_DEFINES="$M4_DEFINES -DHAVE_SECCOMP"],
457 if test "x$have_seccomp" = "xno" -a "x$enable_seccomp" = "xyes"; then
458 AC_MSG_ERROR([*** seccomp support requested but libraries not found])
461 AM_CONDITIONAL(HAVE_SECCOMP, [test "$have_seccomp" = "yes"])
463 # ------------------------------------------------------------------------------
465 AC_ARG_ENABLE([ima], AS_HELP_STRING([--disable-ima],[Disable optional IMA support]),
466 [case "${enableval}" in
469 *) AC_MSG_ERROR(bad value ${enableval} for --disable-ima) ;;
473 if test "x${have_ima}" != xno ; then
474 AC_DEFINE(HAVE_IMA, 1, [Define if IMA is available])
477 # ------------------------------------------------------------------------------
479 AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
480 if test "x$enable_selinux" != "xno"; then
481 PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9],
482 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available])
484 M4_DEFINES="$M4_DEFINES -DHAVE_SELINUX"],
486 if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
487 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
490 AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
493 AC_ARG_ENABLE(apparmor, AS_HELP_STRING([--disable-apparmor], [Disable optional AppArmor support]))
494 if test "x$enable_apparmor" != "xno"; then
495 PKG_CHECK_MODULES([APPARMOR], [libapparmor],
496 [AC_DEFINE(HAVE_APPARMOR, 1, [Define if AppArmor is available])
498 M4_DEFINES="$M4_DEFINES -DHAVE_APPARMOR"],
500 if test "x$have_apparmor" = xno -a "x$enable_apparmor" = xyes; then
501 AC_MSG_ERROR([*** AppArmor support requested but libraries not found])
504 AM_CONDITIONAL(HAVE_APPARMOR, [test "$have_apparmor" = "yes"])
507 AC_ARG_WITH(debug-shell,
508 AS_HELP_STRING([--with-debug-shell=PATH],
509 [Path to debug shell binary]),
510 [SUSHELL="$withval"],[
511 AS_IF([test "x${have_selinux}" != "xno"], [SUSHELL="/sbin/sushell"] , [SUSHELL="/bin/sh"])])
515 AC_ARG_WITH([debug-tty],
516 AS_HELP_STRING([--with-debug-tty=PATH],
517 [Specify the tty device for debug shell]),
518 [DEBUGTTY="$withval"],
519 [DEBUGTTY=/dev/tty9])
523 AC_ARG_WITH([certificate-root],
524 AS_HELP_STRING([--with-certificate-root=PATH],
525 [Specify the prefix for TLS certificates [/etc/ssl]]),
526 [CERTIFICATEROOT="$withval"],
527 [CERTIFICATEROOT="/etc/ssl"])
529 AC_SUBST(CERTIFICATEROOT)
531 # ------------------------------------------------------------------------------
533 AC_ARG_ENABLE(xz, AS_HELP_STRING([--disable-xz], [Disable optional XZ support]))
534 AS_IF([test "x$enable_xz" != "xno"], [
535 PKG_CHECK_MODULES(XZ, [ liblzma ],
536 [AC_DEFINE(HAVE_XZ, 1, [Define if XZ is available])
539 AS_IF([test "x$have_xz" = xno -a "x$enable_xz" = xyes],
540 [AC_MSG_ERROR([*** XZ support requested but libraries not found])])
542 AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"])
544 # ------------------------------------------------------------------------------
546 AC_ARG_ENABLE(zlib, AS_HELP_STRING([--disable-zlib], [Disable optional ZLIB support]))
547 AS_IF([test "x$enable_zlib" != "xno"], [
548 PKG_CHECK_MODULES(ZLIB, [ zlib ],
549 [AC_DEFINE(HAVE_ZLIB, 1, [Define if ZLIB is available])
552 AS_IF([test "x$have_zlib" = xno -a "x$enable_zlib" = xyes],
553 [AC_MSG_ERROR([*** ZLIB support requested but libraries not found])])
555 AM_CONDITIONAL(HAVE_ZLIB, [test "$have_zlib" = "yes"])
557 # ------------------------------------------------------------------------------
559 AC_ARG_ENABLE(bzip2, AS_HELP_STRING([--enable-bzip2], [Enable optional BZIP2 support]))
560 AS_IF([test "x$enable_bzip2" != "xno"], [
561 AC_CHECK_HEADERS(bzlib.h,
562 [AC_DEFINE(HAVE_BZIP2, 1, [Define if BZIP2 is available])
564 [AS_IF([test "x$enable_bzip2" = xyes],
565 [AC_MSG_ERROR([*** BZIP2 support requested but headers not found])])]
568 AM_CONDITIONAL(HAVE_BZIP2, [test "$have_bzip2" = "yes"])
570 # ------------------------------------------------------------------------------
572 AC_ARG_ENABLE(lz4, AS_HELP_STRING([--disable-lz4], [Disable optional LZ4 support]))
573 AS_IF([test "x$enable_lz4" != "xno"], [
574 PKG_CHECK_MODULES(LZ4, [ liblz4 >= 125 ],
575 [AC_DEFINE(HAVE_LZ4, 1, [Define in LZ4 is available])
578 AS_IF([test "x$have_lz4" = xno -a "x$enable_lz4" = xyes],
579 [AC_MSG_ERROR([*** LZ4 support requested but libraries not found])])
581 AM_CONDITIONAL(HAVE_LZ4, [test "$have_lz4" = "yes"])
583 AM_CONDITIONAL(HAVE_COMPRESSION, [test "$have_xz" = "yes" -o "$have_lz4" = "yes"])
585 # ------------------------------------------------------------------------------
587 AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
588 [case "${enableval}" in
591 *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
595 if test "x${have_pam}" != xno ; then
597 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
599 [if test "x$have_pam" = xyes ; then
600 AC_MSG_ERROR([*** PAM headers not found.])
607 [if test "x$have_pam" = xyes ; then
608 AC_MSG_ERROR([*** libpam not found.])
611 if test "x$have_pam" = xyes ; then
612 PAM_LIBS="-lpam -lpam_misc"
613 AC_DEFINE(HAVE_PAM, 1, [PAM available])
614 M4_DEFINES="$M4_DEFINES -DHAVE_PAM"
622 AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
624 # ------------------------------------------------------------------------------
626 AS_HELP_STRING([--disable-acl],[Disable optional ACL support]),
627 [case "${enableval}" in
630 *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;;
634 if test "x${have_acl}" != xno ; then
636 [sys/acl.h acl/libacl.h],
638 [if test "x$have_acl" = xyes ; then
639 AC_MSG_ERROR([*** ACL headers not found.])
646 [if test "x$have_acl" = xyes ; then
647 AC_MSG_ERROR([*** libacl not found.])
650 if test "x$have_acl" = xyes ; then
652 AC_DEFINE(HAVE_ACL, 1, [ACL available])
653 M4_DEFINES="$M4_DEFINES -DHAVE_ACL"
661 AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno])
663 # ------------------------------------------------------------------------------
664 AC_ARG_ENABLE([smack], AS_HELP_STRING([--disable-smack],[Disable optional SMACK support]),
665 [case "${enableval}" in
666 yes) have_smack=yes ;;
668 *) AC_MSG_ERROR(bad value ${enableval} for --disable-smack) ;;
672 if test "x${have_smack}" != xno; then
673 AC_DEFINE(HAVE_SMACK, 1, [Define if SMACK is available])
674 M4_DEFINES="$M4_DEFINES -DHAVE_SMACK"
678 AM_CONDITIONAL([HAVE_SMACK], [test "x$have_smack" = "xyes"])
680 have_smack_run_label=no
681 AC_ARG_WITH(smack-run-label,
682 AS_HELP_STRING([--with-smack-run-label=STRING],
683 [run systemd --system itself with a specific SMACK label]),
684 [AC_DEFINE_UNQUOTED(SMACK_RUN_LABEL, ["$withval"], [Run systemd itself with SMACK label]) have_smack_run_label=yes],
687 if test "x${have_smack_run_label}" = xyes; then
688 M4_DEFINES="$M4_DEFINES -DHAVE_SMACK_RUN_LABEL"
691 AC_ARG_WITH(smack-default-process-label,
692 AS_HELP_STRING([--with-smack-default-process-label=STRING],
693 [default SMACK label for executed processes]),
694 [AC_DEFINE_UNQUOTED(SMACK_DEFAULT_PROCESS_LABEL, ["$withval"], [Default SMACK label for executed processes])],
697 # ------------------------------------------------------------------------------
698 AC_ARG_ENABLE([gcrypt],
699 AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]),
700 [case "${enableval}" in
701 yes) have_gcrypt=yes ;;
702 no) have_gcrypt=no ;;
703 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gcrypt) ;;
707 if test "x${have_gcrypt}" != xno ; then
708 m4_define([AM_PATH_LIBGCRYPT_FAIL],
709 [{ test "x$have_gcrypt" != xyes || AC_MSG_ERROR([*** GCRYPT/GPG-ERROR headers not found.]); }]
711 m4_ifdef([AM_PATH_LIBGCRYPT], [AM_PATH_LIBGCRYPT(
714 dnl If we have the gcrypt m4 macros, but don't have
715 dnl gcrypt, throw an error if gcrypt is explicitly
717 [AM_PATH_LIBGCRYPT_FAIL]
719 dnl If we don't have the gcrypt m4 macros, but build with
720 dnl gcrypt explicitly requested, throw an error.
721 [AM_PATH_LIBGCRYPT_FAIL]
725 m4_ifdef([AM_PATH_GPG_ERROR], [AM_PATH_GPG_ERROR(
727 [have_gpg_error=yes],
728 [AM_PATH_LIBGCRYPT_FAIL]
730 [AM_PATH_LIBGCRYPT_FAIL]
733 if test "x$have_gcrypt" = xyes -a "x$have_gpg_error" = xyes ; then
734 GCRYPT_LIBS="$LIBGCRYPT_LIBS $GPG_ERROR_LIBS"
735 GCRYPT_CFLAGS="$LIBGCRYPT_CFLAGS $GPG_ERROR_CFLAGS"
736 AC_DEFINE(HAVE_GCRYPT, 1, [GCRYPT available])
745 AC_SUBST(GCRYPT_LIBS)
746 AC_SUBST(GCRYPT_CFLAGS)
747 AM_CONDITIONAL([HAVE_GCRYPT], [test "x$have_gcrypt" != xno])
749 # ------------------------------------------------------------------------------
750 AC_ARG_ENABLE([audit],
751 AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]),
752 [case "${enableval}" in
753 yes) have_audit=yes ;;
755 *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;;
759 if test "x${have_audit}" != xno ; then
763 [if test "x$have_audit" = xyes ; then
764 AC_MSG_ERROR([*** AUDIT headers not found.])
771 [if test "x$have_audit" = xyes ; then
772 AC_MSG_ERROR([*** libaudit not found.])
775 if test "x$have_audit" = xyes ; then
777 AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available])
785 AM_CONDITIONAL([HAVE_AUDIT], [test "x$have_audit" != xno])
787 # ------------------------------------------------------------------------------
788 AC_ARG_ENABLE([elfutils],
789 AS_HELP_STRING([--disable-elfutils],[Disable optional ELFUTILS support]),
790 [case "${enableval}" in
791 yes) have_elfutils=yes ;;
792 no) have_elfutils=no ;;
793 *) AC_MSG_ERROR(bad value ${enableval} for --disable-elfutils) ;;
795 [have_elfutils=auto])
797 if test "x${have_elfutils}" != xno ; then
799 [elfutils/libdwfl.h],
801 [if test "x$have_elfutils" = xyes ; then
802 AC_MSG_ERROR([*** ELFUTILS headers not found.])
807 [dwfl_core_file_attach],
809 [if test "x$have_elfutils" = xyes ; then
810 AC_MSG_ERROR([*** ELFUTILS >= 158 is required.])
813 if test "x$have_elfutils" = xyes ; then
814 ELFUTILS_LIBS="-lelf -ldw"
815 AC_DEFINE(HAVE_ELFUTILS, 1, [ELFUTILS available])
822 AC_SUBST(ELFUTILS_LIBS)
823 AM_CONDITIONAL(HAVE_ELFUTILS, [test "$have_elfutils" = "yes"])
825 # ------------------------------------------------------------------------------
826 have_libcryptsetup=no
827 AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
828 if test "x$enable_libcryptsetup" != "xno"; then
829 PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup >= 1.6.0 ],
830 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
831 if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
832 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
835 AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
837 # ------------------------------------------------------------------------------
839 AC_ARG_ENABLE(qrencode, AS_HELP_STRING([--disable-qrencode], [disable qrencode support]))
840 if test "x$enable_qrencode" != "xno"; then
841 PKG_CHECK_MODULES(QRENCODE, [ libqrencode ],
842 [AC_DEFINE(HAVE_QRENCODE, 1, [Define if qrencode is available]) have_qrencode=yes], have_qrencode=no)
843 if test "x$have_qrencode" = xno -a "x$enable_qrencode" = xyes; then
844 AC_MSG_ERROR([*** qrencode support requested but libraries not found])
847 AM_CONDITIONAL(HAVE_QRENCODE, [test "$have_qrencode" = "yes"])
849 # ------------------------------------------------------------------------------
851 AC_ARG_ENABLE(gnutls, AS_HELP_STRING([--disable-gnutls], [disable gnutls support]))
852 if test "x$enable_gnutls" != "xno"; then
853 PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.1.4],
854 [AC_DEFINE(HAVE_GNUTLS, 1, [Define if gnutls is available]) have_gnutls=yes], have_gnutls=no)
855 if test "x$have_gnutls" = xno -a "x$enable_gnutls" = xyes; then
856 AC_MSG_ERROR([*** gnutls support requested but libraries not found])
859 AM_CONDITIONAL(HAVE_GNUTLS, [test "$have_gnutls" = "yes"])
861 # ------------------------------------------------------------------------------
863 AC_ARG_ENABLE(microhttpd, AS_HELP_STRING([--disable-microhttpd], [disable microhttpd support]))
864 if test "x$enable_microhttpd" != "xno"; then
865 PKG_CHECK_MODULES(MICROHTTPD, [libmicrohttpd >= 0.9.33],
866 [AC_DEFINE(HAVE_MICROHTTPD, 1, [Define if microhttpd is available])
868 M4_DEFINES="$M4_DEFINES -DHAVE_MICROHTTPD"],
869 [have_microhttpd=no])
870 if test "x$have_microhttpd" = xno -a "x$enable_microhttpd" = xyes; then
871 AC_MSG_ERROR([*** microhttpd support requested but libraries not found])
874 AM_CONDITIONAL(HAVE_MICROHTTPD, [test "$have_microhttpd" = "yes"])
876 # ------------------------------------------------------------------------------
878 AC_ARG_ENABLE(libcurl, AS_HELP_STRING([--disable-libcurl], [disable libcurl support]))
879 if test "x$enable_libcurl" != "xno"; then
880 PKG_CHECK_MODULES(LIBCURL, [libcurl],
881 [AC_DEFINE(HAVE_LIBCURL, 1, [Define if libcurl is available])
883 M4_DEFINES="$M4_DEFINES -DHAVE_LIBCURL"],
885 if test "x$have_libcurl" = xno -a "x$enable_libcurl" = xyes; then
886 AC_MSG_ERROR([*** libcurl support requested but libraries not found])
889 AM_CONDITIONAL(HAVE_LIBCURL, [test "$have_libcurl" = "yes"])
891 # ------------------------------------------------------------------------------
892 AM_CONDITIONAL(HAVE_REMOTE, [test "$have_microhttpd" = "yes" -o "$have_libcurl" = "yes"])
894 # ------------------------------------------------------------------------------
896 AC_ARG_ENABLE(libidn, AS_HELP_STRING([--disable-libidn], [Disable optional LIBIDN support]))
897 if test "x$enable_libidn" != "xno"; then
898 PKG_CHECK_MODULES(LIBIDN, [libidn],
899 [AC_DEFINE(HAVE_LIBIDN, 1, [Define if libidn is available])
901 M4_DEFINES="$M4_DEFINES -DHAVE_LIBIDN"],
903 if test "x$have_libidn" = "xno" -a "x$enable_libidn" = "xyes"; then
904 AC_MSG_ERROR([*** libidn support requested but libraries not found])
907 AM_CONDITIONAL(HAVE_LIBIDN, [test "$have_libidn" = "yes"])
909 # ------------------------------------------------------------------------------
911 AC_ARG_ENABLE(libiptc, AS_HELP_STRING([--disable-libiptc], [Disable optional LIBIPTC support]))
912 if test "x$enable_libiptc" != "xno"; then
913 PKG_CHECK_MODULES(LIBIPTC, [libiptc],
914 [AC_DEFINE(HAVE_LIBIPTC, 1, [Define if libiptc is available])
916 M4_DEFINES="$M4_DEFINES -DHAVE_LIBIPTC"],
918 if test "x$have_libiptc" = "xno" -a "x$enable_libiptc" = "xyes"; then
919 AC_MSG_ERROR([*** libiptc support requested but libraries not found])
922 AM_CONDITIONAL(HAVE_LIBIPTC, [test "$have_libiptc" = "yes"])
924 # ------------------------------------------------------------------------------
926 AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
927 if test "x$enable_binfmt" != "xno"; then
930 AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
932 # ------------------------------------------------------------------------------
934 AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool]))
935 if test "x$enable_vconsole" != "xno"; then
938 AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"])
940 # ------------------------------------------------------------------------------
942 AC_ARG_ENABLE(bootchart, AS_HELP_STRING([--disable-bootchart], [disable bootchart tool]))
943 if test "x$enable_bootchart" != "xno"; then
946 AM_CONDITIONAL(ENABLE_BOOTCHART, [test "$have_bootchart" = "yes"])
948 # ------------------------------------------------------------------------------
950 AC_ARG_ENABLE(quotacheck, AS_HELP_STRING([--disable-quotacheck], [disable quotacheck tools]))
951 if test "x$enable_quotacheck" != "xno"; then
954 AM_CONDITIONAL(ENABLE_QUOTACHECK, [test "$have_quotacheck" = "yes"])
956 # ------------------------------------------------------------------------------
958 AC_ARG_ENABLE(tmpfiles, AS_HELP_STRING([--disable-tmpfiles], [disable tmpfiles support]))
959 if test "x$enable_tmpfiles" != "xno"; then
962 AM_CONDITIONAL(ENABLE_TMPFILES, [test "$have_tmpfiles" = "yes"])
964 # ------------------------------------------------------------------------------
966 AC_ARG_ENABLE(sysusers, AS_HELP_STRING([--disable-sysusers], [disable sysusers support]))
967 if test "x$enable_sysusers" != "xno"; then
970 AM_CONDITIONAL(ENABLE_SYSUSERS, [test "$have_sysusers" = "yes"])
972 # ------------------------------------------------------------------------------
974 AC_ARG_ENABLE(firstboot, AS_HELP_STRING([--disable-firstboot], [disable firstboot support]))
975 if test "x$enable_firstboot" != "xno"; then
978 AM_CONDITIONAL(ENABLE_FIRSTBOOT, [test "$have_firstboot" = "yes"])
980 # ------------------------------------------------------------------------------
982 AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools]))
983 if test "x$enable_randomseed" != "xno"; then
986 AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"])
988 # ------------------------------------------------------------------------------
990 AC_ARG_ENABLE(backlight, AS_HELP_STRING([--disable-backlight], [disable backlight tools]))
991 if test "x$enable_backlight" != "xno"; then
994 AM_CONDITIONAL(ENABLE_BACKLIGHT, [test "$have_backlight" = "yes"])
996 # ------------------------------------------------------------------------------
998 AC_ARG_ENABLE(rfkill, AS_HELP_STRING([--disable-rfkill], [disable rfkill tools]))
999 if test "x$enable_rfkill" != "xno"; then
1002 AM_CONDITIONAL(ENABLE_RFKILL, [test "$have_rfkill" = "yes"])
1004 # ------------------------------------------------------------------------------
1006 AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon]))
1007 if test "x$enable_logind" != "xno"; then
1010 AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"])
1011 AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ])
1013 # ------------------------------------------------------------------------------
1015 AC_ARG_ENABLE(machined, AS_HELP_STRING([--disable-machined], [disable machine daemon]))
1016 if test "x$enable_machined" != "xno"; then
1019 AM_CONDITIONAL(ENABLE_MACHINED, [test "$have_machined" = "yes"])
1020 AS_IF([test "$have_machined" = "yes"], [ AC_DEFINE(HAVE_MACHINED, [1], [Machined support available]) ])
1022 # ------------------------------------------------------------------------------
1024 AC_ARG_ENABLE(importd, AS_HELP_STRING([--disable-importd], [disable import daemon]))
1025 if test "x$enable_importd" != "xno"; then
1028 AM_CONDITIONAL(ENABLE_IMPORTD, [test "$have_importd" = "yes"])
1029 AS_IF([test "$have_importd" = "yes"], [ AC_DEFINE(HAVE_IMPORTD, [1], [Importd support available]) ])
1031 # ------------------------------------------------------------------------------
1033 AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon]))
1034 if test "x$enable_hostnamed" != "xno"; then
1037 AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"])
1039 # ------------------------------------------------------------------------------
1041 AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon]))
1042 if test "x$enable_timedated" != "xno"; then
1045 AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
1047 # ------------------------------------------------------------------------------
1049 AC_ARG_ENABLE(timesyncd, AS_HELP_STRING([--disable-timesyncd], [disable timesync daemon]))
1050 if test "x$enable_timesyncd" != "xno"; then
1052 M4_DEFINES="$M4_DEFINES -DENABLE_TIMESYNCD"
1054 AM_CONDITIONAL(ENABLE_TIMESYNCD, [test "$have_timesyncd" = "yes"])
1056 AC_ARG_WITH(ntp-servers,
1057 AS_HELP_STRING([--with-ntp-servers=NTPSERVERS],
1058 [Space-separated list of default NTP servers]),
1059 [NTP_SERVERS="$withval"],
1060 [NTP_SERVERS="time1.google.com time2.google.com time3.google.com time4.google.com"
1061 AC_MSG_WARN([*** Using Google NTP servers.
1062 Do not ship OSes or devices with these default settings.
1063 See DISTRO_PORTING for details!])])
1065 AC_DEFINE_UNQUOTED(NTP_SERVERS, ["$NTP_SERVERS"], [Default NTP Servers])
1066 AC_SUBST(NTP_SERVERS)
1068 AC_ARG_WITH(time-epoch,
1069 AS_HELP_STRING([--with-time-epoch=SECONDS],
1070 [Time epoch for time clients]),
1071 [TIME_EPOCH="$withval"],
1072 [TIME_EPOCH="`stat -c %Y ${srcdir}/NEWS 2>/dev/null || echo 0`"])
1074 AC_DEFINE_UNQUOTED(TIME_EPOCH, [$TIME_EPOCH], [Time Epoch])
1076 # ------------------------------------------------------------------------------
1077 AC_ARG_WITH(system-uid-max,
1078 AS_HELP_STRING([--with-system-uid-max=UID]
1079 [Maximum UID for system users]),
1080 [SYSTEM_UID_MAX="$withval"],
1081 [SYSTEM_UID_MAX="`awk 'BEGIN { uid=999 } /^\s*SYS_UID_MAX\s+/ { uid=$2 } END { print uid }' /etc/login.defs 2>/dev/null || echo 999`"])
1083 AC_DEFINE_UNQUOTED(SYSTEM_UID_MAX, [$SYSTEM_UID_MAX], [Maximum System UID])
1084 AC_SUBST(SYSTEM_UID_MAX)
1086 # ------------------------------------------------------------------------------
1087 AC_ARG_WITH(system-gid-max,
1088 AS_HELP_STRING([--with-system-gid-max=GID]
1089 [Maximum GID for system groups]),
1090 [SYSTEM_GID_MAX="$withval"],
1091 [SYSTEM_GID_MAX="`awk 'BEGIN { gid=999 } /^\s*SYS_GID_MAX\s+/ { gid=$2 } END { print gid }' /etc/login.defs 2>/dev/null || echo 999`"])
1093 AC_DEFINE_UNQUOTED(SYSTEM_GID_MAX, [$SYSTEM_GID_MAX], [Maximum System GID])
1094 AC_SUBST(SYSTEM_GID_MAX)
1096 # ------------------------------------------------------------------------------
1098 AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))
1099 if test "x$enable_localed" != "xno"; then
1102 AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"])
1104 # ------------------------------------------------------------------------------
1106 AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook]))
1107 if test "x$enable_coredump" != "xno"; then
1109 M4_DEFINES="$M4_DEFINES -DENABLE_COREDUMP"
1111 AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"])
1113 # ------------------------------------------------------------------------------
1115 AC_ARG_ENABLE(polkit, AS_HELP_STRING([--disable-polkit], [disable PolicyKit support]))
1116 if test "x$enable_polkit" != "xno"; then
1117 AC_DEFINE(ENABLE_POLKIT, 1, [Define if PolicyKit support is to be enabled])
1120 AM_CONDITIONAL(ENABLE_POLKIT, [test "x$have_polkit" = "xyes"])
1122 # ------------------------------------------------------------------------------
1124 AC_ARG_ENABLE(resolved, AS_HELP_STRING([--disable-resolved], [disable resolve daemon]))
1125 AS_IF([test "x$enable_resolved" != "xno"], [
1126 AC_CHECK_LIB([dl], [dlsym], [true], [AC_MSG_ERROR([*** Dynamic linking loader library not found])])
1129 M4_DEFINES="$M4_DEFINES -DENABLE_RESOLVED"
1131 AM_CONDITIONAL(ENABLE_RESOLVED, [test "$have_resolved" = "yes"])
1133 AC_ARG_WITH(dns-servers,
1134 AS_HELP_STRING([--with-dns-servers=DNSSERVERS],
1135 [Space-separated list of default DNS servers]),
1136 [DNS_SERVERS="$withval"],
1137 [DNS_SERVERS="8.8.8.8 8.8.4.4 2001:4860:4860::8888 2001:4860:4860::8844"])
1139 AC_DEFINE_UNQUOTED(DNS_SERVERS, ["$DNS_SERVERS"], [Default DNS Servers])
1140 AC_SUBST(DNS_SERVERS)
1142 # ------------------------------------------------------------------------------
1144 AC_ARG_ENABLE(networkd, AS_HELP_STRING([--disable-networkd], [disable networkd]))
1145 AS_IF([test "x$enable_networkd" != "xno"], [
1146 AC_DEFINE(ENABLE_NETWORKD, 1, [Define if networkd support is to be enabled])
1148 M4_DEFINES="$M4_DEFINES -DENABLE_NETWORKD"
1150 AM_CONDITIONAL(ENABLE_NETWORKD, [test "x$have_networkd" = "xyes"])
1152 # ------------------------------------------------------------------------------
1154 AC_ARG_ENABLE(efi, AS_HELP_STRING([--disable-efi], [disable EFI support]))
1155 if test "x$enable_efi" != "xno"; then
1156 AC_DEFINE(ENABLE_EFI, 1, [Define if EFI support is to be enabled])
1159 AM_CONDITIONAL(ENABLE_EFI, [test "x$have_efi" = "xyes"])
1161 # ------------------------------------------------------------------------------
1162 AC_CHECK_TOOL(EFI_CC, gcc)
1164 EFI_ARCH=`echo $host | sed "s/\(-\).*$//"`
1166 AM_COND_IF(ARCH_IA32, [
1168 EFI_MACHINE_TYPE_NAME=ia32])
1170 AM_COND_IF(ARCH_X86_64, [
1171 EFI_MACHINE_TYPE_NAME=x64])
1173 AM_COND_IF(ARCH_AARCH64, [
1174 EFI_MACHINE_TYPE_NAME=aa64])
1176 AC_SUBST([EFI_ARCH])
1177 AC_SUBST([EFI_MACHINE_TYPE_NAME])
1180 AC_ARG_ENABLE(gnuefi, AS_HELP_STRING([--enable-gnuefi], [Enable optional gnuefi support]))
1181 AS_IF([test "x$enable_gnuefi" != "xno"], [
1182 AC_CHECK_HEADERS(efi/${EFI_ARCH}/efibind.h,
1183 [AC_DEFINE(HAVE_GNUEFI, 1, [Define if gnuefi is available])
1185 [AS_IF([test "x$enable_gnuefi" = xyes],
1186 [AC_MSG_ERROR([*** gnuefi support requested but headers not found])])
1189 efiroot=$(echo $(cd /usr/lib/$(${EFI_CC} -print-multi-os-directory); pwd))
1191 EFI_LIB_DIR="$efiroot"
1192 AC_ARG_WITH(efi-libdir,
1193 AS_HELP_STRING([--with-efi-libdir=PATH], [Path to EFI lib directory]),
1194 [EFI_LIB_DIR="$withval"], [EFI_LIB_DIR="$efiroot"]
1196 AC_SUBST([EFI_LIB_DIR])
1199 AC_ARG_WITH(efi-ldsdir,
1200 AS_HELP_STRING([--with-efi-ldsdir=PATH], [Path to EFI lds directory]),
1201 [EFI_LDS_DIR="$withval" && AS_IF([test -f "${EFI_LDS_DIR}/elf_${EFI_ARCH}_efi.lds"],
1202 [have_efi_lds=yes])],
1203 [AS_FOR([DIR], [EFI_LDS_DIR], ["${EFI_LIB_DIR}/gnuefi" "${EFI_LIB_DIR}"],
1204 [AS_IF([test -f "${EFI_LDS_DIR}/elf_${EFI_ARCH}_efi.lds"],
1205 [have_efi_lds=yes && break])])])
1206 AS_IF([test "x$have_efi_lds" = xyes],
1207 [AC_SUBST([EFI_LDS_DIR])],
1208 [AS_IF([test "x$enable_gnuefi" = xyes],
1209 [AC_MSG_ERROR([*** gnuefi support requested but files not found])],
1212 AC_ARG_WITH(efi-includedir,
1213 AS_HELP_STRING([--with-efi-includedir=PATH], [Path to EFI include directory]),
1214 [EFI_INC_DIR="$withval"], [EFI_INC_DIR="/usr/include"]
1216 AC_SUBST([EFI_INC_DIR])
1218 AM_CONDITIONAL(HAVE_GNUEFI, [test "x$have_gnuefi" = xyes])
1220 # ------------------------------------------------------------------------------
1222 AC_ARG_ENABLE([tpm], AS_HELP_STRING([--enable-tpm],[Enable optional TPM support]),
1223 [case "${enableval}" in
1224 yes) have_tpm=yes ;;
1226 *) AC_MSG_ERROR(bad value ${enableval} for --enable-tpm) ;;
1230 if test "x${have_tpm}" != xno ; then
1231 AC_DEFINE(SD_BOOT_LOG_TPM, 1, [Define if TPM should be used to log events and extend the registers])
1234 AC_ARG_WITH(tpm-pcrindex,
1235 AS_HELP_STRING([--with-tpm-pcrindex=<NUM>],
1236 [TPM PCR register number to use]),
1237 [SD_TPM_PCR="$withval"],
1240 AC_DEFINE_UNQUOTED(SD_TPM_PCR, [$SD_TPM_PCR], [TPM PCR register number to use])
1242 # ------------------------------------------------------------------------------
1244 AC_ARG_ENABLE(kdbus, AS_HELP_STRING([--disable-kdbus], [do not connect to kdbus by default]))
1245 if test "x$enable_kdbus" != "xno"; then
1246 AC_DEFINE(ENABLE_KDBUS, 1, [Define if kdbus is to be connected to by default])
1248 M4_DEFINES="$M4_DEFINES -DENABLE_KDBUS"
1250 AM_CONDITIONAL(ENABLE_KDBUS, [test "$have_kdbus" = "yes"])
1252 # ------------------------------------------------------------------------------
1253 AC_ARG_WITH(rc-local-script-path-start,
1254 AS_HELP_STRING([--with-rc-local-script-path-start=PATH],
1255 [Path to /etc/rc.local]),
1256 [RC_LOCAL_SCRIPT_PATH_START="$withval"],
1257 [RC_LOCAL_SCRIPT_PATH_START="/etc/rc.local"])
1259 AC_ARG_WITH(rc-local-script-path-stop,
1260 AS_HELP_STRING([--with-rc-local-script-path-stop=PATH],
1261 [Path to /usr/sbin/halt.local]),
1262 [RC_LOCAL_SCRIPT_PATH_STOP="$withval"],
1263 [RC_LOCAL_SCRIPT_PATH_STOP="/usr/sbin/halt.local"])
1265 AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_START, ["$RC_LOCAL_SCRIPT_PATH_START"], [Path of /etc/rc.local script])
1266 AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_STOP, ["$RC_LOCAL_SCRIPT_PATH_STOP"], [Path of /usr/sbin/halt.local script])
1268 AC_SUBST(RC_LOCAL_SCRIPT_PATH_START)
1269 AC_SUBST(RC_LOCAL_SCRIPT_PATH_STOP)
1271 # ------------------------------------------------------------------------------
1272 AC_ARG_WITH(kbd-loadkeys,
1273 AS_HELP_STRING([--with-kbd-loadkeys=PATH],
1274 [Path to loadkeys]),
1275 [KBD_LOADKEYS="$withval"],
1276 [KBD_LOADKEYS="/usr/bin/loadkeys"])
1278 AC_ARG_WITH(kbd-setfont,
1279 AS_HELP_STRING([--with-kbd-setfont=PATH],
1281 [KBD_SETFONT="$withval"],
1282 [KBD_SETFONT="/usr/bin/setfont"])
1284 AC_DEFINE_UNQUOTED(KBD_LOADKEYS, ["$KBD_LOADKEYS"], [Path of loadkeys])
1285 AC_DEFINE_UNQUOTED(KBD_SETFONT, ["$KBD_SETFONT"], [Path of setfont])
1287 AC_SUBST(KBD_LOADKEYS)
1288 AC_SUBST(KBD_SETFONT)
1290 AC_ARG_WITH(telinit,
1291 AS_HELP_STRING([--with-telinit=PATH],
1293 [TELINIT="$withval"],
1294 [TELINIT="/lib/sysvinit/telinit"])
1296 AC_DEFINE_UNQUOTED(TELINIT, ["$TELINIT"], [Path to telinit])
1300 AC_CHECK_HEADERS_ONCE([valgrind/memcheck.h valgrind/valgrind.h])
1302 # ------------------------------------------------------------------------------
1304 AC_ARG_ENABLE(myhostname, AS_HELP_STRING([--disable-myhostname], [disable nss-myhostname support]))
1305 if test "x$enable_myhostname" != "xno"; then
1307 AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h netdb.h netinet/in.h stdlib.h string.h sys/socket.h sys/time.h unistd.h nss.h sys/ioctl.h sys/auxv.h])
1313 AC_FUNC_SELECT_ARGTYPES
1314 AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn])
1318 AM_CONDITIONAL(HAVE_MYHOSTNAME, [test "$have_myhostname" = "yes"])
1320 # ------------------------------------------------------------------------------
1321 AC_ARG_ENABLE(hwdb, [AC_HELP_STRING([--disable-hwdb], [disable hardware database support])],
1322 enable_hwdb=$enableval, enable_hwdb=yes)
1323 AM_CONDITIONAL(ENABLE_HWDB, [test x$enable_hwdb = xyes])
1325 # ------------------------------------------------------------------------------
1327 AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
1328 AC_PATH_PROG([XSLTPROC], [xsltproc])
1329 AS_IF([test "x$enable_manpages" != xno], [
1331 AS_IF([test -z "$XSLTPROC"],
1332 AC_MSG_ERROR([*** xsltproc is required for man pages]))
1334 AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
1336 # ------------------------------------------------------------------------------
1337 AC_ARG_ENABLE(hibernate,
1338 [AC_HELP_STRING([--disable-hibernate], [disable hibernation support])],
1339 enable_hibernate=$enableval, enable_hibernate=yes)
1340 AM_CONDITIONAL(ENABLE_HIBERNATE, [test x$enable_hibernate = xyes])
1342 # ------------------------------------------------------------------------------
1343 AC_ARG_ENABLE(ldconfig,
1344 [AC_HELP_STRING([--disable-ldconfig], [disable ldconfig])],
1345 enable_ldconfig=$enableval, enable_ldconfig=yes)
1346 AM_CONDITIONAL(ENABLE_LDCONFIG, [test x$enable_ldconfig = xyes])
1348 # ------------------------------------------------------------------------------
1349 # Location of the init scripts as mandated by LSB
1350 SYSTEM_SYSVINIT_PATH=/etc/init.d
1351 SYSTEM_SYSVRCND_PATH=/etc/rc.d
1353 AC_ARG_WITH([sysvinit-path],
1354 [AS_HELP_STRING([--with-sysvinit-path=PATH],
1355 [Specify the path to where the SysV init scripts are located])],
1356 [SYSTEM_SYSVINIT_PATH="$withval"],
1359 AC_ARG_WITH([sysvrcnd-path],
1360 [AS_HELP_STRING([--with-sysvrcnd-path=PATH],
1361 [Specify the path to the base directory for the SysV rcN.d directories])],
1362 [SYSTEM_SYSVRCND_PATH="$withval"],
1365 if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
1366 AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.])
1367 SYSTEM_SYSV_COMPAT="yes"
1368 M4_DEFINES="$M4_DEFINES -DHAVE_SYSV_COMPAT"
1369 elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
1370 AC_MSG_ERROR([*** You need both --with-sysvinit-path=PATH and --with-sysvrcnd-path=PATH to enable SysV compatibility support, or both empty to disable it.])
1372 SYSTEM_SYSV_COMPAT="no"
1375 AC_SUBST(SYSTEM_SYSVINIT_PATH)
1376 AC_SUBST(SYSTEM_SYSVRCND_PATH)
1377 AC_SUBST(M4_DEFINES)
1379 AM_CONDITIONAL(HAVE_SYSV_COMPAT, test "$SYSTEM_SYSV_COMPAT" = "yes")
1381 AC_ARG_WITH([tty-gid],
1382 [AS_HELP_STRING([--with-tty-gid=GID],
1383 [Specify the numeric GID of the 'tty' group])],
1384 [TTY_GID="$withval"],
1387 AC_DEFINE_UNQUOTED(TTY_GID, [$TTY_GID], [GID of the 'tty' group])
1390 AC_ARG_WITH([dbuspolicydir],
1391 AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
1393 [with_dbuspolicydir=${sysconfdir}/dbus-1/system.d])
1394 AX_NORMALIZE_PATH([with_dbuspolicydir])
1396 AC_ARG_WITH([dbussessionservicedir],
1397 AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
1399 [with_dbussessionservicedir=${datadir}/dbus-1/services])
1400 AX_NORMALIZE_PATH([with_dbussessionservicedir])
1402 AC_ARG_WITH([dbussystemservicedir],
1403 AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
1405 [with_dbussystemservicedir=${datadir}/dbus-1/system-services])
1406 AX_NORMALIZE_PATH([with_dbussystemservicedir])
1408 AC_ARG_WITH([bashcompletiondir],
1409 AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
1411 [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
1412 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
1414 with_bashcompletiondir=${datadir}/bash-completion/completions
1416 AM_CONDITIONAL(ENABLE_BASH_COMPLETION, [test "$with_bashcompletiondir" != "no"])
1417 AX_NORMALIZE_PATH([with_bashcompletiondir])
1419 AC_ARG_WITH([zshcompletiondir],
1420 AS_HELP_STRING([--with-zshcompletiondir=DIR], [Zsh completions directory]),
1421 [], [with_zshcompletiondir=${datadir}/zsh/site-functions])
1422 AM_CONDITIONAL(ENABLE_ZSH_COMPLETION, [test "$with_zshcompletiondir" != "no"])
1423 AX_NORMALIZE_PATH([with_zshcompletiondir])
1425 AC_ARG_WITH([rootprefix],
1426 AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
1427 [], [with_rootprefix=${ac_default_prefix}])
1428 # --with-rootprefix= (empty) should default to "/" but AX_NORMALIZE_PATH
1429 # defaults those to ".", solve that here for now until we can find a suitable
1430 # fix for AX_NORMALIZE_PATH upstream at autoconf-archive.
1431 # See: https://github.com/systemd/systemd/issues/54
1432 if test "x${with_rootprefix}" = "x"; then
1435 AX_NORMALIZE_PATH([with_rootprefix])
1437 AC_ARG_WITH([rootlibdir],
1438 AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
1440 [with_rootlibdir=${libdir}])
1441 AX_NORMALIZE_PATH([with_rootlibdir])
1443 AC_ARG_WITH([pamlibdir],
1444 AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]),
1446 [with_pamlibdir=${with_rootlibdir}/security])
1447 AX_NORMALIZE_PATH([with_pamlibdir])
1449 AC_ARG_WITH([pamconfdir],
1450 AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration]),
1452 [with_pamconfdir=${sysconfdir}/pam.d])
1453 AX_NORMALIZE_PATH([with_pamconfdir])
1455 AC_ARG_ENABLE([split-usr],
1456 AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]),
1458 [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [
1459 enable_split_usr=yes
1464 AS_IF([test "x${enable_split_usr}" = "xyes"], [
1465 AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr])
1467 AM_CONDITIONAL(ENABLE_SPLIT_USR, [test "x${enable_split_usr}" = "xyes"])
1469 # work around intltool-update issues during 'make distcheck'
1470 AS_IF([test "x$0" != "x./configure"], [
1471 AC_SUBST([INTLTOOL_UPDATE], [/bin/true])
1474 # QEMU and OVMF UEFI firmware
1475 AS_IF([test x"$cross_compiling" = "xyes"], [], [
1476 AC_PATH_PROG([QEMU], [qemu-system-x86_64])
1477 AC_CHECK_FILE([/usr/share/qemu/bios-ovmf.bin], [QEMU_BIOS=/usr/share/qemu/bios-ovmf.bin],
1478 [AC_CHECK_FILE([/usr/share/qemu-ovmf/bios.bin], [QEMU_BIOS=/usr/share/qemu-ovmf/bios.bin])])
1479 AC_SUBST([QEMU_BIOS])
1482 AC_ARG_ENABLE(tests,
1483 [AC_HELP_STRING([--disable-tests], [disable tests])],
1484 enable_tests=$enableval, enable_tests=yes)
1485 AM_CONDITIONAL(ENABLE_TESTS, [test x$enable_tests = xyes])
1487 AC_ARG_ENABLE(debug,
1488 [AC_HELP_STRING([--enable-debug@<:@=LIST@:>@], [enable extra debugging (hashmap,mmap-cache)])],
1489 [if test "x$enableval" = "xyes"; then
1490 enableval="hashmap,mmap-cache"
1493 IFS="$IFS$PATH_SEPARATOR,"
1494 for name in $enableval; do
1497 enable_debug_hashmap=yes
1500 enable_debug_mmap_cache=yes
1504 IFS="$saved_ifs"],[])
1507 AS_IF([test x$enable_debug_hashmap = xyes], [
1508 AC_DEFINE(ENABLE_DEBUG_HASHMAP, 1, [Define if hashmap debugging is to be enabled])
1509 enable_debug="hashmap $enable_debug"
1511 AS_IF([test x$enable_debug_mmap_cache = xyes], [
1512 AC_DEFINE(ENABLE_DEBUG_MMAP_CACHE, 1, [Define if mmap cache debugging is to be enabled])
1513 enable_debug="mmap-cache $enable_debug"
1515 test -z "$enable_debug" && enable_debug="none"
1517 AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
1518 AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
1519 AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
1520 AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
1521 AC_SUBST([zshcompletiondir], [$with_zshcompletiondir])
1522 AC_SUBST([pamlibdir], [$with_pamlibdir])
1523 AC_SUBST([pamconfdir], [$with_pamconfdir])
1524 AC_SUBST([rootprefix], [$with_rootprefix])
1525 AC_SUBST([rootlibdir], [$with_rootlibdir])
1534 $PACKAGE_NAME $VERSION
1536 libcryptsetup: ${have_libcryptsetup}
1538 AUDIT: ${have_audit}
1540 AppArmor: ${have_apparmor}
1541 SELinux: ${have_selinux}
1542 SECCOMP: ${have_seccomp}
1543 SMACK: ${have_smack}
1547 BZIP2: ${have_bzip2}
1549 GCRYPT: ${have_gcrypt}
1550 QRENCODE: ${have_qrencode}
1551 MICROHTTPD: ${have_microhttpd}
1552 GNUTLS: ${have_gnutls}
1553 libcurl: ${have_libcurl}
1554 libidn: ${have_libidn}
1555 libiptc: ${have_libiptc}
1556 ELFUTILS: ${have_elfutils}
1557 binfmt: ${have_binfmt}
1558 vconsole: ${have_vconsole}
1559 bootchart: ${have_bootchart}
1560 quotacheck: ${have_quotacheck}
1561 tmpfiles: ${have_tmpfiles}
1562 sysusers: ${have_sysusers}
1563 firstboot: ${have_firstboot}
1564 randomseed: ${have_randomseed}
1565 backlight: ${have_backlight}
1566 rfkill: ${have_rfkill}
1567 logind: ${have_logind}
1568 machined: ${have_machined}
1569 importd: ${have_importd}
1570 hostnamed: ${have_hostnamed}
1571 timedated: ${have_timedated}
1572 timesyncd: ${have_timesyncd}
1573 default NTP servers: ${NTP_SERVERS}
1574 time epoch: ${TIME_EPOCH}
1575 localed: ${have_localed}
1576 networkd: ${have_networkd}
1577 resolved: ${have_resolved}
1578 default DNS servers: ${DNS_SERVERS}
1579 coredump: ${have_coredump}
1580 polkit: ${have_polkit}
1582 gnuefi: ${have_gnuefi}
1583 efi arch: ${EFI_ARCH}
1584 EFI machine type: ${EFI_MACHINE_TYPE_NAME}
1586 EFI libdir: ${EFI_LIB_DIR}
1587 EFI ldsdir: ${EFI_LDS_DIR}
1588 EFI includedir: ${EFI_INC_DIR}
1590 xkbcommon: ${have_xkbcommon}
1591 blkid: ${have_blkid}
1592 libmount: ${have_libmount}
1594 nss-myhostname: ${have_myhostname}
1595 hwdb: ${enable_hwdb}
1597 kdbus: ${have_kdbus}
1598 Python: ${have_python}
1599 man pages: ${have_manpages}
1600 test coverage: ${have_coverage}
1601 Split /usr: ${enable_split_usr}
1602 SysV compatibility: ${SYSTEM_SYSV_COMPAT}
1603 compatibility libraries: ${have_compat_libs}
1604 utmp/wtmp support: ${have_utmp}
1605 ldconfig support: ${enable_ldconfig}
1606 hibernate support: ${enable_hibernate}
1607 extra debugging: ${enable_debug}
1610 rootprefix: ${with_rootprefix}
1611 sysconf dir: ${sysconfdir}
1612 datarootdir: ${datarootdir}
1613 includedir: ${includedir}
1615 rootlib dir: ${with_rootlibdir}
1616 SysV init scripts: ${SYSTEM_SYSVINIT_PATH}
1617 SysV rc?.d directories: ${SYSTEM_SYSVRCND_PATH}
1618 Build Python: ${PYTHON}
1619 PAM modules dir: ${with_pamlibdir}
1620 PAM configuration dir: ${with_pamconfdir}
1621 D-Bus policy dir: ${with_dbuspolicydir}
1622 D-Bus session dir: ${with_dbussessionservicedir}
1623 D-Bus system dir: ${with_dbussystemservicedir}
1624 Bash completions dir: ${with_bashcompletiondir}
1625 Zsh completions dir: ${with_zshcompletiondir}
1626 Extra start script: ${RC_LOCAL_SCRIPT_PATH_START}
1627 Extra stop script: ${RC_LOCAL_SCRIPT_PATH_STOP}
1628 Debug shell: ${SUSHELL} @ ${DEBUGTTY}
1630 Maximum System UID: ${SYSTEM_UID_MAX}
1631 Maximum System GID: ${SYSTEM_GID_MAX}
1632 Certificate root: ${CERTIFICATEROOT}
1634 CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
1635 CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
1636 LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}