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