chiark / gitweb /
timesyncd: Support timesyncd.conf.d directories in the usual search paths
[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_libmount=no
443 PKG_CHECK_MODULES(MOUNT, [ mount >= 2.20 ],
444         [AC_DEFINE(HAVE_LIBMOUNT, 1, [Define if libmount is available]) have_libmount=yes], have_libmount=no)
445 if test "x$have_libmount" = xno; then
446         AC_MSG_ERROR([*** libmount support required but libraries not found])
447 fi
448 AM_CONDITIONAL(HAVE_LIBMOUNT, [test "$have_libmount" = "yes"])
449
450 # ------------------------------------------------------------------------------
451 have_seccomp=no
452 AC_ARG_ENABLE(seccomp, AS_HELP_STRING([--disable-seccomp], [Disable optional SECCOMP support]))
453 if test "x$enable_seccomp" != "xno"; then
454         PKG_CHECK_MODULES(SECCOMP, [libseccomp >= 1.0.0],
455                [AC_DEFINE(HAVE_SECCOMP, 1, [Define if seccomp is available])
456                 have_seccomp=yes
457                 M4_DEFINES="$M4_DEFINES -DHAVE_SECCOMP"],
458                [have_seccomp=no])
459         if test "x$have_seccomp" = "xno" -a "x$enable_seccomp" = "xyes"; then
460                 AC_MSG_ERROR([*** seccomp support requested but libraries not found])
461         fi
462 fi
463 AM_CONDITIONAL(HAVE_SECCOMP, [test "$have_seccomp" = "yes"])
464
465 # ------------------------------------------------------------------------------
466 have_ima=yes
467 AC_ARG_ENABLE([ima], AS_HELP_STRING([--disable-ima],[Disable optional IMA support]),
468                 [case "${enableval}" in
469                         yes) have_ima=yes ;;
470                         no) have_ima=no ;;
471                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-ima) ;;
472                 esac],
473                 [have_ima=yes])
474
475 if test "x${have_ima}" != xno ; then
476         AC_DEFINE(HAVE_IMA, 1, [Define if IMA is available])
477 fi
478
479 # ------------------------------------------------------------------------------
480 have_chkconfig=yes
481 AC_ARG_ENABLE([chkconfig], AS_HELP_STRING([--disable-chkconfig],[Disable optional chkconfig support]),
482                 [case "${enableval}" in
483                         yes) have_chkconfig=yes ;;
484                         no) have_chkconfig=no ;;
485                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-chkconfig) ;;
486                 esac],
487                 [AC_PATH_PROG(CHKCONFIG, chkconfig)
488                 if test -z "$CHKCONFIG"; then
489                         have_chkconfig=no
490                 else
491                         have_chkconfig=yes
492                 fi])
493
494 if test "x${have_chkconfig}" != xno ; then
495         AC_DEFINE(HAVE_CHKCONFIG, 1, [Define if CHKCONFIG is available])
496 fi
497
498 # ------------------------------------------------------------------------------
499 have_selinux=no
500 AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
501 if test "x$enable_selinux" != "xno"; then
502         PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9],
503                 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available])
504                  have_selinux=yes
505                  M4_DEFINES="$M4_DEFINES -DHAVE_SELINUX"],
506                 [have_selinux=no])
507         if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
508                 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
509         fi
510 fi
511 AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
512
513 have_apparmor=no
514 AC_ARG_ENABLE(apparmor, AS_HELP_STRING([--disable-apparmor], [Disable optional AppArmor support]))
515 if test "x$enable_apparmor" != "xno"; then
516         PKG_CHECK_MODULES([APPARMOR], [libapparmor],
517                 [AC_DEFINE(HAVE_APPARMOR, 1, [Define if AppArmor is available])
518                  have_apparmor=yes
519                  M4_DEFINES="$M4_DEFINES -DHAVE_APPARMOR"],
520                 [have_apparmor=no])
521         if test "x$have_apparmor" = xno -a "x$enable_apparmor" = xyes; then
522                 AC_MSG_ERROR([*** AppArmor support requested but libraries not found])
523         fi
524 fi
525 AM_CONDITIONAL(HAVE_APPARMOR, [test "$have_apparmor" = "yes"])
526
527
528 AC_ARG_WITH(debug-shell,
529         AS_HELP_STRING([--with-debug-shell=PATH],
530                 [Path to debug shell binary]),
531         [SUSHELL="$withval"],[
532         AS_IF([test "x${have_selinux}" != "xno"], [SUSHELL="/sbin/sushell"] , [SUSHELL="/bin/sh"])])
533
534 AC_SUBST(SUSHELL)
535
536 AC_ARG_WITH([debug-tty],
537         AS_HELP_STRING([--with-debug-tty=PATH],
538                 [Specify the tty device for debug shell]),
539         [DEBUGTTY="$withval"],
540         [DEBUGTTY=/dev/tty9])
541
542 AC_SUBST(DEBUGTTY)
543
544 AC_ARG_WITH([certificate-root],
545         AS_HELP_STRING([--with-certificate-root=PATH],
546                 [Specify the prefix for TLS certificates [/etc/ssl]]),
547         [CERTIFICATEROOT="$withval"],
548         [CERTIFICATEROOT="/etc/ssl"])
549
550 AC_SUBST(CERTIFICATEROOT)
551
552 # ------------------------------------------------------------------------------
553 have_xz=no
554 AC_ARG_ENABLE(xz, AS_HELP_STRING([--disable-xz], [Disable optional XZ support]))
555 if test "x$enable_xz" != "xno"; then
556         PKG_CHECK_MODULES(XZ, [ liblzma ],
557                 [AC_DEFINE(HAVE_XZ, 1, [Define if XZ is available]) have_xz=yes])
558         if test "x$have_xz" = xno -a "x$enable_xz" = xyes; then
559                 AC_MSG_ERROR([*** XZ support requested but libraries not found])
560         fi
561 fi
562 AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"])
563
564 # ------------------------------------------------------------------------------
565 have_lz4=no
566 AC_ARG_ENABLE(lz4, AS_HELP_STRING([--enable-lz4], [Enable optional LZ4 support]))
567 AS_IF([test "x$enable_lz4" == "xyes"], [
568         AC_CHECK_HEADERS(lz4.h,
569                [AC_DEFINE(HAVE_LZ4, 1, [Define in LZ4 is available]) have_lz4=yes],
570                [AC_MSG_ERROR([*** LZ4 support requested but headers not found])])
571 ])
572 AM_CONDITIONAL(HAVE_LZ4, [test "$have_lz4" = "yes"])
573
574 AM_CONDITIONAL(HAVE_COMPRESSION, [test "$have_xz" = "yes" -o "$have_lz4" = "yes"])
575
576 # ------------------------------------------------------------------------------
577 AC_ARG_ENABLE([pam],
578         AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
579                 [case "${enableval}" in
580                         yes) have_pam=yes ;;
581                         no) have_pam=no ;;
582                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
583                 esac],
584                 [have_pam=auto])
585
586 if test "x${have_pam}" != xno ; then
587         AC_CHECK_HEADERS(
588                 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
589                 [have_pam=yes],
590                 [if test "x$have_pam" = xyes ; then
591                         AC_MSG_ERROR([*** PAM headers not found.])
592                 fi])
593
594         AC_CHECK_LIB(
595                 [pam],
596                 [pam_syslog],
597                 [have_pam=yes],
598                 [if test "x$have_pam" = xyes ; then
599                         AC_MSG_ERROR([*** libpam not found.])
600                 fi])
601
602         if test "x$have_pam" = xyes ; then
603                 PAM_LIBS="-lpam -lpam_misc"
604                 AC_DEFINE(HAVE_PAM, 1, [PAM available])
605                 M4_DEFINES="$M4_DEFINES -DHAVE_PAM"
606         else
607                 have_pam=no
608         fi
609 else
610         PAM_LIBS=
611 fi
612 AC_SUBST(PAM_LIBS)
613 AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
614
615 # ------------------------------------------------------------------------------
616 AC_ARG_ENABLE([acl],
617         AS_HELP_STRING([--disable-acl],[Disable optional ACL support]),
618                 [case "${enableval}" in
619                         yes) have_acl=yes ;;
620                         no) have_acl=no ;;
621                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;;
622                 esac],
623                 [have_acl=auto])
624
625 if test "x${have_acl}" != xno ; then
626         AC_CHECK_HEADERS(
627                 [sys/acl.h acl/libacl.h],
628                 [have_acl=yes],
629                 [if test "x$have_acl" = xyes ; then
630                         AC_MSG_ERROR([*** ACL headers not found.])
631                 fi])
632
633         AC_CHECK_LIB(
634                 [acl],
635                 [acl_get_file],
636                 [have_acl=yes],
637                 [if test "x$have_acl" = xyes ; then
638                         AC_MSG_ERROR([*** libacl not found.])
639                 fi])
640
641         if test "x$have_acl" = xyes ; then
642                 ACL_LIBS="-lacl"
643                 AC_DEFINE(HAVE_ACL, 1, [ACL available])
644         else
645                 have_acl=no
646         fi
647 else
648         ACL_LIBS=
649 fi
650 AC_SUBST(ACL_LIBS)
651 AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno])
652
653 # ------------------------------------------------------------------------------
654 AC_ARG_ENABLE([smack], AS_HELP_STRING([--disable-smack],[Disable optional SMACK support]),
655                 [case "${enableval}" in
656                         yes) have_smack=yes ;;
657                         no) have_smack=no ;;
658                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-smack) ;;
659                 esac],
660                 [have_smack=auto])
661
662 if test "x${have_smack}" = xauto; then
663         M4_DEFINES="$M4_DEFINES -DHAVE_SMACK"
664         have_smack=yes
665 fi
666
667 AC_ARG_WITH(smack-run-label,
668 AS_HELP_STRING([--with-smack-run-label=STRING],
669         [run systemd --system with a specific SMACK label]),
670         [AC_DEFINE_UNQUOTED(SMACK_RUN_LABEL, ["$withval"], [Run with a smack label])],
671         [])
672
673 if test "x${have_smack}" = xyes ; then
674         AC_DEFINE(HAVE_SMACK, 1, [Define if SMACK is available])
675 fi
676
677 # ------------------------------------------------------------------------------
678 AC_ARG_ENABLE([gcrypt],
679         AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]),
680                 [case "${enableval}" in
681                         yes) have_gcrypt=yes ;;
682                         no) have_gcrypt=no ;;
683                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-gcrypt) ;;
684                 esac],
685                 [have_gcrypt=auto])
686
687 if test "x${have_gcrypt}" != xno ; then
688         AM_PATH_LIBGCRYPT(
689                 [1.4.5],
690                 [have_gcrypt=yes],
691                 [if test "x$have_gcrypt" = xyes ; then
692                         AC_MSG_ERROR([*** GCRYPT headers not found.])
693                 fi])
694
695         if test "x$have_gcrypt" = xyes ; then
696                 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
697                 GCRYPT_CFLAGS="$LIBGCRYPT_CFLAGS"
698                 AC_DEFINE(HAVE_GCRYPT, 1, [GCRYPT available])
699         else
700                 have_gcrypt=no
701         fi
702 else
703         GCRYPT_LIBS=
704         GCRYPT_CFLAGS=
705 fi
706 AC_SUBST(GCRYPT_LIBS)
707 AC_SUBST(GCRYPT_CFLAGS)
708 AM_CONDITIONAL([HAVE_GCRYPT], [test "x$have_gcrypt" != xno])
709
710 # ------------------------------------------------------------------------------
711 AC_ARG_ENABLE([audit],
712         AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]),
713                 [case "${enableval}" in
714                         yes) have_audit=yes ;;
715                         no) have_audit=no ;;
716                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;;
717                 esac],
718                 [have_audit=auto])
719
720 if test "x${have_audit}" != xno ; then
721         AC_CHECK_HEADERS(
722                 [libaudit.h],
723                 [have_audit=yes],
724                 [if test "x$have_audit" = xyes ; then
725                         AC_MSG_ERROR([*** AUDIT headers not found.])
726                 fi])
727
728         AC_CHECK_LIB(
729                 [audit],
730                 [audit_open],
731                 [have_audit=yes],
732                 [if test "x$have_audit" = xyes ; then
733                         AC_MSG_ERROR([*** libaudit not found.])
734                 fi])
735
736         if test "x$have_audit" = xyes ; then
737                 AUDIT_LIBS="-laudit"
738                 AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available])
739         else
740                 have_audit=no
741         fi
742 else
743         AUDIT_LIBS=
744 fi
745 AC_SUBST(AUDIT_LIBS)
746
747 # ------------------------------------------------------------------------------
748 AC_ARG_ENABLE([elfutils],
749         AS_HELP_STRING([--disable-elfutils],[Disable optional ELFUTILS support]),
750                 [case "${enableval}" in
751                         yes) have_elfutils=yes ;;
752                         no) have_elfutils=no ;;
753                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-elfutils) ;;
754                 esac],
755                 [have_elfutils=auto])
756
757 if test "x${have_elfutils}" != xno ; then
758         AC_CHECK_HEADERS(
759                 [elfutils/libdwfl.h],
760                 [],
761                 [if test "x$have_elfutils" = xyes ; then
762                         AC_MSG_ERROR([*** ELFUTILS headers not found.])
763                 fi])
764
765         AC_CHECK_LIB(
766                 [dw],
767                 [dwfl_begin],
768                 [],
769                 [if test "x$have_elfutils" = xyes ; then
770                         AC_MSG_ERROR([*** ELFUTILS libs not found.])
771                 fi])
772
773         AC_CHECK_LIB(
774                 [dw],
775                 [dwfl_core_file_attach],
776                 [have_elfutils=yes],
777                 [if test "x$have_elfutils" = xyes ; then
778                         AC_MSG_ERROR([*** ELFUTILS >= 158 is required.])
779                 fi])
780
781         if test "x$have_elfutils" = xyes ; then
782                 ELFUTILS_LIBS="-lelf -ldw"
783                 AC_DEFINE(HAVE_ELFUTILS, 1, [ELFUTILS available])
784         else
785                 have_elfutils=no
786         fi
787 else
788         ELFUTILS_LIBS=
789 fi
790 AC_SUBST(ELFUTILS_LIBS)
791 AM_CONDITIONAL(HAVE_ELFUTILS, [test "$have_elfutils" = "yes"])
792
793 # ------------------------------------------------------------------------------
794 have_libcryptsetup=no
795 AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
796 if test "x$enable_libcryptsetup" != "xno"; then
797         PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup >= 1.6.0 ],
798                 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
799         if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
800                 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
801         fi
802 fi
803 AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
804
805 # ------------------------------------------------------------------------------
806 have_qrencode=no
807 AC_ARG_ENABLE(qrencode, AS_HELP_STRING([--disable-qrencode], [disable qrencode support]))
808 if test "x$enable_qrencode" != "xno"; then
809         PKG_CHECK_MODULES(QRENCODE, [ libqrencode ],
810                 [AC_DEFINE(HAVE_QRENCODE, 1, [Define if qrencode is available]) have_qrencode=yes], have_qrencode=no)
811         if test "x$have_qrencode" = xno -a "x$enable_qrencode" = xyes; then
812                 AC_MSG_ERROR([*** qrencode support requested but libraries not found])
813         fi
814 fi
815 AM_CONDITIONAL(HAVE_QRENCODE, [test "$have_qrencode" = "yes"])
816
817 # ------------------------------------------------------------------------------
818 have_microhttpd=no
819 AC_ARG_ENABLE(microhttpd, AS_HELP_STRING([--disable-microhttpd], [disable microhttpd support]))
820 if test "x$enable_microhttpd" != "xno"; then
821         PKG_CHECK_MODULES(MICROHTTPD, [libmicrohttpd >= 0.9.33],
822                 [AC_DEFINE(HAVE_MICROHTTPD, 1, [Define if microhttpd is available]) have_microhttpd=yes], have_microhttpd=no)
823         if test "x$have_microhttpd" = xno -a "x$enable_microhttpd" = xyes; then
824                 AC_MSG_ERROR([*** microhttpd support requested but libraries not found])
825         fi
826 fi
827 AM_CONDITIONAL(HAVE_MICROHTTPD, [test "$have_microhttpd" = "yes"])
828
829 # ------------------------------------------------------------------------------
830 have_gnutls=no
831 AC_ARG_ENABLE(gnutls, AS_HELP_STRING([--disable-gnutls], [disable gnutls support]))
832 if test "x$enable_gnutls" != "xno"; then
833         PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.1.4],
834                 [AC_DEFINE(HAVE_GNUTLS, 1, [Define if gnutls is available]) have_gnutls=yes], have_gnutls=no)
835         if test "x$have_gnutls" = xno -a "x$enable_gnutls" = xyes; then
836                 AC_MSG_ERROR([*** gnutls support requested but libraries not found])
837         fi
838 fi
839 AM_CONDITIONAL(HAVE_GNUTLS, [test "$have_gnutls" = "yes"])
840
841 # ------------------------------------------------------------------------------
842 have_libcurl=no
843 AC_ARG_ENABLE(libcurl, AS_HELP_STRING([--disable-libcurl], [disable libcurl support]))
844 if test "x$enable_libcurl" != "xno"; then
845         PKG_CHECK_MODULES(LIBCURL, [libcurl],
846                 [AC_DEFINE(HAVE_LIBCURL, 1, [Define if libcurl is available]) have_libcurl=yes], have_libcurl=no)
847         if test "x$have_libcurl" = xno -a "x$enable_libcurl" = xyes; then
848                 AC_MSG_ERROR([*** libcurl support requested but libraries not found])
849         fi
850 fi
851 AM_CONDITIONAL(HAVE_LIBCURL, [test "$have_libcurl" = "yes"])
852
853 # ------------------------------------------------------------------------------
854 have_libidn=no
855 AC_ARG_ENABLE(libidn, AS_HELP_STRING([--disable-libidn], [Disable optional LIBIDN support]))
856 if test "x$enable_libidn" != "xno"; then
857         PKG_CHECK_MODULES(LIBIDN, [libidn],
858                [AC_DEFINE(HAVE_LIBIDN, 1, [Define if libidn is available])
859                 have_libidn=yes
860                 M4_DEFINES="$M4_DEFINES -DHAVE_LIBIDN"],
861                [have_libidn=no])
862         if test "x$have_libidn" = "xno" -a "x$enable_libidn" = "xyes"; then
863                 AC_MSG_ERROR([*** libidn support requested but libraries not found])
864         fi
865 fi
866 AM_CONDITIONAL(HAVE_LIBIDN, [test "$have_libidn" = "yes"])
867
868 # ------------------------------------------------------------------------------
869 have_binfmt=no
870 AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
871 if test "x$enable_binfmt" != "xno"; then
872         have_binfmt=yes
873 fi
874 AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
875
876 # ------------------------------------------------------------------------------
877 have_vconsole=no
878 AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool]))
879 if test "x$enable_vconsole" != "xno"; then
880         have_vconsole=yes
881 fi
882 AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"])
883
884 # ------------------------------------------------------------------------------
885 have_bootchart=no
886 AC_ARG_ENABLE(bootchart, AS_HELP_STRING([--disable-bootchart], [disable bootchart tool]))
887 if test "x$enable_bootchart" != "xno"; then
888         have_bootchart=yes
889 fi
890 AM_CONDITIONAL(ENABLE_BOOTCHART, [test "$have_bootchart" = "yes"])
891
892 # ------------------------------------------------------------------------------
893 have_quotacheck=no
894 AC_ARG_ENABLE(quotacheck, AS_HELP_STRING([--disable-quotacheck], [disable quotacheck tools]))
895 if test "x$enable_quotacheck" != "xno"; then
896         have_quotacheck=yes
897 fi
898 AM_CONDITIONAL(ENABLE_QUOTACHECK, [test "$have_quotacheck" = "yes"])
899
900 # ------------------------------------------------------------------------------
901 have_tmpfiles=no
902 AC_ARG_ENABLE(tmpfiles, AS_HELP_STRING([--disable-tmpfiles], [disable tmpfiles support]))
903 if test "x$enable_tmpfiles" != "xno"; then
904         have_tmpfiles=yes
905 fi
906 AM_CONDITIONAL(ENABLE_TMPFILES, [test "$have_tmpfiles" = "yes"])
907
908 # ------------------------------------------------------------------------------
909 have_sysusers=no
910 AC_ARG_ENABLE(sysusers, AS_HELP_STRING([--disable-sysusers], [disable sysusers support]))
911 if test "x$enable_sysusers" != "xno"; then
912         have_sysusers=yes
913 fi
914 AM_CONDITIONAL(ENABLE_SYSUSERS, [test "$have_sysusers" = "yes"])
915
916 # ------------------------------------------------------------------------------
917 have_firstboot=no
918 AC_ARG_ENABLE(firstboot, AS_HELP_STRING([--disable-firstboot], [disable firstboot support]))
919 if test "x$enable_firstboot" != "xno"; then
920         have_firstboot=yes
921 fi
922 AM_CONDITIONAL(ENABLE_FIRSTBOOT, [test "$have_firstboot" = "yes"])
923
924 # ------------------------------------------------------------------------------
925 have_randomseed=no
926 AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools]))
927 if test "x$enable_randomseed" != "xno"; then
928         have_randomseed=yes
929 fi
930 AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"])
931
932 # ------------------------------------------------------------------------------
933 have_backlight=no
934 AC_ARG_ENABLE(backlight, AS_HELP_STRING([--disable-backlight], [disable backlight tools]))
935 if test "x$enable_backlight" != "xno"; then
936         have_backlight=yes
937 fi
938 AM_CONDITIONAL(ENABLE_BACKLIGHT, [test "$have_backlight" = "yes"])
939
940 # ------------------------------------------------------------------------------
941 have_rfkill=no
942 AC_ARG_ENABLE(rfkill, AS_HELP_STRING([--disable-rfkill], [disable rfkill tools]))
943 if test "x$enable_rfkill" != "xno"; then
944         have_rfkill=yes
945 fi
946 AM_CONDITIONAL(ENABLE_RFKILL, [test "$have_rfkill" = "yes"])
947
948 # ------------------------------------------------------------------------------
949 have_logind=no
950 AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon]))
951 if test "x$enable_logind" != "xno"; then
952         have_logind=yes
953 fi
954 AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"])
955 AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ])
956
957 # ------------------------------------------------------------------------------
958 have_machined=no
959 AC_ARG_ENABLE(machined, AS_HELP_STRING([--disable-machined], [disable machine daemon]))
960 if test "x$enable_machined" != "xno"; then
961         have_machined=yes
962 fi
963 AM_CONDITIONAL(ENABLE_MACHINED, [test "$have_machined" = "yes"])
964 AS_IF([test "$have_machined" = "yes"], [ AC_DEFINE(HAVE_MACHINED, [1], [Machined support available]) ])
965
966 # ------------------------------------------------------------------------------
967 have_hostnamed=no
968 AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon]))
969 if test "x$enable_hostnamed" != "xno"; then
970         have_hostnamed=yes
971 fi
972 AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"])
973
974 # ------------------------------------------------------------------------------
975 have_timedated=no
976 AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon]))
977 if test "x$enable_timedated" != "xno"; then
978         have_timedated=yes
979 fi
980 AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
981
982 # ------------------------------------------------------------------------------
983 have_timesyncd=no
984 AC_ARG_ENABLE(timesyncd, AS_HELP_STRING([--disable-timesyncd], [disable timesync daemon]))
985 if test "x$enable_timesyncd" != "xno"; then
986         have_timesyncd=yes
987 fi
988 AM_CONDITIONAL(ENABLE_TIMESYNCD, [test "$have_timesyncd" = "yes"])
989
990 AC_ARG_WITH(ntp-servers,
991         AS_HELP_STRING([--with-ntp-servers=NTPSERVERS],
992                 [Space-separated list of default NTP servers]),
993         [NTP_SERVERS="$withval"],
994         [NTP_SERVERS="time1.google.com time2.google.com time3.google.com time4.google.com"])
995
996 AC_DEFINE_UNQUOTED(NTP_SERVERS, ["$NTP_SERVERS"], [Default NTP Servers])
997 AC_SUBST(NTP_SERVERS)
998
999 AC_ARG_WITH(time-epoch,
1000         AS_HELP_STRING([--with-time-epoch=SECONDS],
1001                 [Time epoch for time clients]),
1002         [TIME_EPOCH="$withval"],
1003         [TIME_EPOCH="`stat -c %Y ${srcdir}/NEWS 2>/dev/null || echo 0`"])
1004
1005 AC_DEFINE_UNQUOTED(TIME_EPOCH, [$TIME_EPOCH], [Time Epoch])
1006
1007 # ------------------------------------------------------------------------------
1008 AC_ARG_WITH(system-uid-max,
1009         AS_HELP_STRING([--with-system-uid-max=UID]
1010                 [Maximum UID for system users]),
1011         [SYSTEM_UID_MAX="$withval"],
1012         [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`"])
1013
1014 AC_DEFINE_UNQUOTED(SYSTEM_UID_MAX, [$SYSTEM_UID_MAX], [Maximum System UID])
1015 AC_SUBST(SYSTEM_UID_MAX)
1016
1017 # ------------------------------------------------------------------------------
1018 AC_ARG_WITH(system-gid-max,
1019         AS_HELP_STRING([--with-system-gid-max=GID]
1020                 [Maximum GID for system groups]),
1021         [SYSTEM_GID_MAX="$withval"],
1022         [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`"])
1023
1024 AC_DEFINE_UNQUOTED(SYSTEM_GID_MAX, [$SYSTEM_GID_MAX], [Maximum System GID])
1025 AC_SUBST(SYSTEM_GID_MAX)
1026
1027 # ------------------------------------------------------------------------------
1028 have_localed=no
1029 AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))
1030 if test "x$enable_localed" != "xno"; then
1031         have_localed=yes
1032 fi
1033 AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"])
1034
1035 # ------------------------------------------------------------------------------
1036 have_coredump=no
1037 AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook]))
1038 if test "x$enable_coredump" != "xno"; then
1039         have_coredump=yes
1040 fi
1041 AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"])
1042
1043 # ------------------------------------------------------------------------------
1044 have_polkit=no
1045 AC_ARG_ENABLE(polkit, AS_HELP_STRING([--disable-polkit], [disable PolicyKit support]))
1046 if test "x$enable_polkit" != "xno"; then
1047         AC_DEFINE(ENABLE_POLKIT, 1, [Define if PolicyKit support is to be enabled])
1048         have_polkit=yes
1049 fi
1050 AM_CONDITIONAL(ENABLE_POLKIT, [test "x$have_polkit" = "xyes"])
1051
1052 # ------------------------------------------------------------------------------
1053 have_resolved=no
1054 AC_ARG_ENABLE(resolved, AS_HELP_STRING([--disable-resolved], [disable resolve daemon]))
1055 if test "x$enable_resolved" != "xno"; then
1056         have_resolved=yes
1057         M4_DEFINES="$M4_DEFINES -DENABLE_RESOLVED"
1058 fi
1059 AM_CONDITIONAL(ENABLE_RESOLVED, [test "$have_resolved" = "yes"])
1060
1061 AC_ARG_WITH(dns-servers,
1062         AS_HELP_STRING([--with-dns-servers=DNSSERVERS],
1063                 [Space-separated list of default DNS servers]),
1064         [DNS_SERVERS="$withval"],
1065         [DNS_SERVERS="8.8.8.8 8.8.4.4 2001:4860:4860::8888 2001:4860:4860::8844"])
1066
1067 AC_DEFINE_UNQUOTED(DNS_SERVERS, ["$DNS_SERVERS"], [Default DNS Servers])
1068 AC_SUBST(DNS_SERVERS)
1069
1070 # ------------------------------------------------------------------------------
1071 have_networkd=no
1072 AC_ARG_ENABLE(networkd, AS_HELP_STRING([--disable-networkd], [disable networkd]))
1073 AS_IF([test "x$enable_networkd" != "xno"], [
1074         AC_DEFINE(ENABLE_NETWORKD, 1, [Define if networkd support is to be enabled])
1075         have_networkd=yes
1076 ])
1077 AM_CONDITIONAL(ENABLE_NETWORKD, [test "x$have_networkd" = "xyes"])
1078
1079 # ------------------------------------------------------------------------------
1080 have_efi=no
1081 AC_ARG_ENABLE(efi, AS_HELP_STRING([--disable-efi], [disable EFI support]))
1082 if test "x$enable_efi" != "xno"; then
1083         AC_DEFINE(ENABLE_EFI, 1, [Define if EFI support is to be enabled])
1084         have_efi=yes
1085 fi
1086 AM_CONDITIONAL(ENABLE_EFI, [test "x$have_efi" = "xyes"])
1087
1088 # ------------------------------------------------------------------------------
1089 have_terminal=no
1090 AC_ARG_ENABLE(terminal, AS_HELP_STRING([--enable-terminal], [enable terminal support]))
1091 if test "x$enable_terminal" = "xyes"; then
1092         PKG_CHECK_MODULES([TERMINAL], [ libevdev >= 1.2 xkbcommon >= 0.5 libdrm >= 2.4], [have_terminal=yes])
1093         AS_IF([test "x$have_terminal" != xyes -a "x$enable_terminal" = xyes],
1094               [AC_MSG_ERROR([*** terminal support requested but required dependencies not available])],
1095               [test "x$have_terminal" = 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"])
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 have_manpages=no
1189 AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
1190 AS_IF([test "x$enable_manpages" != xno], [have_manpages=yes])
1191 AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
1192
1193 # ------------------------------------------------------------------------------
1194 AC_ARG_ENABLE(hibernate,
1195        [AC_HELP_STRING([--disable-hibernate], [disable hibernation support])],
1196        enable_hibernate=$enableval, enable_hibernate=yes)
1197 AM_CONDITIONAL(ENABLE_HIBERNATE, [test x$enable_hibernate = xyes])
1198
1199 # ------------------------------------------------------------------------------
1200 AC_ARG_ENABLE(ldconfig,
1201        [AC_HELP_STRING([--disable-ldconfig], [disable ldconfig])],
1202        enable_ldconfig=$enableval, enable_ldconfig=yes)
1203 AM_CONDITIONAL(ENABLE_LDCONFIG, [test x$enable_ldconfig = xyes])
1204
1205 # ------------------------------------------------------------------------------
1206 # Location of the init scripts as mandated by LSB
1207 SYSTEM_SYSVINIT_PATH=/etc/init.d
1208 SYSTEM_SYSVRCND_PATH=/etc/rc.d
1209
1210 AC_ARG_WITH([sysvinit-path],
1211         [AS_HELP_STRING([--with-sysvinit-path=PATH],
1212                 [Specify the path to where the SysV init scripts are located])],
1213         [SYSTEM_SYSVINIT_PATH="$withval"],
1214         [])
1215
1216 AC_ARG_WITH([sysvrcnd-path],
1217         [AS_HELP_STRING([--with-sysvrcnd-path=PATH],
1218                 [Specify the path to the base directory for the SysV rcN.d directories])],
1219         [SYSTEM_SYSVRCND_PATH="$withval"],
1220         [])
1221
1222 if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
1223         AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.])
1224         SYSTEM_SYSV_COMPAT="yes"
1225         M4_DEFINES="$M4_DEFINES -DHAVE_SYSV_COMPAT"
1226 elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
1227         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.])
1228 else
1229         SYSTEM_SYSV_COMPAT="no"
1230 fi
1231
1232 AC_SUBST(SYSTEM_SYSVINIT_PATH)
1233 AC_SUBST(SYSTEM_SYSVRCND_PATH)
1234 AC_SUBST(M4_DEFINES)
1235
1236 AM_CONDITIONAL(HAVE_SYSV_COMPAT, test "$SYSTEM_SYSV_COMPAT" = "yes")
1237
1238 AC_ARG_WITH([tty-gid],
1239         [AS_HELP_STRING([--with-tty-gid=GID],
1240                 [Specify the numeric GID of the 'tty' group])],
1241         [TTY_GID="$withval"],
1242         [TTY_GID="5"])
1243
1244 AC_DEFINE_UNQUOTED(TTY_GID, [$TTY_GID], [GID of the 'tty' group])
1245 AC_SUBST(TTY_GID)
1246
1247 AC_ARG_WITH([dbuspolicydir],
1248         AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
1249         [],
1250         [with_dbuspolicydir=$($PKG_CONFIG --variable=sysconfdir dbus-1)/dbus-1/system.d])
1251
1252 AC_ARG_WITH([dbussessionservicedir],
1253         AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
1254         [],
1255         [with_dbussessionservicedir=$($PKG_CONFIG --variable=session_bus_services_dir dbus-1)])
1256
1257 AC_ARG_WITH([dbussystemservicedir],
1258         AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
1259         [],
1260         [with_dbussystemservicedir=$(readlink -m $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../system-services)])
1261
1262 AC_ARG_WITH([dbusinterfacedir],
1263         AS_HELP_STRING([--with-dbusinterfacedir=DIR], [D-Bus interface directory]),
1264         [],
1265         [with_dbusinterfacedir=$(readlink -m $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../interfaces)])
1266
1267 AC_ARG_WITH([bashcompletiondir],
1268         AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
1269         [],
1270         [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
1271                 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
1272         ] , [
1273                 with_bashcompletiondir=${datadir}/bash-completion/completions
1274         ])])
1275
1276 AC_ARG_WITH([zshcompletiondir],
1277         AS_HELP_STRING([--with-zshcompletiondir=DIR], [Zsh completions directory]),
1278         [], [with_zshcompletiondir=${datadir}/zsh/site-functions])
1279
1280 AC_ARG_WITH([rootprefix],
1281         AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
1282         [], [with_rootprefix=${ac_default_prefix}])
1283
1284 AC_ARG_WITH([rootlibdir],
1285         AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
1286         [],
1287         [with_rootlibdir=${libdir}])
1288
1289 AC_ARG_WITH([pamlibdir],
1290         AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]),
1291         [],
1292         [with_pamlibdir=${with_rootlibdir}/security])
1293
1294 AC_ARG_WITH([pamconfdir],
1295         AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration]),
1296         [],
1297         [with_pamconfdir=${sysconfdir}/pam.d])
1298
1299 AC_ARG_ENABLE([split-usr],
1300         AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]),
1301         [],
1302         [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [
1303                 enable_split_usr=yes
1304         ], [
1305                 enable_split_usr=no
1306         ])])
1307
1308 AS_IF([test "x${enable_split_usr}" = "xyes"], [
1309         AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr])
1310 ])
1311
1312 # Work around intltoolize and gtk-doc problems in VPATH builds
1313 AM_CONDITIONAL([ENABLE_GTK_DOC_TESTS], [test "x$0" = "x./configure"],
1314                                        [Define to do gtk-doc tests])
1315 AS_IF([test "x$0" != "x./configure"], [
1316         AC_SUBST([INTLTOOL_UPDATE], [/bin/true])
1317 ])
1318
1319 AC_ARG_ENABLE(tests,
1320        [AC_HELP_STRING([--disable-tests], [disable tests])],
1321        enable_tests=$enableval, enable_tests=yes)
1322 AM_CONDITIONAL(ENABLE_TESTS, [test x$enable_tests = xyes])
1323
1324 AC_ARG_ENABLE(hashmap-debug,
1325        [AC_HELP_STRING([--enable-hashmap-debug], [enable hashmap debugging])],
1326        enable_hashmap_debug=$enableval, enable_hashmap_debug=no)
1327 AS_IF([test x$enable_hashmap_debug = xyes], [
1328         AC_DEFINE(ENABLE_HASHMAP_DEBUG, 1, [Define if hashmap debugging is to be enabled])
1329 ])
1330
1331 AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
1332 AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
1333 AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
1334 AC_SUBST([dbusinterfacedir], [$with_dbusinterfacedir])
1335 AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
1336 AC_SUBST([zshcompletiondir], [$with_zshcompletiondir])
1337 AC_SUBST([pamlibdir], [$with_pamlibdir])
1338 AC_SUBST([pamconfdir], [$with_pamconfdir])
1339 AC_SUBST([rootprefix], [$with_rootprefix])
1340 AC_SUBST([rootlibdir], [$with_rootlibdir])
1341
1342 AC_CONFIG_FILES([
1343         Makefile po/Makefile.in
1344         docs/libudev/Makefile
1345         docs/libudev/version.xml
1346         docs/gudev/Makefile
1347         docs/gudev/version.xml
1348 ])
1349
1350 AC_OUTPUT
1351 AC_MSG_RESULT([
1352         $PACKAGE_NAME $VERSION
1353
1354         libcryptsetup:           ${have_libcryptsetup}
1355         PAM:                     ${have_pam}
1356         AUDIT:                   ${have_audit}
1357         IMA:                     ${have_ima}
1358         AppArmor:                ${have_apparmor}
1359         SELinux:                 ${have_selinux}
1360         SECCOMP:                 ${have_seccomp}
1361         SMACK:                   ${have_smack}
1362         XZ:                      ${have_xz}
1363         LZ4:                     ${have_lz4}
1364         ACL:                     ${have_acl}
1365         GCRYPT:                  ${have_gcrypt}
1366         QRENCODE:                ${have_qrencode}
1367         MICROHTTPD:              ${have_microhttpd}
1368         CHKCONFIG:               ${have_chkconfig}
1369         GNUTLS:                  ${have_gnutls}
1370         libcurl:                 ${have_libcurl}
1371         libidn:                  ${have_libidn}
1372         ELFUTILS:                ${have_elfutils}
1373         binfmt:                  ${have_binfmt}
1374         vconsole:                ${have_vconsole}
1375         bootchart:               ${have_bootchart}
1376         quotacheck:              ${have_quotacheck}
1377         tmpfiles:                ${have_tmpfiles}
1378         sysusers:                ${have_sysusers}
1379         firstboot:               ${have_firstboot}
1380         randomseed:              ${have_randomseed}
1381         backlight:               ${have_backlight}
1382         rfkill:                  ${have_rfkill}
1383         logind:                  ${have_logind}
1384         machined:                ${have_machined}
1385         hostnamed:               ${have_hostnamed}
1386         timedated:               ${have_timedated}
1387         timesyncd:               ${have_timesyncd}
1388         default NTP servers:     ${NTP_SERVERS}
1389         time epoch:              ${TIME_EPOCH}
1390         localed:                 ${have_localed}
1391         networkd:                ${have_networkd}
1392         resolved:                ${have_resolved}
1393         default DNS servers:     ${DNS_SERVERS}
1394         coredump:                ${have_coredump}
1395         polkit:                  ${have_polkit}
1396         efi:                     ${have_efi}
1397         kmod:                    ${have_kmod}
1398         xkbcommon:               ${have_xkbcommon}
1399         blkid:                   ${have_blkid}
1400         libmount:                ${have_libmount}
1401         dbus:                    ${have_dbus}
1402         nss-myhostname:          ${have_myhostname}
1403         gudev:                   ${enable_gudev}
1404         gintrospection:          ${enable_introspection}
1405         terminal:                ${have_terminal}
1406         kdbus:                   ${have_kdbus}
1407         Python:                  ${have_python}
1408         Python Headers:          ${have_python_devel}
1409         man pages:               ${have_manpages}
1410         gtk-doc:                 ${enable_gtk_doc}
1411         test coverage:           ${have_coverage}
1412         Split /usr:              ${enable_split_usr}
1413         SysV compatibility:      ${SYSTEM_SYSV_COMPAT}
1414         compatibility libraries: ${have_compat_libs}
1415         utmp/wtmp support:       ${have_utmp}
1416
1417         prefix:                  ${prefix}
1418         rootprefix:              ${with_rootprefix}
1419         sysconf dir:             ${sysconfdir}
1420         datarootdir:             ${datarootdir}
1421         includedir:              ${includedir}
1422         include_prefix:          ${INCLUDE_PREFIX}
1423         lib dir:                 ${libdir}
1424         rootlib dir:             ${with_rootlibdir}
1425         SysV init scripts:       ${SYSTEM_SYSVINIT_PATH}
1426         SysV rc?.d directories:  ${SYSTEM_SYSVRCND_PATH}
1427         Build Python:            ${PYTHON}
1428         Installation Python:     ${PYTHON_BINARY}
1429         sphinx binary:           ${SPHINX_BUILD}
1430         PAM modules dir:         ${with_pamlibdir}
1431         PAM configuration dir:   ${with_pamconfdir}
1432         D-Bus policy dir:        ${with_dbuspolicydir}
1433         D-Bus session dir:       ${with_dbussessionservicedir}
1434         D-Bus system dir:        ${with_dbussystemservicedir}
1435         D-Bus interfaces dir:    ${with_dbusinterfacedir}
1436         Bash completions dir:    ${with_bashcompletiondir}
1437         Zsh completions dir:     ${with_zshcompletiondir}
1438         Extra start script:      ${RC_LOCAL_SCRIPT_PATH_START}
1439         Extra stop script:       ${RC_LOCAL_SCRIPT_PATH_STOP}
1440         Debug shell:             ${SUSHELL} @ ${DEBUGTTY}
1441         TTY GID:                 ${TTY_GID}
1442         Maximum System UID:      ${SYSTEM_UID_MAX}
1443         Maximum System GID:      ${SYSTEM_GID_MAX}
1444         Certificate root:        ${CERTIFICATEROOT}
1445
1446         CFLAGS:                  ${OUR_CFLAGS} ${CFLAGS}
1447         CPPFLAGS:                ${OUR_CPPFLAGS} ${CPPFLAGS}
1448         LDFLAGS:                 ${OUR_LDFLAGS} ${LDFLAGS}
1449         PYTHON_CFLAGS:           ${PYTHON_DEVEL_CFLAGS}
1450         PYTHON_LIBS:             ${PYTHON_DEVEL_LIBS}
1451 ])