chiark / gitweb /
Gut Makefile.am
[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_binfmt=no
896 AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
897 if test "x$enable_binfmt" != "xno"; then
898         have_binfmt=yes
899 fi
900 AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
901
902 # ------------------------------------------------------------------------------
903 have_vconsole=no
904 AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool]))
905 if test "x$enable_vconsole" != "xno"; then
906         have_vconsole=yes
907 fi
908 AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"])
909
910 # ------------------------------------------------------------------------------
911 have_bootchart=no
912 AC_ARG_ENABLE(bootchart, AS_HELP_STRING([--disable-bootchart], [disable bootchart tool]))
913 if test "x$enable_bootchart" != "xno"; then
914         have_bootchart=yes
915 fi
916 AM_CONDITIONAL(ENABLE_BOOTCHART, [test "$have_bootchart" = "yes"])
917
918 # ------------------------------------------------------------------------------
919 have_quotacheck=no
920 AC_ARG_ENABLE(quotacheck, AS_HELP_STRING([--disable-quotacheck], [disable quotacheck tools]))
921 if test "x$enable_quotacheck" != "xno"; then
922         have_quotacheck=yes
923 fi
924 AM_CONDITIONAL(ENABLE_QUOTACHECK, [test "$have_quotacheck" = "yes"])
925
926 # ------------------------------------------------------------------------------
927 have_tmpfiles=no
928 AC_ARG_ENABLE(tmpfiles, AS_HELP_STRING([--disable-tmpfiles], [disable tmpfiles support]))
929 if test "x$enable_tmpfiles" != "xno"; then
930         have_tmpfiles=yes
931 fi
932 AM_CONDITIONAL(ENABLE_TMPFILES, [test "$have_tmpfiles" = "yes"])
933
934 # ------------------------------------------------------------------------------
935 have_sysusers=no
936 AC_ARG_ENABLE(sysusers, AS_HELP_STRING([--disable-sysusers], [disable sysusers support]))
937 if test "x$enable_sysusers" != "xno"; then
938         have_sysusers=yes
939 fi
940 AM_CONDITIONAL(ENABLE_SYSUSERS, [test "$have_sysusers" = "yes"])
941
942 # ------------------------------------------------------------------------------
943 have_firstboot=no
944 AC_ARG_ENABLE(firstboot, AS_HELP_STRING([--disable-firstboot], [disable firstboot support]))
945 if test "x$enable_firstboot" != "xno"; then
946         have_firstboot=yes
947 fi
948 AM_CONDITIONAL(ENABLE_FIRSTBOOT, [test "$have_firstboot" = "yes"])
949
950 # ------------------------------------------------------------------------------
951 have_randomseed=no
952 AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools]))
953 if test "x$enable_randomseed" != "xno"; then
954         have_randomseed=yes
955 fi
956 AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"])
957
958 # ------------------------------------------------------------------------------
959 have_backlight=no
960 AC_ARG_ENABLE(backlight, AS_HELP_STRING([--disable-backlight], [disable backlight tools]))
961 if test "x$enable_backlight" != "xno"; then
962         have_backlight=yes
963 fi
964 AM_CONDITIONAL(ENABLE_BACKLIGHT, [test "$have_backlight" = "yes"])
965
966 # ------------------------------------------------------------------------------
967 have_rfkill=no
968 AC_ARG_ENABLE(rfkill, AS_HELP_STRING([--disable-rfkill], [disable rfkill tools]))
969 if test "x$enable_rfkill" != "xno"; then
970         have_rfkill=yes
971 fi
972 AM_CONDITIONAL(ENABLE_RFKILL, [test "$have_rfkill" = "yes"])
973
974 # ------------------------------------------------------------------------------
975 have_logind=no
976 AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon]))
977 if test "x$enable_logind" != "xno"; then
978         have_logind=yes
979 fi
980 AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"])
981 AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ])
982
983 # ------------------------------------------------------------------------------
984 have_machined=no
985 AC_ARG_ENABLE(machined, AS_HELP_STRING([--disable-machined], [disable machine daemon]))
986 if test "x$enable_machined" != "xno"; then
987         have_machined=yes
988 fi
989 AM_CONDITIONAL(ENABLE_MACHINED, [test "$have_machined" = "yes"])
990 AS_IF([test "$have_machined" = "yes"], [ AC_DEFINE(HAVE_MACHINED, [1], [Machined support available]) ])
991
992 # ------------------------------------------------------------------------------
993 have_importd=no
994 AC_ARG_ENABLE(importd, AS_HELP_STRING([--disable-importd], [disable import daemon]))
995 if test "x$enable_importd" != "xno"; then
996         have_importd=yes
997 fi
998 AM_CONDITIONAL(ENABLE_IMPORTD, [test "$have_importd" = "yes"])
999 AS_IF([test "$have_importd" = "yes"], [ AC_DEFINE(HAVE_IMPORTD, [1], [Importd support available]) ])
1000
1001 # ------------------------------------------------------------------------------
1002 have_hostnamed=no
1003 AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon]))
1004 if test "x$enable_hostnamed" != "xno"; then
1005         have_hostnamed=yes
1006 fi
1007 AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"])
1008
1009 # ------------------------------------------------------------------------------
1010 have_timedated=no
1011 AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon]))
1012 if test "x$enable_timedated" != "xno"; then
1013         have_timedated=yes
1014 fi
1015 AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
1016
1017 # ------------------------------------------------------------------------------
1018 have_timesyncd=no
1019 AC_ARG_ENABLE(timesyncd, AS_HELP_STRING([--disable-timesyncd], [disable timesync daemon]))
1020 if test "x$enable_timesyncd" != "xno"; then
1021         have_timesyncd=yes
1022         M4_DEFINES="$M4_DEFINES -DENABLE_TIMESYNCD"
1023 fi
1024 AM_CONDITIONAL(ENABLE_TIMESYNCD, [test "$have_timesyncd" = "yes"])
1025
1026 AC_ARG_WITH(ntp-servers,
1027         AS_HELP_STRING([--with-ntp-servers=NTPSERVERS],
1028                 [Space-separated list of default NTP servers]),
1029         [NTP_SERVERS="$withval"],
1030         [NTP_SERVERS="time1.google.com time2.google.com time3.google.com time4.google.com"])
1031
1032 AC_DEFINE_UNQUOTED(NTP_SERVERS, ["$NTP_SERVERS"], [Default NTP Servers])
1033 AC_SUBST(NTP_SERVERS)
1034
1035 AC_ARG_WITH(time-epoch,
1036         AS_HELP_STRING([--with-time-epoch=SECONDS],
1037                 [Time epoch for time clients]),
1038         [TIME_EPOCH="$withval"],
1039         [TIME_EPOCH="`stat -c %Y ${srcdir}/NEWS 2>/dev/null || echo 0`"])
1040
1041 AC_DEFINE_UNQUOTED(TIME_EPOCH, [$TIME_EPOCH], [Time Epoch])
1042
1043 # ------------------------------------------------------------------------------
1044 AC_ARG_WITH(system-uid-max,
1045         AS_HELP_STRING([--with-system-uid-max=UID]
1046                 [Maximum UID for system users]),
1047         [SYSTEM_UID_MAX="$withval"],
1048         [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`"])
1049
1050 AC_DEFINE_UNQUOTED(SYSTEM_UID_MAX, [$SYSTEM_UID_MAX], [Maximum System UID])
1051 AC_SUBST(SYSTEM_UID_MAX)
1052
1053 # ------------------------------------------------------------------------------
1054 AC_ARG_WITH(system-gid-max,
1055         AS_HELP_STRING([--with-system-gid-max=GID]
1056                 [Maximum GID for system groups]),
1057         [SYSTEM_GID_MAX="$withval"],
1058         [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`"])
1059
1060 AC_DEFINE_UNQUOTED(SYSTEM_GID_MAX, [$SYSTEM_GID_MAX], [Maximum System GID])
1061 AC_SUBST(SYSTEM_GID_MAX)
1062
1063 # ------------------------------------------------------------------------------
1064 have_localed=no
1065 AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))
1066 if test "x$enable_localed" != "xno"; then
1067         have_localed=yes
1068 fi
1069 AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"])
1070
1071 # ------------------------------------------------------------------------------
1072 have_coredump=no
1073 AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook]))
1074 if test "x$enable_coredump" != "xno"; then
1075         have_coredump=yes
1076 fi
1077 AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"])
1078
1079 # ------------------------------------------------------------------------------
1080 have_polkit=no
1081 AC_ARG_ENABLE(polkit, AS_HELP_STRING([--disable-polkit], [disable PolicyKit support]))
1082 if test "x$enable_polkit" != "xno"; then
1083         AC_DEFINE(ENABLE_POLKIT, 1, [Define if PolicyKit support is to be enabled])
1084         have_polkit=yes
1085 fi
1086 AM_CONDITIONAL(ENABLE_POLKIT, [test "x$have_polkit" = "xyes"])
1087
1088 # ------------------------------------------------------------------------------
1089 have_resolved=no
1090 AC_ARG_ENABLE(resolved, AS_HELP_STRING([--disable-resolved], [disable resolve daemon]))
1091 if test "x$enable_resolved" != "xno"; then
1092         have_resolved=yes
1093         M4_DEFINES="$M4_DEFINES -DENABLE_RESOLVED"
1094 fi
1095 AM_CONDITIONAL(ENABLE_RESOLVED, [test "$have_resolved" = "yes"])
1096
1097 AC_ARG_WITH(dns-servers,
1098         AS_HELP_STRING([--with-dns-servers=DNSSERVERS],
1099                 [Space-separated list of default DNS servers]),
1100         [DNS_SERVERS="$withval"],
1101         [DNS_SERVERS="8.8.8.8 8.8.4.4 2001:4860:4860::8888 2001:4860:4860::8844"])
1102
1103 AC_DEFINE_UNQUOTED(DNS_SERVERS, ["$DNS_SERVERS"], [Default DNS Servers])
1104 AC_SUBST(DNS_SERVERS)
1105
1106 # ------------------------------------------------------------------------------
1107 have_networkd=no
1108 AC_ARG_ENABLE(networkd, AS_HELP_STRING([--disable-networkd], [disable networkd]))
1109 AS_IF([test "x$enable_networkd" != "xno"], [
1110         AC_DEFINE(ENABLE_NETWORKD, 1, [Define if networkd support is to be enabled])
1111         have_networkd=yes
1112         M4_DEFINES="$M4_DEFINES -DENABLE_NETWORKD"
1113 ])
1114 AM_CONDITIONAL(ENABLE_NETWORKD, [test "x$have_networkd" = "xyes"])
1115
1116 # ------------------------------------------------------------------------------
1117 have_efi=no
1118 AC_ARG_ENABLE(efi, AS_HELP_STRING([--disable-efi], [disable EFI support]))
1119 if test "x$enable_efi" != "xno"; then
1120         AC_DEFINE(ENABLE_EFI, 1, [Define if EFI support is to be enabled])
1121         have_efi=yes
1122 fi
1123 AM_CONDITIONAL(ENABLE_EFI, [test "x$have_efi" = "xyes"])
1124
1125 # ------------------------------------------------------------------------------
1126 EFI_CC=gcc
1127 AC_SUBST([EFI_CC])
1128
1129 EFI_ARCH=`echo $host | sed "s/\(-\).*$//"`
1130
1131 AM_COND_IF(ARCH_IA32, [
1132         EFI_ARCH=ia32
1133         EFI_MACHINE_TYPE_NAME=ia32])
1134
1135 AM_COND_IF(ARCH_X86_64, [
1136         EFI_MACHINE_TYPE_NAME=x64])
1137
1138 AC_SUBST([EFI_ARCH])
1139 AC_SUBST([EFI_MACHINE_TYPE_NAME])
1140
1141 have_gnuefi=no
1142 AC_ARG_ENABLE(gnuefi, AS_HELP_STRING([--enable-gnuefi], [Disable optional gnuefi support]))
1143 AS_IF([test "x$enable_gnuefi" != "xno"], [
1144         AC_CHECK_HEADERS(efi/${EFI_ARCH}/efibind.h,
1145                 [AC_DEFINE(HAVE_GNUEFI, 1, [Define if gnuefi is available])
1146                  have_gnuefi=yes],
1147                 [AS_IF([test "x$enable_gnuefi" = xyes],
1148                        [AC_MSG_ERROR([*** gnuefi support requested but headers not found])])
1149         ])
1150
1151         efiroot=$(echo $(cd /usr/lib/$(gcc -print-multi-os-directory); pwd))
1152
1153         EFI_LIB_DIR="$efiroot"
1154         AC_ARG_WITH(efi-libdir,
1155                 AS_HELP_STRING([--with-efi-libdir=PATH], [Path to EFI lib directory]),
1156                 [EFI_LIB_DIR="$withval"], [EFI_LIB_DIR="$efiroot"]
1157         )
1158         AC_SUBST([EFI_LIB_DIR])
1159
1160         have_efi_lds=no
1161         AC_ARG_WITH(efi-ldsdir,
1162                 AS_HELP_STRING([--with-efi-ldsdir=PATH], [Path to EFI lds directory]),
1163                 [EFI_LDS_DIR="$withval" && AC_CHECK_FILE([${EFI_LDS_DIR}/elf_${EFI_ARCH}_efi.lds],
1164                         [have_efi_lds=yes])],
1165                 [AS_FOR([DIR], [EFI_LDS_DIR], ["${efiroot}/gnuefi" "${efiroot}"],
1166                         [AC_CHECK_FILE([${EFI_LDS_DIR}/elf_${EFI_ARCH}_efi.lds],
1167                                        [have_efi_lds=yes && break])])])
1168         AS_IF([test "x$have_efi_lds" = xyes],
1169               [AC_SUBST([EFI_LDS_DIR])],
1170               [AS_IF([test "x$enable_gnuefi" = xyes],
1171                      [AC_MSG_ERROR([*** gnuefi support requested but files not found])],
1172                      [have_gnuefi=no])])
1173
1174         AC_ARG_WITH(efi-includedir,
1175                 AS_HELP_STRING([--with-efi-includedir=PATH], [Path to EFI include directory]),
1176                 [EFI_INC_DIR="$withval"], [EFI_INC_DIR="/usr/include"]
1177         )
1178         AC_SUBST([EFI_INC_DIR])
1179 ])
1180 AM_CONDITIONAL(HAVE_GNUEFI, [test "x$have_gnuefi" = xyes])
1181
1182 # ------------------------------------------------------------------------------
1183 AC_ARG_WITH(unifont,
1184         AS_HELP_STRING([--with-unifont=PATH],
1185                 [Path to unifont.hex]),
1186         [UNIFONT="$withval"],
1187         [UNIFONT="/usr/share/unifont/unifont.hex"])
1188 AC_SUBST(UNIFONT)
1189
1190 have_terminal=no
1191 have_unifont=no
1192 AC_ARG_ENABLE(terminal, AS_HELP_STRING([--enable-terminal], [enable terminal support]))
1193 if test "x$enable_terminal" = "xyes"; then
1194         PKG_CHECK_MODULES([TERMINAL], [ libevdev >= 1.2 xkbcommon >= 0.5 libdrm >= 2.4], [have_terminal=yes])
1195         AC_CHECK_FILE($UNIFONT, [have_unifont=yes])
1196         AS_IF([test "x$have_terminal" != xyes -o "x$have_unifont" != "xyes" -a "x$enable_terminal" = xyes],
1197               [AC_MSG_ERROR([*** terminal support requested but required dependencies not available])],
1198               [test "x$have_terminal" = xyes -a "x$have_unifont" = "xyes"],
1199               [AC_DEFINE(ENABLE_TERMINAL, 1, [Define if terminal support is to be enabled])])
1200 fi
1201 AM_CONDITIONAL(ENABLE_TERMINAL, [test "x$have_terminal" = "xyes" -a "x$have_unifont" = "xyes"])
1202
1203 # ------------------------------------------------------------------------------
1204 have_kdbus=no
1205 AC_ARG_ENABLE(kdbus, AS_HELP_STRING([--enable-kdbus], [do connect to kdbus by default]))
1206 if test "x$enable_kdbus" = "xyes"; then
1207         AC_DEFINE(ENABLE_KDBUS, 1, [Define if kdbus support is to be enabled])
1208         have_kdbus=yes
1209         M4_DEFINES="$M4_DEFINES -DENABLE_KDBUS"
1210 fi
1211 AM_CONDITIONAL(ENABLE_KDBUS, [test "$have_kdbus" = "yes"])
1212
1213 # ------------------------------------------------------------------------------
1214 AC_ARG_WITH(rc-local-script-path-start,
1215         AS_HELP_STRING([--with-rc-local-script-path-start=PATH],
1216                 [Path to /etc/rc.local]),
1217         [RC_LOCAL_SCRIPT_PATH_START="$withval"],
1218         [RC_LOCAL_SCRIPT_PATH_START="/etc/rc.local"])
1219
1220 AC_ARG_WITH(rc-local-script-path-stop,
1221         AS_HELP_STRING([--with-rc-local-script-path-stop=PATH],
1222                 [Path to /usr/sbin/halt.local]),
1223         [RC_LOCAL_SCRIPT_PATH_STOP="$withval"],
1224         [RC_LOCAL_SCRIPT_PATH_STOP="/usr/sbin/halt.local"])
1225
1226 AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_START, ["$RC_LOCAL_SCRIPT_PATH_START"], [Path of /etc/rc.local script])
1227 AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_STOP, ["$RC_LOCAL_SCRIPT_PATH_STOP"], [Path of /usr/sbin/halt.local script])
1228
1229 AC_SUBST(RC_LOCAL_SCRIPT_PATH_START)
1230 AC_SUBST(RC_LOCAL_SCRIPT_PATH_STOP)
1231
1232 # ------------------------------------------------------------------------------
1233 AC_ARG_WITH(kbd-loadkeys,
1234         AS_HELP_STRING([--with-kbd-loadkeys=PATH],
1235                 [Path to loadkeys]),
1236         [KBD_LOADKEYS="$withval"],
1237         [KBD_LOADKEYS="/usr/bin/loadkeys"])
1238
1239 AC_ARG_WITH(kbd-setfont,
1240         AS_HELP_STRING([--with-kbd-setfont=PATH],
1241                 [Path to setfont]),
1242         [KBD_SETFONT="$withval"],
1243         [KBD_SETFONT="/usr/bin/setfont"])
1244
1245 AC_DEFINE_UNQUOTED(KBD_LOADKEYS, ["$KBD_LOADKEYS"], [Path of loadkeys])
1246 AC_DEFINE_UNQUOTED(KBD_SETFONT, ["$KBD_SETFONT"], [Path of setfont])
1247
1248 AC_SUBST(KBD_LOADKEYS)
1249 AC_SUBST(KBD_SETFONT)
1250
1251 AC_ARG_WITH(telinit,
1252         AS_HELP_STRING([--with-telinit=PATH],
1253                 [Path to telinit]),
1254         [TELINIT="$withval"],
1255         [TELINIT="/lib/sysvinit/telinit"])
1256
1257 AC_DEFINE_UNQUOTED(TELINIT, ["$TELINIT"], [Path to telinit])
1258
1259 AC_SUBST(TELINIT)
1260
1261 AC_CHECK_HEADERS_ONCE([valgrind/memcheck.h valgrind/valgrind.h])
1262
1263 # ------------------------------------------------------------------------------
1264 have_myhostname=no
1265 AC_ARG_ENABLE(myhostname, AS_HELP_STRING([--disable-myhostname], [disable nss-myhostname support]))
1266 if test "x$enable_myhostname" != "xno"; then
1267         AC_HEADER_STDC
1268         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])
1269
1270         AC_C_CONST
1271         AC_TYPE_SIZE_T
1272         AC_HEADER_TIME
1273
1274         AC_FUNC_MALLOC
1275         AC_FUNC_SELECT_ARGTYPES
1276         AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn])
1277
1278         have_myhostname=yes
1279 fi
1280 AM_CONDITIONAL(HAVE_MYHOSTNAME, [test "$have_myhostname" = "yes"])
1281
1282 # ------------------------------------------------------------------------------
1283 AC_ARG_ENABLE([gudev],
1284        AS_HELP_STRING([--disable-gudev], [disable Gobject libudev support @<:@default=enabled@:>@]),
1285        [], [enable_gudev=yes])
1286 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]) ])
1287 AM_CONDITIONAL([ENABLE_GUDEV], [test "x$enable_gudev" = "xyes"])
1288 AS_IF([test "x$enable_gudev" = "xyes"], [ AC_DEFINE(HAVE_GLIB, 1, [Define if glib is available]) ])
1289
1290 # ------------------------------------------------------------------------------
1291 AC_ARG_ENABLE(hwdb, [AC_HELP_STRING([--disable-hwdb], [disable hardware database support])],
1292        enable_hwdb=$enableval, enable_hwdb=yes)
1293 AM_CONDITIONAL(ENABLE_HWDB, [test x$enable_hwdb = xyes])
1294
1295 # ------------------------------------------------------------------------------
1296 have_manpages=no
1297 AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
1298 AS_IF([test "x$enable_manpages" != xno], [have_manpages=yes])
1299 AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
1300
1301 # ------------------------------------------------------------------------------
1302 AC_ARG_ENABLE(hibernate,
1303        [AC_HELP_STRING([--disable-hibernate], [disable hibernation support])],
1304        enable_hibernate=$enableval, enable_hibernate=yes)
1305 AM_CONDITIONAL(ENABLE_HIBERNATE, [test x$enable_hibernate = xyes])
1306
1307 # ------------------------------------------------------------------------------
1308 AC_ARG_ENABLE(ldconfig,
1309        [AC_HELP_STRING([--disable-ldconfig], [disable ldconfig])],
1310        enable_ldconfig=$enableval, enable_ldconfig=yes)
1311 AM_CONDITIONAL(ENABLE_LDCONFIG, [test x$enable_ldconfig = xyes])
1312
1313 AC_SUBST(M4_DEFINES)
1314
1315 AC_ARG_WITH([tty-gid],
1316         [AS_HELP_STRING([--with-tty-gid=GID],
1317                 [Specify the numeric GID of the 'tty' group])],
1318         [TTY_GID="$withval"],
1319         [TTY_GID="5"])
1320
1321 AC_DEFINE_UNQUOTED(TTY_GID, [$TTY_GID], [GID of the 'tty' group])
1322 AC_SUBST(TTY_GID)
1323
1324 AC_ARG_WITH([dbuspolicydir],
1325         AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
1326         [],
1327         [with_dbuspolicydir=${sysconfdir}/dbus-1/system.d])
1328
1329 AC_ARG_WITH([dbussessionservicedir],
1330         AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
1331         [],
1332         [with_dbussessionservicedir=${datadir}/dbus-1/services])
1333
1334 AC_ARG_WITH([dbussystemservicedir],
1335         AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
1336         [],
1337         [with_dbussystemservicedir=${datadir}/dbus-1/system-services])
1338
1339 AC_ARG_WITH([bashcompletiondir],
1340         AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
1341         [],
1342         [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
1343                 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
1344         ] , [
1345                 with_bashcompletiondir=${datadir}/bash-completion/completions
1346         ])])
1347
1348 AC_ARG_WITH([zshcompletiondir],
1349         AS_HELP_STRING([--with-zshcompletiondir=DIR], [Zsh completions directory]),
1350         [], [with_zshcompletiondir=${datadir}/zsh/site-functions])
1351
1352 AC_ARG_WITH([rootprefix],
1353         AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
1354         [], [with_rootprefix=${ac_default_prefix}])
1355
1356 AC_ARG_WITH([rootlibdir],
1357         AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
1358         [],
1359         [with_rootlibdir=${libdir}])
1360
1361 AC_ARG_WITH([pamlibdir],
1362         AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]),
1363         [],
1364         [with_pamlibdir=${with_rootlibdir}/security])
1365
1366 AC_ARG_WITH([pamconfdir],
1367         AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration]),
1368         [],
1369         [with_pamconfdir=${sysconfdir}/pam.d])
1370
1371 AC_ARG_ENABLE([split-usr],
1372         AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]),
1373         [],
1374         [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [
1375                 enable_split_usr=yes
1376         ], [
1377                 enable_split_usr=no
1378         ])])
1379
1380 AC_ARG_WITH([dkr-index-url],
1381         [AS_HELP_STRING([--dkr-index-url=URL], [Specify the default index URL to use for image downloads])],
1382         [DEFAULT_DKR_INDEX_URL="\"$withval\""],
1383         [DEFAULT_DKR_INDEX_URL="NULL"])
1384
1385 AC_DEFINE_UNQUOTED(DEFAULT_DKR_INDEX_URL, [$DEFAULT_DKR_INDEX_URL], [Default index URL to use for image downloads])
1386 AC_SUBST(DEFAULT_DKR_INDEX_URL)
1387
1388 AS_IF([test "x${enable_split_usr}" = "xyes"], [
1389         AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr])
1390 ])
1391
1392 # Work around intltoolize and gtk-doc problems in VPATH builds
1393 AM_CONDITIONAL([ENABLE_GTK_DOC_TESTS], [test "x$0" = "x./configure"],
1394                                        [Define to do gtk-doc tests])
1395 AS_IF([test "x$0" != "x./configure"], [
1396         AC_SUBST([INTLTOOL_UPDATE], [/bin/true])
1397 ])
1398
1399 # QEMU and OVMF UEFI firmware
1400 AS_IF([test x"$cross_compiling" = "xyes"], [], [
1401         AC_PATH_PROG([QEMU], [qemu-system-x86_64])
1402         AC_CHECK_FILE([/usr/share/qemu/bios-ovmf.bin], [QEMU_BIOS=/usr/share/qemu/bios-ovmf.bin],
1403                 [AC_CHECK_FILE([/usr/share/qemu-ovmf/bios.bin], [QEMU_BIOS=/usr/share/qemu-ovmf/bios.bin])])
1404         AC_SUBST([QEMU_BIOS])
1405 ])
1406
1407 AC_ARG_ENABLE(tests,
1408         [AC_HELP_STRING([--disable-tests], [disable tests])],
1409         enable_tests=$enableval, enable_tests=yes)
1410 AM_CONDITIONAL(ENABLE_TESTS, [test x$enable_tests = xyes])
1411
1412 AC_ARG_ENABLE(debug,
1413         [AC_HELP_STRING([--enable-debug@<:@=LIST@:>@], [enable extra debugging (hashmap,mmap-cache)])],
1414         [if test "x$enableval" = "xyes"; then
1415                 enableval="hashmap,mmap-cache"
1416         fi
1417         saved_ifs="$IFS"
1418         IFS="$IFS$PATH_SEPARATOR,"
1419         for name in $enableval; do
1420                 case $name in
1421                 hashmap)
1422                         enable_debug_hashmap=yes
1423                         ;;
1424                 mmap-cache)
1425                         enable_debug_mmap_cache=yes
1426                         ;;
1427                 esac
1428         done
1429         IFS="$saved_ifs"],[])
1430
1431 enable_debug=""
1432 AS_IF([test x$enable_debug_hashmap = xyes], [
1433         AC_DEFINE(ENABLE_DEBUG_HASHMAP, 1, [Define if hashmap debugging is to be enabled])
1434         enable_debug="hashmap $enable_debug"
1435 ])
1436 AS_IF([test x$enable_debug_mmap_cache = xyes], [
1437         AC_DEFINE(ENABLE_DEBUG_MMAP_CACHE, 1, [Define if mmap cache debugging is to be enabled])
1438         enable_debug="mmap-cache $enable_debug"
1439 ])
1440 test -z "$enable_debug" && enable_debug="none"
1441
1442 AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
1443 AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
1444 AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
1445 AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
1446 AC_SUBST([zshcompletiondir], [$with_zshcompletiondir])
1447 AC_SUBST([pamlibdir], [$with_pamlibdir])
1448 AC_SUBST([pamconfdir], [$with_pamconfdir])
1449 AC_SUBST([rootprefix], [$with_rootprefix])
1450 AC_SUBST([rootlibdir], [$with_rootlibdir])
1451
1452 AC_CONFIG_FILES([
1453         Makefile po/Makefile.in
1454 ])
1455
1456 AC_OUTPUT
1457 AC_MSG_RESULT([
1458         $PACKAGE_NAME $VERSION
1459
1460         libcryptsetup:           ${have_libcryptsetup}
1461         PAM:                     ${have_pam}
1462         AUDIT:                   ${have_audit}
1463         IMA:                     ${have_ima}
1464         AppArmor:                ${have_apparmor}
1465         SELinux:                 ${have_selinux}
1466         SECCOMP:                 ${have_seccomp}
1467         SMACK:                   ${have_smack}
1468         ZLIB:                    ${have_zlib}
1469         XZ:                      ${have_xz}
1470         LZ4:                     ${have_lz4}
1471         BZIP2:                   ${have_bzip2}
1472         ACL:                     ${have_acl}
1473         GCRYPT:                  ${have_gcrypt}
1474         QRENCODE:                ${have_qrencode}
1475         MICROHTTPD:              ${have_microhttpd}
1476         CHKCONFIG:               ${have_chkconfig}
1477         GNUTLS:                  ${have_gnutls}
1478         libcurl:                 ${have_libcurl}
1479         libidn:                  ${have_libidn}
1480         ELFUTILS:                ${have_elfutils}
1481         binfmt:                  ${have_binfmt}
1482         vconsole:                ${have_vconsole}
1483         bootchart:               ${have_bootchart}
1484         quotacheck:              ${have_quotacheck}
1485         tmpfiles:                ${have_tmpfiles}
1486         sysusers:                ${have_sysusers}
1487         firstboot:               ${have_firstboot}
1488         randomseed:              ${have_randomseed}
1489         backlight:               ${have_backlight}
1490         rfkill:                  ${have_rfkill}
1491         logind:                  ${have_logind}
1492         machined:                ${have_machined}
1493         importd:                 ${have_importd}
1494         hostnamed:               ${have_hostnamed}
1495         timedated:               ${have_timedated}
1496         timesyncd:               ${have_timesyncd}
1497         default NTP servers:     ${NTP_SERVERS}
1498         time epoch:              ${TIME_EPOCH}
1499         localed:                 ${have_localed}
1500         networkd:                ${have_networkd}
1501         resolved:                ${have_resolved}
1502         default DNS servers:     ${DNS_SERVERS}
1503         coredump:                ${have_coredump}
1504         polkit:                  ${have_polkit}
1505         efi:                     ${have_efi}
1506         gnuefi:                  ${have_gnuefi}
1507         efi arch:                ${EFI_ARCH}
1508         EFI machine type:        ${EFI_MACHINE_TYPE_NAME}
1509         EFI CC                   ${EFI_CC}
1510         EFI libdir:              ${EFI_LIB_DIR}
1511         EFI ldsdir:              ${EFI_LDS_DIR}
1512         EFI includedir:          ${EFI_INC_DIR}
1513         kmod:                    ${have_kmod}
1514         xkbcommon:               ${have_xkbcommon}
1515         blkid:                   ${have_blkid}
1516         libmount:                ${have_libmount}
1517         dbus:                    ${have_dbus}
1518         nss-myhostname:          ${have_myhostname}
1519         gudev:                   ${enable_gudev}
1520         hwdb:                    ${enable_hwdb}
1521         gintrospection:          ${enable_introspection}
1522         terminal:                ${have_terminal}
1523         kdbus:                   ${have_kdbus}
1524         Python:                  ${have_python}
1525         Python Headers:          ${have_python_devel}
1526         man pages:               ${have_manpages}
1527         gtk-doc:                 ${enable_gtk_doc}
1528         test coverage:           ${have_coverage}
1529         Split /usr:              ${enable_split_usr}
1530         SysV compatibility:      ${SYSTEM_SYSV_COMPAT}
1531         compatibility libraries: ${have_compat_libs}
1532         ldconfig support:        ${enable_ldconfig}
1533         hibernate support:       ${enable_hibernate}
1534         extra debugging:         ${enable_debug}
1535
1536         prefix:                  ${prefix}
1537         rootprefix:              ${with_rootprefix}
1538         sysconf dir:             ${sysconfdir}
1539         datarootdir:             ${datarootdir}
1540         includedir:              ${includedir}
1541         include_prefix:          ${INCLUDE_PREFIX}
1542         lib dir:                 ${libdir}
1543         rootlib dir:             ${with_rootlibdir}
1544         SysV init scripts:       ${SYSTEM_SYSVINIT_PATH}
1545         SysV rc?.d directories:  ${SYSTEM_SYSVRCND_PATH}
1546         Build Python:            ${PYTHON}
1547         Installation Python:     ${PYTHON_BINARY}
1548         sphinx binary:           ${SPHINX_BUILD}
1549         PAM modules dir:         ${with_pamlibdir}
1550         PAM configuration dir:   ${with_pamconfdir}
1551         D-Bus policy dir:        ${with_dbuspolicydir}
1552         D-Bus session dir:       ${with_dbussessionservicedir}
1553         D-Bus system dir:        ${with_dbussystemservicedir}
1554         Bash completions dir:    ${with_bashcompletiondir}
1555         Zsh completions dir:     ${with_zshcompletiondir}
1556         Extra start script:      ${RC_LOCAL_SCRIPT_PATH_START}
1557         Extra stop script:       ${RC_LOCAL_SCRIPT_PATH_STOP}
1558         Debug shell:             ${SUSHELL} @ ${DEBUGTTY}
1559         TTY GID:                 ${TTY_GID}
1560         Maximum System UID:      ${SYSTEM_UID_MAX}
1561         Maximum System GID:      ${SYSTEM_GID_MAX}
1562         Certificate root:        ${CERTIFICATEROOT}
1563         Default dkr Index        ${DEFAULT_DKR_INDEX_URL}
1564
1565         CFLAGS:                  ${OUR_CFLAGS} ${CFLAGS}
1566         CPPFLAGS:                ${OUR_CPPFLAGS} ${CPPFLAGS}
1567         LDFLAGS:                 ${OUR_LDFLAGS} ${LDFLAGS}
1568         PYTHON_CFLAGS:           ${PYTHON_DEVEL_CFLAGS}
1569         PYTHON_LIBS:             ${PYTHON_DEVEL_LIBS}
1570 ])