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