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