chiark / gitweb /
Remove kmod support
[elogind.git] / configure.ac
1 #
2 #  This file is part of systemd.
3 #
4 #  Copyright 2010-2012 Lennart Poettering
5 #  Copyright 2010-2012 Kay Sievers
6 #
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.
11 #
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.
16 #
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/>.
19
20 AC_PREREQ([2.64])
21
22 # FIXME: Update to proper web page
23 AC_INIT([elogind],
24         [219],
25         [http://bugs.freedesktop.org/enter_bug.cgi?product=elogind],
26         [elogind],
27         [http://www.freedesktop.org/wiki/Software/elogind])
28
29 AC_CONFIG_SRCDIR([src/login/logind.c])
30 AC_CONFIG_MACRO_DIR([m4])
31 AC_CONFIG_HEADERS([config.h])
32 AC_CONFIG_AUX_DIR([build-aux])
33
34 AC_USE_SYSTEM_EXTENSIONS
35 AC_SYS_LARGEFILE
36 AC_PREFIX_DEFAULT([/usr])
37 AM_MAINTAINER_MODE([enable])
38 AM_INIT_AUTOMAKE([foreign 1.11 -Wall -Wno-portability silent-rules tar-pax no-dist-gzip dist-xz subdir-objects parallel-tests])
39 AM_SILENT_RULES([yes])
40 AC_CANONICAL_HOST
41 AC_DEFINE_UNQUOTED([CANONICAL_HOST], "$host", [Canonical host string.])
42 LT_PREREQ(2.2)
43 LT_INIT([disable-static])
44
45 AS_IF([test "x$enable_static" = "xyes"], [AC_MSG_ERROR([--enable-static is not supported by elogind])])
46 AS_IF([test "x$enable_largefile" = "xno"], [AC_MSG_ERROR([--disable-largefile is not supported by elogind])])
47
48 SET_ARCH(X86_64, x86_64*)
49 SET_ARCH(IA32, i*86*)
50 SET_ARCH(MIPS, mips*)
51
52 # i18n stuff for the PolicyKit policy files, heck whether intltool can be found, disable NLS otherwise
53 AC_CHECK_PROG(intltool_found, [intltool-merge], [yes], [no])
54 AS_IF([test x"$intltool_found" != xyes],
55       [AS_IF([test x"$enable_nls" = xyes],
56              [AC_MSG_ERROR([--enable-nls requested but intltool not found])],
57              [AS_IF([test x"$enable_nls" != xno],
58                     [AC_MSG_WARN([*** Disabling NLS support because intltool was not found])
59                      enable_nls=no])
60              ])
61       ])
62
63 AM_NLS
64 AS_IF([test x"$enable_nls" != xno -o "x$enable_polkit" != xno], [
65     # intltoolize greps for '^(AC|IT)_PROG_INTLTOOL', so it needs to be on its own line
66 IT_PROG_INTLTOOL([0.40.0])
67 ])
68
69 AS_IF([test -z "$INTLTOOL_POLICY_RULE"], [
70     # If intltool is not available, provide a dummy rule to fail generation of %.policy files with a meaningful error message
71     INTLTOOL_POLICY_RULE='%.policy: %.policy.in ; @echo "  ITMRG   " $@ && echo "*** intltool support required to build target $@" && false'
72     AC_SUBST(INTLTOOL_POLICY_RULE)
73 ])
74
75 GETTEXT_PACKAGE=elogind
76 AC_SUBST(GETTEXT_PACKAGE)
77 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [elogind])
78
79 AC_PROG_MKDIR_P
80 AC_PROG_LN_S
81 AC_PROG_SED
82 AC_PROG_GREP
83 AC_PROG_AWK
84
85 AC_PROG_CC_C99
86
87 AC_PATH_PROG([M4], [m4])
88 AC_PATH_PROG([XSLTPROC], [xsltproc])
89
90 AC_PATH_PROG([KEXEC], [kexec], [/usr/sbin/kexec], [$PATH:/usr/sbin:/sbin])
91
92 AC_PATH_PROG([SULOGIN], [sulogin], [/usr/sbin/sulogin], [$PATH:/usr/sbin:/sbin])
93
94 AS_IF([! ln --relative --help > /dev/null 2>&1], [AC_MSG_ERROR([*** ln doesn't support --relative ***])])
95
96 M4_DEFINES=
97
98 # gtkdocize greps for '^GTK_DOC_CHECK', so it needs to be on its own line
99 m4_ifdef([GTK_DOC_CHECK], [
100 GTK_DOC_CHECK([1.18],[--flavour no-tmpl])],
101          [AM_CONDITIONAL([ENABLE_GTK_DOC], [false])
102           enable_gtk_doc=no])
103
104 AS_IF([test "x$enable_gtk_doc" = "xyes" -a "x$XSLTPROC" = x], [
105         AC_MSG_ERROR([*** GTK doc requested but xsltproc not found])
106 ])
107
108 m4_ifdef([GOBJECT_INTROSPECTION_CHECK], [
109 GOBJECT_INTROSPECTION_CHECK([1.31.1])
110 ], [
111    AM_CONDITIONAL([HAVE_INTROSPECTION], [false])
112    enable_introspection=no])
113
114 AC_CHECK_TOOL(STRINGS, strings)
115 AC_CHECK_TOOL(GPERF, gperf)
116 if test -z "$GPERF" ; then
117         AC_MSG_ERROR([*** gperf not found])
118 fi
119
120 # ------------------------------------------------------------------------------
121 address_sanitizer_cflags=
122 address_sanitizer_cppflags=
123 address_sanitizer_ldflags=
124 AC_ARG_ENABLE(address-sanitizer, AS_HELP_STRING([--enable-address-sanitizer], [enable -fsanitize=address]))
125 AS_IF([test "x$enable_address_sanitizer" = "xyes"], [
126             CC_CHECK_FLAG_APPEND([with_as_cflags], [CFLAGS], [-fsanitize=address])
127             AS_IF([test -z "$with_as_cflags"],
128                   [AC_MSG_ERROR([*** -fsanitize=address is not supported])])
129             address_sanitizer_cflags="$with_as_cflags -fno-omit-frame-pointer -DVALGRIND=1"
130             address_sanitizer_cppflags="-DVALGRIND=1"
131             address_sanitizer_ldflags="-Wc,-fsanitize=address"
132       ])
133
134 undefined_sanitizer_cflags=
135 undefined_sanitizer_cppflags=
136 undefined_sanitizer_ldflags=
137 AC_ARG_ENABLE(undefined-sanitizer, AS_HELP_STRING([--enable-undefined-sanitizer], [enable -fsanitize=undefined]))
138 AS_IF([test "x$enable_undefined_sanitizer" = "xyes"], [
139             CC_CHECK_FLAG_APPEND([with_us_cflags], [CFLAGS], [-fsanitize=undefined])
140             AS_IF([test -z "$with_us_cflags"],
141                   [AC_MSG_ERROR([*** -fsanitize=undefined is not supported])])
142             undefined_sanitizer_cflags="$with_us_cflags -fno-omit-frame-pointer -DVALGRIND=1"
143             undefined_sanitizer_cppflags="-DVALGRIND=1"
144             undefined_sanitizer_ldflags="-Wc,-fsanitize=undefined"
145       ])
146
147 sanitizer_cflags="$address_sanitizer_cflags $undefined_sanitizer_cflags"
148 sanitizer_cppflags="$address_sanitizer_cppflags $undefined_sanitizer_cppflags"
149 sanitizer_ldflags="$address_sanitizer_ldflags $undefined_sanitizer_ldflags"
150
151 CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
152         -pipe \
153         -Wall \
154         -Wextra \
155         -Wno-inline \
156         -Wundef \
157         "-Wformat=2 -Wformat-security -Wformat-nonliteral" \
158         -Wlogical-op \
159         -Wsign-compare \
160         -Wmissing-include-dirs \
161         -Wold-style-definition \
162         -Wpointer-arith \
163         -Winit-self \
164         -Wdeclaration-after-statement \
165         -Wfloat-equal \
166         -Wsuggest-attribute=noreturn \
167         -Wmissing-prototypes \
168         -Wstrict-prototypes \
169         -Wredundant-decls \
170         -Wmissing-declarations \
171         -Wmissing-noreturn \
172         -Wshadow \
173         -Wendif-labels \
174         -Wstrict-aliasing=2 \
175         -Wwrite-strings \
176         -Wno-long-long \
177         -Wno-overlength-strings \
178         -Wno-unused-parameter \
179         -Wno-missing-field-initializers \
180         -Wno-unused-result \
181         -Wno-format-signedness \
182         -Werror=overflow \
183         -Wdate-time \
184         -Wnested-externs \
185         -ffast-math \
186         -fno-common \
187         -fdiagnostics-show-option \
188         -fno-strict-aliasing \
189         -fvisibility=hidden \
190         -ffunction-sections \
191         -fdata-sections \
192         -fstack-protector \
193         -fstack-protector-strong \
194         -fPIE \
195         --param=ssp-buffer-size=4])
196
197 AS_CASE([$CC], [*clang*],
198         [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
199                -Wno-typedef-redefinition \
200                -Wno-gnu-variable-sized-type-not-at-end \
201         ])])
202
203 AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*],
204         [CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
205                -flto -ffat-lto-objects])],
206         [AC_MSG_RESULT([skipping -flto, optimization not enabled])])
207 AC_SUBST([OUR_CFLAGS], "$with_cflags $sanitizer_cflags")
208
209 AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*],
210         [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
211                -Wp,-D_FORTIFY_SOURCE=2])],
212         [AC_MSG_RESULT([skipping -D_FORTIFY_SOURCE, optimization not enabled])])
213 AC_SUBST([OUR_CPPFLAGS], "$with_cppflags $sanitizer_cppflags")
214
215 CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\
216         -Wl,--as-needed \
217         -Wl,--no-undefined \
218         -Wl,--gc-sections \
219         -Wl,-z,relro \
220         -Wl,-z,now \
221         -pie \
222         -Wl,-fuse-ld=gold])
223 AC_SUBST([OUR_LDFLAGS], "$with_ldflags $sanitizer_ldflags")
224
225 AC_CHECK_SIZEOF(pid_t)
226 AC_CHECK_SIZEOF(uid_t)
227 AC_CHECK_SIZEOF(gid_t)
228 AC_CHECK_SIZEOF(time_t)
229 AC_CHECK_SIZEOF(dev_t)
230 AC_CHECK_SIZEOF(rlim_t,,[
231        #include <sys/time.h>
232        #include <sys/resource.h>
233 ])
234
235 # ------------------------------------------------------------------------------
236
237 AC_SEARCH_LIBS([dlsym], [dl], [], [AC_MSG_ERROR([*** Dynamic linking loader library not found])])
238 AC_CHECK_HEADERS([sys/capability.h], [], [AC_MSG_ERROR([*** POSIX caps headers not found])])
239 AC_CHECK_HEADERS([linux/btrfs.h], [], [])
240 AC_CHECK_HEADERS([linux/memfd.h], [], [])
241
242 # unconditionally pull-in librt with old glibc versions
243 AC_SEARCH_LIBS([clock_gettime], [rt], [], [])
244
245 save_LIBS="$LIBS"
246 LIBS=
247 AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
248 CAP_LIBS="$LIBS"
249 AC_SUBST(CAP_LIBS)
250
251 LIBS=
252 AC_SEARCH_LIBS([mq_open], [rt], [], [AC_MSG_ERROR([*** POSIX RT library not found])])
253 RT_LIBS="$LIBS"
254 AC_SUBST(RT_LIBS)
255 LIBS="$save_LIBS"
256
257 AC_CHECK_FUNCS([memfd_create])
258 AC_CHECK_FUNCS([__secure_getenv secure_getenv])
259 AC_CHECK_DECLS([gettid, pivot_root, name_to_handle_at, setns, getrandom, renameat2, kcmp, LO_FLAGS_PARTSCAN],
260                [], [], [[
261 #include <sys/types.h>
262 #include <unistd.h>
263 #include <sys/mount.h>
264 #include <fcntl.h>
265 #include <sched.h>
266 #include <linux/loop.h>
267 #include <linux/random.h>
268 ]])
269
270 AC_CHECK_DECLS([IFLA_INET6_ADDR_GEN_MODE,
271                 IFLA_MACVLAN_FLAGS,
272                 IFLA_IPVLAN_MODE,
273                 IFLA_VTI_REMOTE,
274                 IFLA_PHYS_PORT_ID,
275                 IFLA_BOND_AD_INFO,
276                 IFLA_VLAN_PROTOCOL,
277                 IFLA_VXLAN_LOCAL6,
278                 IFLA_IPTUN_6RD_RELAY_PREFIXLEN,
279                 IFLA_BRIDGE_VLAN_INFO,
280                 IFLA_BRPORT_UNICAST_FLOOD,
281                 NDA_IFINDEX],
282 [], [], [[
283 #include <inttypes.h>
284 #include <netinet/in.h>
285 #include <netinet/ether.h>
286 #include <linux/rtnetlink.h>
287 #include <net/if.h>
288 #include <linux/ip.h>
289 #include <linux/if_tunnel.h>
290 #include <linux/if_link.h>
291 #include <linux/if_bridge.h>
292 #include <linux/neighbour.h>
293 ]])
294
295 # This makes sure pkg.m4 is available.
296 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
297
298 # ------------------------------------------------------------------------------
299 have_dbus=no
300 AC_ARG_ENABLE(dbus, AS_HELP_STRING([--disable-dbus], [disable usage of dbus-1 in tests]))
301 AS_IF([test "x$enable_dbus" != "xno"], [
302         PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.3.2],
303                 [AC_DEFINE(HAVE_DBUS, 1, [Define if dbus-1 library is available]) have_dbus=yes],
304                 [have_dbus=no])
305         AS_IF([test "x$have_dbus" = "xno" -a "x$enable_dbus" = "xyes"],
306                 [AC_MSG_ERROR([*** dbus-1 support requested but libraries not found])])])
307 AM_CONDITIONAL(HAVE_DBUS, [test "$have_dbus" = "yes"])
308
309 # ------------------------------------------------------------------------------
310 PKG_CHECK_MODULES(UDEV, [libudev])
311
312 # ------------------------------------------------------------------------------
313 have_compat_libs=no
314 AC_ARG_ENABLE([compat_libs], AS_HELP_STRING([--enable-compat-libs],[Enable creation of compatibility libraries]),
315                 [case "${enableval}" in
316                         yes) have_compat_libs=yes ;;
317                         no) have_compat_libs=no ;;
318                         *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-libs) ;;
319                 esac],
320                 [have_compat_libs=no])
321 AM_CONDITIONAL([ENABLE_COMPAT_LIBS], [test "$have_compat_libs" = "yes"])
322
323 # ------------------------------------------------------------------------------
324 have_coverage=no
325 AC_ARG_ENABLE(coverage, AS_HELP_STRING([--enable-coverage], [enable test coverage]))
326 if test "x$enable_coverage" = "xyes" ; then
327         AC_CHECK_PROG(lcov_found, [lcov], [yes], [no])
328         if test "x$lcov_found" = xno ; then
329                 AC_MSG_ERROR([*** lcov support requested but the program was not found])
330         else
331                 lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`"
332                 lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`"
333                 if test "$lcov_version_major" -eq 1 -a "$lcov_version_minor" -lt 10; then
334                         AC_MSG_ERROR([*** lcov version is too old. 1.10 required])
335                 else
336                         have_coverage=yes
337                         CC_CHECK_FLAGS_APPEND([with_coverage_cflags], [CFLAGS], [\
338                         -fprofile-arcs \
339                         -ftest-coverage])
340                         AC_SUBST([OUR_CFLAGS], "$with_cflags $with_coverage_cflags")
341                 fi
342         fi
343 fi
344 AM_CONDITIONAL(ENABLE_COVERAGE, [test "$have_coverage" = "yes"])
345
346 # ------------------------------------------------------------------------------
347 have_xkbcommon=no
348 AC_ARG_ENABLE(xkbcommon, AS_HELP_STRING([--disable-xkbcommon], [disable xkbcommon keymap support]))
349 if test "x$enable_xkbcommon" != "xno"; then
350         PKG_CHECK_MODULES(XKBCOMMON, [ xkbcommon >= 0.3.0 ],
351                 [AC_DEFINE(HAVE_XKBCOMMON, 1, [Define if libxkbcommon is available]) have_xkbcommon=yes], have_xkbcommon=no)
352         if test "x$have_xkbcommon" = xno -a "x$enable_xkbcommon" = xyes; then
353                 AC_MSG_ERROR([*** xkbcommon support requested but libraries not found])
354         fi
355 fi
356 AM_CONDITIONAL(HAVE_XKBCOMMON, [test "$have_xkbcommon" = "yes"])
357
358 # ------------------------------------------------------------------------------
359 have_blkid=no
360 AC_ARG_ENABLE(blkid, AS_HELP_STRING([--disable-blkid], [disable blkid support]))
361 if test "x$enable_blkid" != "xno"; then
362         PKG_CHECK_MODULES(BLKID, [ blkid >= 2.24 ],
363                 [AC_DEFINE(HAVE_BLKID, 1, [Define if blkid is available]) have_blkid=yes], have_blkid=no)
364         if test "x$have_blkid" = xno -a "x$enable_blkid" = xyes; then
365                 AC_MSG_ERROR([*** blkid support requested but libraries not found])
366         fi
367 fi
368 AM_CONDITIONAL(HAVE_BLKID, [test "$have_blkid" = "yes"])
369
370 # ------------------------------------------------------------------------------
371 have_seccomp=no
372 AC_ARG_ENABLE(seccomp, AS_HELP_STRING([--disable-seccomp], [Disable optional SECCOMP support]))
373 if test "x$enable_seccomp" != "xno"; then
374         PKG_CHECK_MODULES(SECCOMP, [libseccomp >= 1.0.0],
375                [AC_DEFINE(HAVE_SECCOMP, 1, [Define if seccomp is available])
376                 have_seccomp=yes
377                 M4_DEFINES="$M4_DEFINES -DHAVE_SECCOMP"],
378                [have_seccomp=no])
379         if test "x$have_seccomp" = "xno" -a "x$enable_seccomp" = "xyes"; then
380                 AC_MSG_ERROR([*** seccomp support requested but libraries not found])
381         fi
382 fi
383 AM_CONDITIONAL(HAVE_SECCOMP, [test "$have_seccomp" = "yes"])
384
385 # ------------------------------------------------------------------------------
386 have_ima=yes
387 AC_ARG_ENABLE([ima], AS_HELP_STRING([--disable-ima],[Disable optional IMA support]),
388                 [case "${enableval}" in
389                         yes) have_ima=yes ;;
390                         no) have_ima=no ;;
391                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-ima) ;;
392                 esac],
393                 [have_ima=yes])
394
395 if test "x${have_ima}" != xno ; then
396         AC_DEFINE(HAVE_IMA, 1, [Define if IMA is available])
397 fi
398
399 # ------------------------------------------------------------------------------
400 have_chkconfig=yes
401 AC_ARG_ENABLE([chkconfig], AS_HELP_STRING([--disable-chkconfig],[Disable optional chkconfig support]),
402                 [case "${enableval}" in
403                         yes) have_chkconfig=yes ;;
404                         no) have_chkconfig=no ;;
405                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-chkconfig) ;;
406                 esac],
407                 [AC_PATH_PROG(CHKCONFIG, chkconfig)
408                 if test -z "$CHKCONFIG"; then
409                         have_chkconfig=no
410                 else
411                         have_chkconfig=yes
412                 fi])
413
414 if test "x${have_chkconfig}" != xno ; then
415         AC_DEFINE(HAVE_CHKCONFIG, 1, [Define if CHKCONFIG is available])
416 fi
417
418 # ------------------------------------------------------------------------------
419 have_selinux=no
420 AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
421 if test "x$enable_selinux" != "xno"; then
422         PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9],
423                 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available])
424                  have_selinux=yes
425                  M4_DEFINES="$M4_DEFINES -DHAVE_SELINUX"],
426                 [have_selinux=no])
427         if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
428                 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
429         fi
430 fi
431 AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
432
433 have_apparmor=no
434 AC_ARG_ENABLE(apparmor, AS_HELP_STRING([--disable-apparmor], [Disable optional AppArmor support]))
435 if test "x$enable_apparmor" != "xno"; then
436         PKG_CHECK_MODULES([APPARMOR], [libapparmor],
437                 [AC_DEFINE(HAVE_APPARMOR, 1, [Define if AppArmor is available])
438                  have_apparmor=yes
439                  M4_DEFINES="$M4_DEFINES -DHAVE_APPARMOR"],
440                 [have_apparmor=no])
441         if test "x$have_apparmor" = xno -a "x$enable_apparmor" = xyes; then
442                 AC_MSG_ERROR([*** AppArmor support requested but libraries not found])
443         fi
444 fi
445 AM_CONDITIONAL(HAVE_APPARMOR, [test "$have_apparmor" = "yes"])
446
447
448 AC_ARG_WITH(debug-shell,
449         AS_HELP_STRING([--with-debug-shell=PATH],
450                 [Path to debug shell binary]),
451         [SUSHELL="$withval"],[
452         AS_IF([test "x${have_selinux}" != "xno"], [SUSHELL="/sbin/sushell"] , [SUSHELL="/bin/sh"])])
453
454 AC_SUBST(SUSHELL)
455
456 AC_ARG_WITH([debug-tty],
457         AS_HELP_STRING([--with-debug-tty=PATH],
458                 [Specify the tty device for debug shell]),
459         [DEBUGTTY="$withval"],
460         [DEBUGTTY=/dev/tty9])
461
462 AC_SUBST(DEBUGTTY)
463
464 AC_ARG_WITH([certificate-root],
465         AS_HELP_STRING([--with-certificate-root=PATH],
466                 [Specify the prefix for TLS certificates [/etc/ssl]]),
467         [CERTIFICATEROOT="$withval"],
468         [CERTIFICATEROOT="/etc/ssl"])
469
470 AC_SUBST(CERTIFICATEROOT)
471
472 # ------------------------------------------------------------------------------
473 have_xz=no
474 AC_ARG_ENABLE(xz, AS_HELP_STRING([--disable-xz], [Disable optional XZ support]))
475 if test "x$enable_xz" != "xno"; then
476         PKG_CHECK_MODULES(XZ, [ liblzma ],
477                 [AC_DEFINE(HAVE_XZ, 1, [Define if XZ is available]) have_xz=yes], have_xz=no)
478         if test "x$have_xz" = xno -a "x$enable_xz" = xyes; then
479                 AC_MSG_ERROR([*** XZ support requested but libraries not found])
480         fi
481 fi
482 AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"])
483
484 # ------------------------------------------------------------------------------
485 have_zlib=no
486 AC_ARG_ENABLE(zlib, AS_HELP_STRING([--disable-zlib], [Disable optional ZLIB support]))
487 if test "x$enable_zlib" != "xno"; then
488         PKG_CHECK_MODULES(ZLIB, [ zlib ],
489                 [AC_DEFINE(HAVE_ZLIB, 1, [Define if ZLIB is available]) have_zlib=yes], have_zlib=no)
490         if test "x$have_zlib" = xno -a "x$enable_zlib" = xyes; then
491                 AC_MSG_ERROR([*** ZLIB support requested but libraries not found])
492         fi
493 fi
494 AM_CONDITIONAL(HAVE_ZLIB, [test "$have_zlib" = "yes"])
495
496 # ------------------------------------------------------------------------------
497 have_bzip2=no
498 AC_ARG_ENABLE(bzip2, AS_HELP_STRING([--enable-bzip2], [Disable optional BZIP2 support]))
499 AS_IF([test "x$enable_bzip2" != "xno"], [
500         AC_CHECK_HEADERS(bzlib.h,
501                 [AC_DEFINE(HAVE_BZIP2, 1, [Define in BZIP2 is available])
502                  have_bzip2=yes],
503                 [AS_IF([test "x$have_bzip2" = xyes], [AC_MSG_ERROR([*** BZIP2 support requested but headers not found])])
504         ])
505 ])
506 AM_CONDITIONAL(HAVE_BZIP2, [test "$have_bzip2" = "yes"])
507
508 # ------------------------------------------------------------------------------
509 have_lz4=no
510 AC_ARG_ENABLE(lz4, AS_HELP_STRING([--enable-lz4], [Enable optional LZ4 support]))
511 AS_IF([test "x$enable_lz4" = "xyes"], [
512         AC_CHECK_HEADERS(lz4.h,
513                [AC_DEFINE(HAVE_LZ4, 1, [Define in LZ4 is available]) have_lz4=yes],
514                [AC_MSG_ERROR([*** LZ4 support requested but headers not found])])
515 ])
516 AM_CONDITIONAL(HAVE_LZ4, [test "$have_lz4" = "yes"])
517
518 AM_CONDITIONAL(HAVE_COMPRESSION, [test "$have_xz" = "yes" -o "$have_lz4" = "yes"])
519
520 # ------------------------------------------------------------------------------
521 AC_ARG_ENABLE([pam],
522         AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
523                 [case "${enableval}" in
524                         yes) have_pam=yes ;;
525                         no) have_pam=no ;;
526                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
527                 esac],
528                 [have_pam=auto])
529
530 if test "x${have_pam}" != xno ; then
531         AC_CHECK_HEADERS(
532                 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
533                 [have_pam=yes],
534                 [if test "x$have_pam" = xyes ; then
535                         AC_MSG_ERROR([*** PAM headers not found.])
536                 fi])
537
538         AC_CHECK_LIB(
539                 [pam],
540                 [pam_syslog],
541                 [have_pam=yes],
542                 [if test "x$have_pam" = xyes ; then
543                         AC_MSG_ERROR([*** libpam not found.])
544                 fi])
545
546         if test "x$have_pam" = xyes ; then
547                 PAM_LIBS="-lpam -lpam_misc"
548                 AC_DEFINE(HAVE_PAM, 1, [PAM available])
549                 M4_DEFINES="$M4_DEFINES -DHAVE_PAM"
550         else
551                 have_pam=no
552         fi
553 else
554         PAM_LIBS=
555 fi
556 AC_SUBST(PAM_LIBS)
557 AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
558
559 # ------------------------------------------------------------------------------
560 AC_ARG_ENABLE([acl],
561         AS_HELP_STRING([--disable-acl],[Disable optional ACL support]),
562                 [case "${enableval}" in
563                         yes) have_acl=yes ;;
564                         no) have_acl=no ;;
565                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;;
566                 esac],
567                 [have_acl=auto])
568
569 if test "x${have_acl}" != xno ; then
570         AC_CHECK_HEADERS(
571                 [sys/acl.h acl/libacl.h],
572                 [have_acl=yes],
573                 [if test "x$have_acl" = xyes ; then
574                         AC_MSG_ERROR([*** ACL headers not found.])
575                 fi])
576
577         AC_CHECK_LIB(
578                 [acl],
579                 [acl_get_file],
580                 [have_acl=yes],
581                 [if test "x$have_acl" = xyes ; then
582                         AC_MSG_ERROR([*** libacl not found.])
583                 fi])
584
585         if test "x$have_acl" = xyes ; then
586                 ACL_LIBS="-lacl"
587                 AC_DEFINE(HAVE_ACL, 1, [ACL available])
588                 M4_DEFINES="$M4_DEFINES -DHAVE_ACL"
589         else
590                 have_acl=no
591         fi
592 else
593         ACL_LIBS=
594 fi
595 AC_SUBST(ACL_LIBS)
596 AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno])
597
598 # ------------------------------------------------------------------------------
599 AC_ARG_ENABLE([smack], AS_HELP_STRING([--disable-smack],[Disable optional SMACK support]),
600                 [case "${enableval}" in
601                         yes) have_smack=yes ;;
602                         no) have_smack=no ;;
603                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-smack) ;;
604                 esac],
605                 [have_smack=auto])
606
607 if test "x${have_smack}" = xauto; then
608         M4_DEFINES="$M4_DEFINES -DHAVE_SMACK"
609         have_smack=yes
610 fi
611
612 AC_ARG_WITH(smack-run-label,
613 AS_HELP_STRING([--with-smack-run-label=STRING],
614         [run systemd --system with a specific SMACK label]),
615         [AC_DEFINE_UNQUOTED(SMACK_RUN_LABEL, ["$withval"], [Run with a smack label])],
616         [])
617
618 if test "x${have_smack}" = xyes ; then
619         AC_DEFINE(HAVE_SMACK, 1, [Define if SMACK is available])
620 fi
621
622 AM_CONDITIONAL([HAVE_SMACK], [test "x$have_smack" = "xyes"])
623
624 # ------------------------------------------------------------------------------
625 AC_ARG_ENABLE([gcrypt],
626         AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]),
627                 [case "${enableval}" in
628                         yes) have_gcrypt=yes ;;
629                         no) have_gcrypt=no ;;
630                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-gcrypt) ;;
631                 esac],
632                 [have_gcrypt=auto])
633
634 if test "x${have_gcrypt}" != xno ; then
635         AM_PATH_LIBGCRYPT(
636                 [1.4.5],
637                 [have_gcrypt=yes],
638                 [if test "x$have_gcrypt" = xyes ; then
639                         AC_MSG_ERROR([*** GCRYPT headers not found.])
640                 fi])
641
642         if test "x$have_gcrypt" = xyes ; then
643                 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
644                 GCRYPT_CFLAGS="$LIBGCRYPT_CFLAGS"
645                 AC_DEFINE(HAVE_GCRYPT, 1, [GCRYPT available])
646         else
647                 have_gcrypt=no
648         fi
649 else
650         GCRYPT_LIBS=
651         GCRYPT_CFLAGS=
652 fi
653 AC_SUBST(GCRYPT_LIBS)
654 AC_SUBST(GCRYPT_CFLAGS)
655 AM_CONDITIONAL([HAVE_GCRYPT], [test "x$have_gcrypt" != xno])
656
657 # ------------------------------------------------------------------------------
658 AC_ARG_ENABLE([audit],
659         AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]),
660                 [case "${enableval}" in
661                         yes) have_audit=yes ;;
662                         no) have_audit=no ;;
663                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;;
664                 esac],
665                 [have_audit=auto])
666
667 if test "x${have_audit}" != xno ; then
668         AC_CHECK_HEADERS(
669                 [libaudit.h],
670                 [have_audit=yes],
671                 [if test "x$have_audit" = xyes ; then
672                         AC_MSG_ERROR([*** AUDIT headers not found.])
673                 fi])
674
675         AC_CHECK_LIB(
676                 [audit],
677                 [audit_open],
678                 [have_audit=yes],
679                 [if test "x$have_audit" = xyes ; then
680                         AC_MSG_ERROR([*** libaudit not found.])
681                 fi])
682
683         if test "x$have_audit" = xyes ; then
684                 AUDIT_LIBS="-laudit"
685                 AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available])
686         else
687                 have_audit=no
688         fi
689 else
690         AUDIT_LIBS=
691 fi
692 AC_SUBST(AUDIT_LIBS)
693
694 # ------------------------------------------------------------------------------
695 AC_ARG_ENABLE([elfutils],
696         AS_HELP_STRING([--disable-elfutils],[Disable optional ELFUTILS support]),
697                 [case "${enableval}" in
698                         yes) have_elfutils=yes ;;
699                         no) have_elfutils=no ;;
700                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-elfutils) ;;
701                 esac],
702                 [have_elfutils=auto])
703
704 if test "x${have_elfutils}" != xno ; then
705         AC_CHECK_HEADERS(
706                 [elfutils/libdwfl.h],
707                 [],
708                 [if test "x$have_elfutils" = xyes ; then
709                         AC_MSG_ERROR([*** ELFUTILS headers not found.])
710                 fi])
711
712         AC_CHECK_LIB(
713                 [dw],
714                 [dwfl_begin],
715                 [],
716                 [if test "x$have_elfutils" = xyes ; then
717                         AC_MSG_ERROR([*** ELFUTILS libs not found.])
718                 fi])
719
720         AC_CHECK_LIB(
721                 [dw],
722                 [dwfl_core_file_attach],
723                 [have_elfutils=yes],
724                 [if test "x$have_elfutils" = xyes ; then
725                         AC_MSG_ERROR([*** ELFUTILS >= 158 is required.])
726                 fi])
727
728         if test "x$have_elfutils" = xyes ; then
729                 ELFUTILS_LIBS="-lelf -ldw"
730                 AC_DEFINE(HAVE_ELFUTILS, 1, [ELFUTILS available])
731         else
732                 have_elfutils=no
733         fi
734 else
735         ELFUTILS_LIBS=
736 fi
737 AC_SUBST(ELFUTILS_LIBS)
738 AM_CONDITIONAL(HAVE_ELFUTILS, [test "$have_elfutils" = "yes"])
739
740 # ------------------------------------------------------------------------------
741 have_libcryptsetup=no
742 AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
743 if test "x$enable_libcryptsetup" != "xno"; then
744         PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup >= 1.6.0 ],
745                 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
746         if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
747                 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
748         fi
749 fi
750 AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
751
752 # ------------------------------------------------------------------------------
753 have_qrencode=no
754 AC_ARG_ENABLE(qrencode, AS_HELP_STRING([--disable-qrencode], [disable qrencode support]))
755 if test "x$enable_qrencode" != "xno"; then
756         PKG_CHECK_MODULES(QRENCODE, [ libqrencode ],
757                 [AC_DEFINE(HAVE_QRENCODE, 1, [Define if qrencode is available]) have_qrencode=yes], have_qrencode=no)
758         if test "x$have_qrencode" = xno -a "x$enable_qrencode" = xyes; then
759                 AC_MSG_ERROR([*** qrencode support requested but libraries not found])
760         fi
761 fi
762 AM_CONDITIONAL(HAVE_QRENCODE, [test "$have_qrencode" = "yes"])
763
764 # ------------------------------------------------------------------------------
765 have_microhttpd=no
766 AC_ARG_ENABLE(microhttpd, AS_HELP_STRING([--disable-microhttpd], [disable microhttpd support]))
767 if test "x$enable_microhttpd" != "xno"; then
768         PKG_CHECK_MODULES(MICROHTTPD, [libmicrohttpd >= 0.9.33],
769                 [AC_DEFINE(HAVE_MICROHTTPD, 1, [Define if microhttpd is available]) have_microhttpd=yes], have_microhttpd=no)
770         if test "x$have_microhttpd" = xno -a "x$enable_microhttpd" = xyes; then
771                 AC_MSG_ERROR([*** microhttpd support requested but libraries not found])
772         fi
773 fi
774 AM_CONDITIONAL(HAVE_MICROHTTPD, [test "$have_microhttpd" = "yes"])
775
776 # ------------------------------------------------------------------------------
777 have_gnutls=no
778 AC_ARG_ENABLE(gnutls, AS_HELP_STRING([--disable-gnutls], [disable gnutls support]))
779 if test "x$enable_gnutls" != "xno"; then
780         PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.1.4],
781                 [AC_DEFINE(HAVE_GNUTLS, 1, [Define if gnutls is available]) have_gnutls=yes], have_gnutls=no)
782         if test "x$have_gnutls" = xno -a "x$enable_gnutls" = xyes; then
783                 AC_MSG_ERROR([*** gnutls support requested but libraries not found])
784         fi
785 fi
786 AM_CONDITIONAL(HAVE_GNUTLS, [test "$have_gnutls" = "yes"])
787
788 # ------------------------------------------------------------------------------
789 have_libcurl=no
790 AC_ARG_ENABLE(libcurl, AS_HELP_STRING([--disable-libcurl], [disable libcurl support]))
791 if test "x$enable_libcurl" != "xno"; then
792         PKG_CHECK_MODULES(LIBCURL, [libcurl],
793                 [AC_DEFINE(HAVE_LIBCURL, 1, [Define if libcurl is available]) have_libcurl=yes], have_libcurl=no)
794         if test "x$have_libcurl" = xno -a "x$enable_libcurl" = xyes; then
795                 AC_MSG_ERROR([*** libcurl support requested but libraries not found])
796         fi
797 fi
798 AM_CONDITIONAL(HAVE_LIBCURL, [test "$have_libcurl" = "yes"])
799
800 # ------------------------------------------------------------------------------
801 have_libidn=no
802 AC_ARG_ENABLE(libidn, AS_HELP_STRING([--disable-libidn], [Disable optional LIBIDN support]))
803 if test "x$enable_libidn" != "xno"; then
804         PKG_CHECK_MODULES(LIBIDN, [libidn],
805                [AC_DEFINE(HAVE_LIBIDN, 1, [Define if libidn is available])
806                 have_libidn=yes
807                 M4_DEFINES="$M4_DEFINES -DHAVE_LIBIDN"],
808                [have_libidn=no])
809         if test "x$have_libidn" = "xno" -a "x$enable_libidn" = "xyes"; then
810                 AC_MSG_ERROR([*** libidn support requested but libraries not found])
811         fi
812 fi
813 AM_CONDITIONAL(HAVE_LIBIDN, [test "$have_libidn" = "yes"])
814
815 # ------------------------------------------------------------------------------
816 have_binfmt=no
817 AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
818 if test "x$enable_binfmt" != "xno"; then
819         have_binfmt=yes
820 fi
821 AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
822
823 # ------------------------------------------------------------------------------
824 have_vconsole=no
825 AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool]))
826 if test "x$enable_vconsole" != "xno"; then
827         have_vconsole=yes
828 fi
829 AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"])
830
831 # ------------------------------------------------------------------------------
832 have_bootchart=no
833 AC_ARG_ENABLE(bootchart, AS_HELP_STRING([--disable-bootchart], [disable bootchart tool]))
834 if test "x$enable_bootchart" != "xno"; then
835         have_bootchart=yes
836 fi
837 AM_CONDITIONAL(ENABLE_BOOTCHART, [test "$have_bootchart" = "yes"])
838
839 # ------------------------------------------------------------------------------
840 have_tmpfiles=no
841 AC_ARG_ENABLE(tmpfiles, AS_HELP_STRING([--disable-tmpfiles], [disable tmpfiles support]))
842 if test "x$enable_tmpfiles" != "xno"; then
843         have_tmpfiles=yes
844 fi
845 AM_CONDITIONAL(ENABLE_TMPFILES, [test "$have_tmpfiles" = "yes"])
846
847 # ------------------------------------------------------------------------------
848 have_sysusers=no
849 AC_ARG_ENABLE(sysusers, AS_HELP_STRING([--disable-sysusers], [disable sysusers support]))
850 if test "x$enable_sysusers" != "xno"; then
851         have_sysusers=yes
852 fi
853 AM_CONDITIONAL(ENABLE_SYSUSERS, [test "$have_sysusers" = "yes"])
854
855 # ------------------------------------------------------------------------------
856 have_firstboot=no
857 AC_ARG_ENABLE(firstboot, AS_HELP_STRING([--disable-firstboot], [disable firstboot support]))
858 if test "x$enable_firstboot" != "xno"; then
859         have_firstboot=yes
860 fi
861 AM_CONDITIONAL(ENABLE_FIRSTBOOT, [test "$have_firstboot" = "yes"])
862
863 # ------------------------------------------------------------------------------
864 have_randomseed=no
865 AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools]))
866 if test "x$enable_randomseed" != "xno"; then
867         have_randomseed=yes
868 fi
869 AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"])
870
871 # ------------------------------------------------------------------------------
872 have_backlight=no
873 AC_ARG_ENABLE(backlight, AS_HELP_STRING([--disable-backlight], [disable backlight tools]))
874 if test "x$enable_backlight" != "xno"; then
875         have_backlight=yes
876 fi
877 AM_CONDITIONAL(ENABLE_BACKLIGHT, [test "$have_backlight" = "yes"])
878
879 # ------------------------------------------------------------------------------
880 have_rfkill=no
881 AC_ARG_ENABLE(rfkill, AS_HELP_STRING([--disable-rfkill], [disable rfkill tools]))
882 if test "x$enable_rfkill" != "xno"; then
883         have_rfkill=yes
884 fi
885 AM_CONDITIONAL(ENABLE_RFKILL, [test "$have_rfkill" = "yes"])
886
887 # ------------------------------------------------------------------------------
888 have_logind=no
889 AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon]))
890 if test "x$enable_logind" != "xno"; then
891         have_logind=yes
892 fi
893 AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"])
894 AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ])
895
896 # ------------------------------------------------------------------------------
897 have_machined=no
898 AC_ARG_ENABLE(machined, AS_HELP_STRING([--disable-machined], [disable machine daemon]))
899 if test "x$enable_machined" != "xno"; then
900         have_machined=yes
901 fi
902 AM_CONDITIONAL(ENABLE_MACHINED, [test "$have_machined" = "yes"])
903 AS_IF([test "$have_machined" = "yes"], [ AC_DEFINE(HAVE_MACHINED, [1], [Machined support available]) ])
904
905 # ------------------------------------------------------------------------------
906 have_importd=no
907 AC_ARG_ENABLE(importd, AS_HELP_STRING([--disable-importd], [disable import daemon]))
908 if test "x$enable_importd" != "xno"; then
909         have_importd=yes
910 fi
911 AM_CONDITIONAL(ENABLE_IMPORTD, [test "$have_importd" = "yes"])
912 AS_IF([test "$have_importd" = "yes"], [ AC_DEFINE(HAVE_IMPORTD, [1], [Importd support available]) ])
913
914 # ------------------------------------------------------------------------------
915 have_hostnamed=no
916 AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon]))
917 if test "x$enable_hostnamed" != "xno"; then
918         have_hostnamed=yes
919 fi
920 AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"])
921
922 # ------------------------------------------------------------------------------
923 have_timedated=no
924 AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon]))
925 if test "x$enable_timedated" != "xno"; then
926         have_timedated=yes
927 fi
928 AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
929
930 # ------------------------------------------------------------------------------
931 have_timesyncd=no
932 AC_ARG_ENABLE(timesyncd, AS_HELP_STRING([--disable-timesyncd], [disable timesync daemon]))
933 if test "x$enable_timesyncd" != "xno"; then
934         have_timesyncd=yes
935         M4_DEFINES="$M4_DEFINES -DENABLE_TIMESYNCD"
936 fi
937 AM_CONDITIONAL(ENABLE_TIMESYNCD, [test "$have_timesyncd" = "yes"])
938
939 AC_ARG_WITH(ntp-servers,
940         AS_HELP_STRING([--with-ntp-servers=NTPSERVERS],
941                 [Space-separated list of default NTP servers]),
942         [NTP_SERVERS="$withval"],
943         [NTP_SERVERS="time1.google.com time2.google.com time3.google.com time4.google.com"])
944
945 AC_DEFINE_UNQUOTED(NTP_SERVERS, ["$NTP_SERVERS"], [Default NTP Servers])
946 AC_SUBST(NTP_SERVERS)
947
948 AC_ARG_WITH(time-epoch,
949         AS_HELP_STRING([--with-time-epoch=SECONDS],
950                 [Time epoch for time clients]),
951         [TIME_EPOCH="$withval"],
952         [TIME_EPOCH="`stat -c %Y ${srcdir}/NEWS 2>/dev/null || echo 0`"])
953
954 AC_DEFINE_UNQUOTED(TIME_EPOCH, [$TIME_EPOCH], [Time Epoch])
955
956 # ------------------------------------------------------------------------------
957 AC_ARG_WITH(system-uid-max,
958         AS_HELP_STRING([--with-system-uid-max=UID]
959                 [Maximum UID for system users]),
960         [SYSTEM_UID_MAX="$withval"],
961         [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`"])
962
963 AC_DEFINE_UNQUOTED(SYSTEM_UID_MAX, [$SYSTEM_UID_MAX], [Maximum System UID])
964 AC_SUBST(SYSTEM_UID_MAX)
965
966 # ------------------------------------------------------------------------------
967 AC_ARG_WITH(system-gid-max,
968         AS_HELP_STRING([--with-system-gid-max=GID]
969                 [Maximum GID for system groups]),
970         [SYSTEM_GID_MAX="$withval"],
971         [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`"])
972
973 AC_DEFINE_UNQUOTED(SYSTEM_GID_MAX, [$SYSTEM_GID_MAX], [Maximum System GID])
974 AC_SUBST(SYSTEM_GID_MAX)
975
976 # ------------------------------------------------------------------------------
977 have_localed=no
978 AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))
979 if test "x$enable_localed" != "xno"; then
980         have_localed=yes
981 fi
982 AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"])
983
984 # ------------------------------------------------------------------------------
985 have_coredump=no
986 AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook]))
987 if test "x$enable_coredump" != "xno"; then
988         have_coredump=yes
989 fi
990 AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"])
991
992 # ------------------------------------------------------------------------------
993 have_polkit=no
994 AC_ARG_ENABLE(polkit, AS_HELP_STRING([--disable-polkit], [disable PolicyKit support]))
995 if test "x$enable_polkit" != "xno"; then
996         AC_DEFINE(ENABLE_POLKIT, 1, [Define if PolicyKit support is to be enabled])
997         have_polkit=yes
998 fi
999 AM_CONDITIONAL(ENABLE_POLKIT, [test "x$have_polkit" = "xyes"])
1000
1001 # ------------------------------------------------------------------------------
1002 have_resolved=no
1003 AC_ARG_ENABLE(resolved, AS_HELP_STRING([--disable-resolved], [disable resolve daemon]))
1004 if test "x$enable_resolved" != "xno"; then
1005         have_resolved=yes
1006         M4_DEFINES="$M4_DEFINES -DENABLE_RESOLVED"
1007 fi
1008 AM_CONDITIONAL(ENABLE_RESOLVED, [test "$have_resolved" = "yes"])
1009
1010 AC_ARG_WITH(dns-servers,
1011         AS_HELP_STRING([--with-dns-servers=DNSSERVERS],
1012                 [Space-separated list of default DNS servers]),
1013         [DNS_SERVERS="$withval"],
1014         [DNS_SERVERS="8.8.8.8 8.8.4.4 2001:4860:4860::8888 2001:4860:4860::8844"])
1015
1016 AC_DEFINE_UNQUOTED(DNS_SERVERS, ["$DNS_SERVERS"], [Default DNS Servers])
1017 AC_SUBST(DNS_SERVERS)
1018
1019 # ------------------------------------------------------------------------------
1020 have_networkd=no
1021 AC_ARG_ENABLE(networkd, AS_HELP_STRING([--disable-networkd], [disable networkd]))
1022 AS_IF([test "x$enable_networkd" != "xno"], [
1023         AC_DEFINE(ENABLE_NETWORKD, 1, [Define if networkd support is to be enabled])
1024         have_networkd=yes
1025         M4_DEFINES="$M4_DEFINES -DENABLE_NETWORKD"
1026 ])
1027 AM_CONDITIONAL(ENABLE_NETWORKD, [test "x$have_networkd" = "xyes"])
1028
1029 # ------------------------------------------------------------------------------
1030 have_efi=no
1031 AC_ARG_ENABLE(efi, AS_HELP_STRING([--disable-efi], [disable EFI support]))
1032 if test "x$enable_efi" != "xno"; then
1033         AC_DEFINE(ENABLE_EFI, 1, [Define if EFI support is to be enabled])
1034         have_efi=yes
1035 fi
1036 AM_CONDITIONAL(ENABLE_EFI, [test "x$have_efi" = "xyes"])
1037
1038 # ------------------------------------------------------------------------------
1039 EFI_CC=gcc
1040 AC_SUBST([EFI_CC])
1041
1042 EFI_ARCH=`echo $host | sed "s/\(-\).*$//"`
1043
1044 AM_COND_IF(ARCH_IA32, [
1045         EFI_ARCH=ia32
1046         EFI_MACHINE_TYPE_NAME=ia32])
1047
1048 AM_COND_IF(ARCH_X86_64, [
1049         EFI_MACHINE_TYPE_NAME=x64])
1050
1051 AC_SUBST([EFI_ARCH])
1052 AC_SUBST([EFI_MACHINE_TYPE_NAME])
1053
1054 have_gnuefi=no
1055 AC_ARG_ENABLE(gnuefi, AS_HELP_STRING([--enable-gnuefi], [Disable optional gnuefi support]))
1056 AS_IF([test "x$enable_gnuefi" != "xno"], [
1057         AC_CHECK_HEADERS(efi/${EFI_ARCH}/efibind.h,
1058                 [AC_DEFINE(HAVE_GNUEFI, 1, [Define if gnuefi is available])
1059                  have_gnuefi=yes],
1060                 [AS_IF([test "x$enable_gnuefi" = xyes],
1061                        [AC_MSG_ERROR([*** gnuefi support requested but headers not found])])
1062         ])
1063
1064         efiroot=$(echo $(cd /usr/lib/$(gcc -print-multi-os-directory); pwd))
1065
1066         EFI_LIB_DIR="$efiroot"
1067         AC_ARG_WITH(efi-libdir,
1068                 AS_HELP_STRING([--with-efi-libdir=PATH], [Path to EFI lib directory]),
1069                 [EFI_LIB_DIR="$withval"], [EFI_LIB_DIR="$efiroot"]
1070         )
1071         AC_SUBST([EFI_LIB_DIR])
1072
1073         have_efi_lds=no
1074         AC_ARG_WITH(efi-ldsdir,
1075                 AS_HELP_STRING([--with-efi-ldsdir=PATH], [Path to EFI lds directory]),
1076                 [EFI_LDS_DIR="$withval" && AC_CHECK_FILE([${EFI_LDS_DIR}/elf_${EFI_ARCH}_efi.lds],
1077                         [have_efi_lds=yes])],
1078                 [AS_FOR([DIR], [EFI_LDS_DIR], ["${efiroot}/gnuefi" "${efiroot}"],
1079                         [AC_CHECK_FILE([${EFI_LDS_DIR}/elf_${EFI_ARCH}_efi.lds],
1080                                        [have_efi_lds=yes && break])])])
1081         AS_IF([test "x$have_efi_lds" = xyes],
1082               [AC_SUBST([EFI_LDS_DIR])],
1083               [AS_IF([test "x$enable_gnuefi" = xyes],
1084                      [AC_MSG_ERROR([*** gnuefi support requested but files not found])],
1085                      [have_gnuefi=no])])
1086
1087         AC_ARG_WITH(efi-includedir,
1088                 AS_HELP_STRING([--with-efi-includedir=PATH], [Path to EFI include directory]),
1089                 [EFI_INC_DIR="$withval"], [EFI_INC_DIR="/usr/include"]
1090         )
1091         AC_SUBST([EFI_INC_DIR])
1092 ])
1093 AM_CONDITIONAL(HAVE_GNUEFI, [test "x$have_gnuefi" = xyes])
1094
1095 # ------------------------------------------------------------------------------
1096 AC_ARG_WITH(unifont,
1097         AS_HELP_STRING([--with-unifont=PATH],
1098                 [Path to unifont.hex]),
1099         [UNIFONT="$withval"],
1100         [UNIFONT="/usr/share/unifont/unifont.hex"])
1101 AC_SUBST(UNIFONT)
1102
1103 have_terminal=no
1104 have_unifont=no
1105 AC_ARG_ENABLE(terminal, AS_HELP_STRING([--enable-terminal], [enable terminal support]))
1106 if test "x$enable_terminal" = "xyes"; then
1107         PKG_CHECK_MODULES([TERMINAL], [ libevdev >= 1.2 xkbcommon >= 0.5 libdrm >= 2.4], [have_terminal=yes])
1108         AC_CHECK_FILE($UNIFONT, [have_unifont=yes])
1109         AS_IF([test "x$have_terminal" != xyes -o "x$have_unifont" != "xyes" -a "x$enable_terminal" = xyes],
1110               [AC_MSG_ERROR([*** terminal support requested but required dependencies not available])],
1111               [test "x$have_terminal" = xyes -a "x$have_unifont" = "xyes"],
1112               [AC_DEFINE(ENABLE_TERMINAL, 1, [Define if terminal support is to be enabled])])
1113 fi
1114 AM_CONDITIONAL(ENABLE_TERMINAL, [test "x$have_terminal" = "xyes" -a "x$have_unifont" = "xyes"])
1115
1116 # ------------------------------------------------------------------------------
1117 have_kdbus=no
1118 AC_ARG_ENABLE(kdbus, AS_HELP_STRING([--enable-kdbus], [do connect to kdbus by default]))
1119 if test "x$enable_kdbus" = "xyes"; then
1120         AC_DEFINE(ENABLE_KDBUS, 1, [Define if kdbus support is to be enabled])
1121         have_kdbus=yes
1122         M4_DEFINES="$M4_DEFINES -DENABLE_KDBUS"
1123 fi
1124 AM_CONDITIONAL(ENABLE_KDBUS, [test "$have_kdbus" = "yes"])
1125
1126 # ------------------------------------------------------------------------------
1127 AC_ARG_WITH(rc-local-script-path-start,
1128         AS_HELP_STRING([--with-rc-local-script-path-start=PATH],
1129                 [Path to /etc/rc.local]),
1130         [RC_LOCAL_SCRIPT_PATH_START="$withval"],
1131         [RC_LOCAL_SCRIPT_PATH_START="/etc/rc.local"])
1132
1133 AC_ARG_WITH(rc-local-script-path-stop,
1134         AS_HELP_STRING([--with-rc-local-script-path-stop=PATH],
1135                 [Path to /usr/sbin/halt.local]),
1136         [RC_LOCAL_SCRIPT_PATH_STOP="$withval"],
1137         [RC_LOCAL_SCRIPT_PATH_STOP="/usr/sbin/halt.local"])
1138
1139 AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_START, ["$RC_LOCAL_SCRIPT_PATH_START"], [Path of /etc/rc.local script])
1140 AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_STOP, ["$RC_LOCAL_SCRIPT_PATH_STOP"], [Path of /usr/sbin/halt.local script])
1141
1142 AC_SUBST(RC_LOCAL_SCRIPT_PATH_START)
1143 AC_SUBST(RC_LOCAL_SCRIPT_PATH_STOP)
1144
1145 # ------------------------------------------------------------------------------
1146 AC_ARG_WITH(kbd-loadkeys,
1147         AS_HELP_STRING([--with-kbd-loadkeys=PATH],
1148                 [Path to loadkeys]),
1149         [KBD_LOADKEYS="$withval"],
1150         [KBD_LOADKEYS="/usr/bin/loadkeys"])
1151
1152 AC_ARG_WITH(kbd-setfont,
1153         AS_HELP_STRING([--with-kbd-setfont=PATH],
1154                 [Path to setfont]),
1155         [KBD_SETFONT="$withval"],
1156         [KBD_SETFONT="/usr/bin/setfont"])
1157
1158 AC_DEFINE_UNQUOTED(KBD_LOADKEYS, ["$KBD_LOADKEYS"], [Path of loadkeys])
1159 AC_DEFINE_UNQUOTED(KBD_SETFONT, ["$KBD_SETFONT"], [Path of setfont])
1160
1161 AC_SUBST(KBD_LOADKEYS)
1162 AC_SUBST(KBD_SETFONT)
1163
1164 AC_ARG_WITH(telinit,
1165         AS_HELP_STRING([--with-telinit=PATH],
1166                 [Path to telinit]),
1167         [TELINIT="$withval"],
1168         [TELINIT="/lib/sysvinit/telinit"])
1169
1170 AC_DEFINE_UNQUOTED(TELINIT, ["$TELINIT"], [Path to telinit])
1171
1172 AC_SUBST(TELINIT)
1173
1174 AC_CHECK_HEADERS_ONCE([valgrind/memcheck.h valgrind/valgrind.h])
1175
1176 # ------------------------------------------------------------------------------
1177 have_myhostname=no
1178 AC_ARG_ENABLE(myhostname, AS_HELP_STRING([--disable-myhostname], [disable nss-myhostname support]))
1179 if test "x$enable_myhostname" != "xno"; then
1180         AC_HEADER_STDC
1181         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])
1182
1183         AC_C_CONST
1184         AC_TYPE_SIZE_T
1185         AC_HEADER_TIME
1186
1187         AC_FUNC_MALLOC
1188         AC_FUNC_SELECT_ARGTYPES
1189         AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn])
1190
1191         have_myhostname=yes
1192 fi
1193 AM_CONDITIONAL(HAVE_MYHOSTNAME, [test "$have_myhostname" = "yes"])
1194
1195 # ------------------------------------------------------------------------------
1196 AC_ARG_ENABLE([gudev],
1197        AS_HELP_STRING([--disable-gudev], [disable Gobject libudev support @<:@default=enabled@:>@]),
1198        [], [enable_gudev=yes])
1199 AS_IF([test "x$enable_gudev" = "xyes"], [ PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.22.0 gobject-2.0 >= 2.22.0 gio-2.0]) ])
1200 AM_CONDITIONAL([ENABLE_GUDEV], [test "x$enable_gudev" = "xyes"])
1201 AS_IF([test "x$enable_gudev" = "xyes"], [ AC_DEFINE(HAVE_GLIB, 1, [Define if glib is available]) ])
1202
1203 # ------------------------------------------------------------------------------
1204 AC_ARG_ENABLE(hwdb, [AC_HELP_STRING([--disable-hwdb], [disable hardware database support])],
1205        enable_hwdb=$enableval, enable_hwdb=yes)
1206 AM_CONDITIONAL(ENABLE_HWDB, [test x$enable_hwdb = xyes])
1207
1208 # ------------------------------------------------------------------------------
1209 have_manpages=no
1210 AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
1211 AS_IF([test "x$enable_manpages" != xno], [have_manpages=yes])
1212 AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
1213
1214 # ------------------------------------------------------------------------------
1215 AC_ARG_ENABLE(hibernate,
1216        [AC_HELP_STRING([--disable-hibernate], [disable hibernation support])],
1217        enable_hibernate=$enableval, enable_hibernate=yes)
1218 AM_CONDITIONAL(ENABLE_HIBERNATE, [test x$enable_hibernate = xyes])
1219
1220 # ------------------------------------------------------------------------------
1221 AC_ARG_ENABLE(ldconfig,
1222        [AC_HELP_STRING([--disable-ldconfig], [disable ldconfig])],
1223        enable_ldconfig=$enableval, enable_ldconfig=yes)
1224 AM_CONDITIONAL(ENABLE_LDCONFIG, [test x$enable_ldconfig = xyes])
1225
1226 AC_SUBST(M4_DEFINES)
1227
1228 AC_ARG_WITH([tty-gid],
1229         [AS_HELP_STRING([--with-tty-gid=GID],
1230                 [Specify the numeric GID of the 'tty' group])],
1231         [TTY_GID="$withval"],
1232         [TTY_GID="5"])
1233
1234 AC_DEFINE_UNQUOTED(TTY_GID, [$TTY_GID], [GID of the 'tty' group])
1235 AC_SUBST(TTY_GID)
1236
1237 AC_ARG_WITH([dbuspolicydir],
1238         AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
1239         [],
1240         [with_dbuspolicydir=${sysconfdir}/dbus-1/system.d])
1241
1242 AC_ARG_WITH([dbussessionservicedir],
1243         AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
1244         [],
1245         [with_dbussessionservicedir=${datadir}/dbus-1/services])
1246
1247 AC_ARG_WITH([dbussystemservicedir],
1248         AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
1249         [],
1250         [with_dbussystemservicedir=${datadir}/dbus-1/system-services])
1251
1252 AC_ARG_WITH([bashcompletiondir],
1253         AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
1254         [],
1255         [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
1256                 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
1257         ] , [
1258                 with_bashcompletiondir=${datadir}/bash-completion/completions
1259         ])])
1260
1261 AC_ARG_WITH([zshcompletiondir],
1262         AS_HELP_STRING([--with-zshcompletiondir=DIR], [Zsh completions directory]),
1263         [], [with_zshcompletiondir=${datadir}/zsh/site-functions])
1264
1265 AC_ARG_WITH([rootprefix],
1266         AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
1267         [], [with_rootprefix=${ac_default_prefix}])
1268
1269 AC_ARG_WITH([rootlibdir],
1270         AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
1271         [],
1272         [with_rootlibdir=${libdir}])
1273
1274 AC_ARG_WITH([pamlibdir],
1275         AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]),
1276         [],
1277         [with_pamlibdir=${with_rootlibdir}/security])
1278
1279 AC_ARG_WITH([pamconfdir],
1280         AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration]),
1281         [],
1282         [with_pamconfdir=${sysconfdir}/pam.d])
1283
1284 AC_ARG_ENABLE([split-usr],
1285         AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]),
1286         [],
1287         [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [
1288                 enable_split_usr=yes
1289         ], [
1290                 enable_split_usr=no
1291         ])])
1292
1293 AC_ARG_WITH([dkr-index-url],
1294         [AS_HELP_STRING([--dkr-index-url=URL], [Specify the default index URL to use for image downloads])],
1295         [DEFAULT_DKR_INDEX_URL="\"$withval\""],
1296         [DEFAULT_DKR_INDEX_URL="NULL"])
1297
1298 AC_DEFINE_UNQUOTED(DEFAULT_DKR_INDEX_URL, [$DEFAULT_DKR_INDEX_URL], [Default index URL to use for image downloads])
1299 AC_SUBST(DEFAULT_DKR_INDEX_URL)
1300
1301 AS_IF([test "x${enable_split_usr}" = "xyes"], [
1302         AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr])
1303 ])
1304
1305 # Work around intltoolize and gtk-doc problems in VPATH builds
1306 AM_CONDITIONAL([ENABLE_GTK_DOC_TESTS], [test "x$0" = "x./configure"],
1307                                        [Define to do gtk-doc tests])
1308 AS_IF([test "x$0" != "x./configure"], [
1309         AC_SUBST([INTLTOOL_UPDATE], [/bin/true])
1310 ])
1311
1312 # QEMU and OVMF UEFI firmware
1313 AS_IF([test x"$cross_compiling" = "xyes"], [], [
1314         AC_PATH_PROG([QEMU], [qemu-system-x86_64])
1315         AC_CHECK_FILE([/usr/share/qemu/bios-ovmf.bin], [QEMU_BIOS=/usr/share/qemu/bios-ovmf.bin],
1316                 [AC_CHECK_FILE([/usr/share/qemu-ovmf/bios.bin], [QEMU_BIOS=/usr/share/qemu-ovmf/bios.bin])])
1317         AC_SUBST([QEMU_BIOS])
1318 ])
1319
1320 AC_ARG_ENABLE(tests,
1321         [AC_HELP_STRING([--disable-tests], [disable tests])],
1322         enable_tests=$enableval, enable_tests=yes)
1323 AM_CONDITIONAL(ENABLE_TESTS, [test x$enable_tests = xyes])
1324
1325 AC_ARG_ENABLE(debug,
1326         [AC_HELP_STRING([--enable-debug@<:@=LIST@:>@], [enable extra debugging (hashmap,mmap-cache)])],
1327         [if test "x$enableval" = "xyes"; then
1328                 enableval="hashmap,mmap-cache"
1329         fi
1330         saved_ifs="$IFS"
1331         IFS="$IFS$PATH_SEPARATOR,"
1332         for name in $enableval; do
1333                 case $name in
1334                 hashmap)
1335                         enable_debug_hashmap=yes
1336                         ;;
1337                 mmap-cache)
1338                         enable_debug_mmap_cache=yes
1339                         ;;
1340                 esac
1341         done
1342         IFS="$saved_ifs"],[])
1343
1344 enable_debug=""
1345 AS_IF([test x$enable_debug_hashmap = xyes], [
1346         AC_DEFINE(ENABLE_DEBUG_HASHMAP, 1, [Define if hashmap debugging is to be enabled])
1347         enable_debug="hashmap $enable_debug"
1348 ])
1349 AS_IF([test x$enable_debug_mmap_cache = xyes], [
1350         AC_DEFINE(ENABLE_DEBUG_MMAP_CACHE, 1, [Define if mmap cache debugging is to be enabled])
1351         enable_debug="mmap-cache $enable_debug"
1352 ])
1353 test -z "$enable_debug" && enable_debug="none"
1354
1355 AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
1356 AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
1357 AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
1358 AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
1359 AC_SUBST([zshcompletiondir], [$with_zshcompletiondir])
1360 AC_SUBST([pamlibdir], [$with_pamlibdir])
1361 AC_SUBST([pamconfdir], [$with_pamconfdir])
1362 AC_SUBST([rootprefix], [$with_rootprefix])
1363 AC_SUBST([rootlibdir], [$with_rootlibdir])
1364
1365 AC_CONFIG_FILES([
1366         Makefile po/Makefile.in
1367 ])
1368
1369 AC_OUTPUT
1370 AC_MSG_RESULT([
1371         $PACKAGE_NAME $VERSION
1372
1373         libcryptsetup:           ${have_libcryptsetup}
1374         PAM:                     ${have_pam}
1375         AUDIT:                   ${have_audit}
1376         IMA:                     ${have_ima}
1377         AppArmor:                ${have_apparmor}
1378         SELinux:                 ${have_selinux}
1379         SECCOMP:                 ${have_seccomp}
1380         SMACK:                   ${have_smack}
1381         ZLIB:                    ${have_zlib}
1382         XZ:                      ${have_xz}
1383         LZ4:                     ${have_lz4}
1384         BZIP2:                   ${have_bzip2}
1385         ACL:                     ${have_acl}
1386         GCRYPT:                  ${have_gcrypt}
1387         QRENCODE:                ${have_qrencode}
1388         MICROHTTPD:              ${have_microhttpd}
1389         CHKCONFIG:               ${have_chkconfig}
1390         GNUTLS:                  ${have_gnutls}
1391         libcurl:                 ${have_libcurl}
1392         libidn:                  ${have_libidn}
1393         ELFUTILS:                ${have_elfutils}
1394         binfmt:                  ${have_binfmt}
1395         vconsole:                ${have_vconsole}
1396         bootchart:               ${have_bootchart}
1397         tmpfiles:                ${have_tmpfiles}
1398         sysusers:                ${have_sysusers}
1399         firstboot:               ${have_firstboot}
1400         randomseed:              ${have_randomseed}
1401         backlight:               ${have_backlight}
1402         rfkill:                  ${have_rfkill}
1403         logind:                  ${have_logind}
1404         machined:                ${have_machined}
1405         importd:                 ${have_importd}
1406         hostnamed:               ${have_hostnamed}
1407         timedated:               ${have_timedated}
1408         timesyncd:               ${have_timesyncd}
1409         default NTP servers:     ${NTP_SERVERS}
1410         time epoch:              ${TIME_EPOCH}
1411         localed:                 ${have_localed}
1412         networkd:                ${have_networkd}
1413         resolved:                ${have_resolved}
1414         default DNS servers:     ${DNS_SERVERS}
1415         coredump:                ${have_coredump}
1416         polkit:                  ${have_polkit}
1417         efi:                     ${have_efi}
1418         gnuefi:                  ${have_gnuefi}
1419         efi arch:                ${EFI_ARCH}
1420         EFI machine type:        ${EFI_MACHINE_TYPE_NAME}
1421         EFI CC                   ${EFI_CC}
1422         EFI libdir:              ${EFI_LIB_DIR}
1423         EFI ldsdir:              ${EFI_LDS_DIR}
1424         EFI includedir:          ${EFI_INC_DIR}
1425         xkbcommon:               ${have_xkbcommon}
1426         blkid:                   ${have_blkid}
1427         dbus:                    ${have_dbus}
1428         nss-myhostname:          ${have_myhostname}
1429         gudev:                   ${enable_gudev}
1430         hwdb:                    ${enable_hwdb}
1431         gintrospection:          ${enable_introspection}
1432         terminal:                ${have_terminal}
1433         kdbus:                   ${have_kdbus}
1434         Python:                  ${have_python}
1435         Python Headers:          ${have_python_devel}
1436         man pages:               ${have_manpages}
1437         gtk-doc:                 ${enable_gtk_doc}
1438         test coverage:           ${have_coverage}
1439         Split /usr:              ${enable_split_usr}
1440         SysV compatibility:      ${SYSTEM_SYSV_COMPAT}
1441         compatibility libraries: ${have_compat_libs}
1442         ldconfig support:        ${enable_ldconfig}
1443         hibernate support:       ${enable_hibernate}
1444         extra debugging:         ${enable_debug}
1445
1446         prefix:                  ${prefix}
1447         rootprefix:              ${with_rootprefix}
1448         sysconf dir:             ${sysconfdir}
1449         datarootdir:             ${datarootdir}
1450         includedir:              ${includedir}
1451         include_prefix:          ${INCLUDE_PREFIX}
1452         lib dir:                 ${libdir}
1453         rootlib dir:             ${with_rootlibdir}
1454         SysV init scripts:       ${SYSTEM_SYSVINIT_PATH}
1455         SysV rc?.d directories:  ${SYSTEM_SYSVRCND_PATH}
1456         Build Python:            ${PYTHON}
1457         Installation Python:     ${PYTHON_BINARY}
1458         sphinx binary:           ${SPHINX_BUILD}
1459         PAM modules dir:         ${with_pamlibdir}
1460         PAM configuration dir:   ${with_pamconfdir}
1461         D-Bus policy dir:        ${with_dbuspolicydir}
1462         D-Bus session dir:       ${with_dbussessionservicedir}
1463         D-Bus system dir:        ${with_dbussystemservicedir}
1464         Bash completions dir:    ${with_bashcompletiondir}
1465         Zsh completions dir:     ${with_zshcompletiondir}
1466         Extra start script:      ${RC_LOCAL_SCRIPT_PATH_START}
1467         Extra stop script:       ${RC_LOCAL_SCRIPT_PATH_STOP}
1468         Debug shell:             ${SUSHELL} @ ${DEBUGTTY}
1469         TTY GID:                 ${TTY_GID}
1470         Maximum System UID:      ${SYSTEM_UID_MAX}
1471         Maximum System GID:      ${SYSTEM_GID_MAX}
1472         Certificate root:        ${CERTIFICATEROOT}
1473         Default dkr Index        ${DEFAULT_DKR_INDEX_URL}
1474
1475         CFLAGS:                  ${OUR_CFLAGS} ${CFLAGS}
1476         CPPFLAGS:                ${OUR_CPPFLAGS} ${CPPFLAGS}
1477         LDFLAGS:                 ${OUR_LDFLAGS} ${LDFLAGS}
1478         PYTHON_CFLAGS:           ${PYTHON_DEVEL_CFLAGS}
1479         PYTHON_LIBS:             ${PYTHON_DEVEL_LIBS}
1480 ])