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