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