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