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