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