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