]> git.ipfire.org Git - thirdparty/systemd.git/blame - configure.ac
treewide: a few more log_*_errno + return simplifications
[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
c0467cf3
RC
441# ------------------------------------------------------------------------------
442have_seccomp=no
443AC_ARG_ENABLE(seccomp, AS_HELP_STRING([--disable-seccomp], [Disable optional SECCOMP support]))
444if test "x$enable_seccomp" != "xno"; then
445 PKG_CHECK_MODULES(SECCOMP, [libseccomp >= 1.0.0],
17df7223
LP
446 [AC_DEFINE(HAVE_SECCOMP, 1, [Define if seccomp is available])
447 have_seccomp=yes
448 M4_DEFINES="$M4_DEFINES -DHAVE_SECCOMP"],
c0467cf3
RC
449 [have_seccomp=no])
450 if test "x$have_seccomp" = "xno" -a "x$enable_seccomp" = "xyes"; then
451 AC_MSG_ERROR([*** seccomp support requested but libraries not found])
452 fi
453fi
454AM_CONDITIONAL(HAVE_SECCOMP, [test "$have_seccomp" = "yes"])
455
3e214785 456# ------------------------------------------------------------------------------
81611586
RS
457have_ima=yes
458AC_ARG_ENABLE([ima], AS_HELP_STRING([--disable-ima],[Disable optional IMA support]),
459 [case "${enableval}" in
460 yes) have_ima=yes ;;
461 no) have_ima=no ;;
462 *) AC_MSG_ERROR(bad value ${enableval} for --disable-ima) ;;
463 esac],
464 [have_ima=yes])
465
466if test "x${have_ima}" != xno ; then
467 AC_DEFINE(HAVE_IMA, 1, [Define if IMA is available])
468fi
469
77e68fa2
LP
470# ------------------------------------------------------------------------------
471have_chkconfig=yes
472AC_ARG_ENABLE([chkconfig], AS_HELP_STRING([--disable-chkconfig],[Disable optional chkconfig support]),
473 [case "${enableval}" in
474 yes) have_chkconfig=yes ;;
475 no) have_chkconfig=no ;;
476 *) AC_MSG_ERROR(bad value ${enableval} for --disable-chkconfig) ;;
477 esac],
478 [AC_PATH_PROG(CHKCONFIG, chkconfig)
479 if test -z "$CHKCONFIG"; then
480 have_chkconfig=no
481 else
482 have_chkconfig=yes
483 fi])
484
485if test "x${have_chkconfig}" != xno ; then
486 AC_DEFINE(HAVE_CHKCONFIG, 1, [Define if CHKCONFIG is available])
487fi
488
3e214785 489# ------------------------------------------------------------------------------
591622d7
LP
490have_selinux=no
491AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
492if test "x$enable_selinux" != "xno"; then
3f8cc098 493 PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9],
6a6751fe
LP
494 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available])
495 have_selinux=yes
496 M4_DEFINES="$M4_DEFINES -DHAVE_SELINUX"],
497 [have_selinux=no])
591622d7
LP
498 if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
499 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
500 fi
56cf987f 501fi
591622d7 502AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
45df1f2c 503
eef65bf3
MS
504have_apparmor=no
505AC_ARG_ENABLE(apparmor, AS_HELP_STRING([--disable-apparmor], [Disable optional AppArmor support]))
506if test "x$enable_apparmor" != "xno"; then
507 PKG_CHECK_MODULES([APPARMOR], [libapparmor],
508 [AC_DEFINE(HAVE_APPARMOR, 1, [Define if AppArmor is available])
509 have_apparmor=yes
510 M4_DEFINES="$M4_DEFINES -DHAVE_APPARMOR"],
511 [have_apparmor=no])
512 if test "x$have_apparmor" = xno -a "x$enable_apparmor" = xyes; then
513 AC_MSG_ERROR([*** AppArmor support requested but libraries not found])
514 fi
515fi
516AM_CONDITIONAL(HAVE_APPARMOR, [test "$have_apparmor" = "yes"])
517
518
45df1f2c
CR
519AC_ARG_WITH(debug-shell,
520 AS_HELP_STRING([--with-debug-shell=PATH],
521 [Path to debug shell binary]),
522 [SUSHELL="$withval"],[
523 AS_IF([test "x${have_selinux}" != "xno"], [SUSHELL="/sbin/sushell"] , [SUSHELL="/bin/sh"])])
524
5ec6b15b 525AC_SUBST(SUSHELL)
56cf987f 526
45df1f2c
CR
527AC_ARG_WITH([debug-tty],
528 AS_HELP_STRING([--with-debug-tty=PATH],
529 [Specify the tty device for debug shell]),
530 [DEBUGTTY="$withval"],
531 [DEBUGTTY=/dev/tty9])
532
533AC_SUBST(DEBUGTTY)
534
ad95fd1d
ZJS
535AC_ARG_WITH([certificate-root],
536 AS_HELP_STRING([--with-certificate-root=PATH],
537 [Specify the prefix for TLS certificates [/etc/ssl]]),
538 [CERTIFICATEROOT="$withval"],
539 [CERTIFICATEROOT="/etc/ssl"])
540
541AC_SUBST(CERTIFICATEROOT)
542
3e214785 543# ------------------------------------------------------------------------------
807e17f0
LP
544have_xz=no
545AC_ARG_ENABLE(xz, AS_HELP_STRING([--disable-xz], [Disable optional XZ support]))
546if test "x$enable_xz" != "xno"; then
547 PKG_CHECK_MODULES(XZ, [ liblzma ],
d89c8fdf 548 [AC_DEFINE(HAVE_XZ, 1, [Define if XZ is available]) have_xz=yes])
807e17f0 549 if test "x$have_xz" = xno -a "x$enable_xz" = xyes; then
d89c8fdf 550 AC_MSG_ERROR([*** XZ support requested but libraries not found])
807e17f0
LP
551 fi
552fi
553AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"])
554
d89c8fdf
ZJS
555# ------------------------------------------------------------------------------
556have_lz4=no
557AC_ARG_ENABLE(lz4, AS_HELP_STRING([--enable-lz4], [Enable optional LZ4 support]))
558AS_IF([test "x$enable_lz4" == "xyes"], [
559 AC_CHECK_HEADERS(lz4.h,
560 [AC_DEFINE(HAVE_LZ4, 1, [Define in LZ4 is available]) have_lz4=yes],
561 [AC_MSG_ERROR([*** LZ4 support requested but headers not found])])
562])
563AM_CONDITIONAL(HAVE_LZ4, [test "$have_lz4" = "yes"])
564
3b1a55e1
ZJS
565AM_CONDITIONAL(HAVE_COMPRESSION, [test "$have_xz" = "yes" -o "$have_lz4" = "yes"])
566
3e214785 567# ------------------------------------------------------------------------------
5b6319dc
LP
568AC_ARG_ENABLE([pam],
569 AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
570 [case "${enableval}" in
571 yes) have_pam=yes ;;
572 no) have_pam=no ;;
573 *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
574 esac],
575 [have_pam=auto])
576
577if test "x${have_pam}" != xno ; then
578 AC_CHECK_HEADERS(
579 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
580 [have_pam=yes],
581 [if test "x$have_pam" = xyes ; then
582 AC_MSG_ERROR([*** PAM headers not found.])
583 fi])
584
585 AC_CHECK_LIB(
586 [pam],
587 [pam_syslog],
588 [have_pam=yes],
589 [if test "x$have_pam" = xyes ; then
590 AC_MSG_ERROR([*** libpam not found.])
591 fi])
592
593 if test "x$have_pam" = xyes ; then
594 PAM_LIBS="-lpam -lpam_misc"
595 AC_DEFINE(HAVE_PAM, 1, [PAM available])
6a6751fe 596 M4_DEFINES="$M4_DEFINES -DHAVE_PAM"
812cce32
LP
597 else
598 have_pam=no
5b6319dc
LP
599 fi
600else
601 PAM_LIBS=
602fi
603AC_SUBST(PAM_LIBS)
604AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
605
3e214785 606# ------------------------------------------------------------------------------
5eda94dd
LP
607AC_ARG_ENABLE([acl],
608 AS_HELP_STRING([--disable-acl],[Disable optional ACL support]),
609 [case "${enableval}" in
610 yes) have_acl=yes ;;
611 no) have_acl=no ;;
612 *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;;
613 esac],
614 [have_acl=auto])
615
616if test "x${have_acl}" != xno ; then
617 AC_CHECK_HEADERS(
618 [sys/acl.h acl/libacl.h],
619 [have_acl=yes],
620 [if test "x$have_acl" = xyes ; then
621 AC_MSG_ERROR([*** ACL headers not found.])
622 fi])
623
624 AC_CHECK_LIB(
625 [acl],
626 [acl_get_file],
627 [have_acl=yes],
628 [if test "x$have_acl" = xyes ; then
629 AC_MSG_ERROR([*** libacl not found.])
630 fi])
631
632 if test "x$have_acl" = xyes ; then
633 ACL_LIBS="-lacl"
634 AC_DEFINE(HAVE_ACL, 1, [ACL available])
635 else
636 have_acl=no
637 fi
638else
639 ACL_LIBS=
640fi
641AC_SUBST(ACL_LIBS)
642AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno])
643
2b3e18de
KL
644# ------------------------------------------------------------------------------
645AC_ARG_ENABLE([smack], AS_HELP_STRING([--disable-smack],[Disable optional SMACK support]),
646 [case "${enableval}" in
647 yes) have_smack=yes ;;
648 no) have_smack=no ;;
649 *) AC_MSG_ERROR(bad value ${enableval} for --disable-smack) ;;
650 esac],
651 [have_smack=auto])
652
d2edfae0
KS
653if test "x${have_smack}" = xauto; then
654 M4_DEFINES="$M4_DEFINES -DHAVE_SMACK"
655 have_smack=yes
2b3e18de
KL
656fi
657
8b197c3a
AK
658AC_ARG_WITH(smack-run-label,
659AS_HELP_STRING([--with-smack-run-label=STRING],
660 [run systemd --system with a specific SMACK label]),
661 [AC_DEFINE_UNQUOTED(SMACK_RUN_LABEL, ["$withval"], [Run with a smack label])],
662 [])
663
2b3e18de
KL
664if test "x${have_smack}" = xyes ; then
665 AC_DEFINE(HAVE_SMACK, 1, [Define if SMACK is available])
666fi
667
7560fffc 668# ------------------------------------------------------------------------------
feb12d3e 669AC_ARG_ENABLE([gcrypt],
7560fffc
LP
670 AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]),
671 [case "${enableval}" in
672 yes) have_gcrypt=yes ;;
673 no) have_gcrypt=no ;;
674 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gcrypt) ;;
675 esac],
676 [have_gcrypt=auto])
677
678if test "x${have_gcrypt}" != xno ; then
679 AM_PATH_LIBGCRYPT(
680 [1.4.5],
681 [have_gcrypt=yes],
682 [if test "x$have_gcrypt" = xyes ; then
683 AC_MSG_ERROR([*** GCRYPT headers not found.])
684 fi])
685
686 if test "x$have_gcrypt" = xyes ; then
687 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
688 GCRYPT_CFLAGS="$LIBGCRYPT_CFLAGS"
689 AC_DEFINE(HAVE_GCRYPT, 1, [GCRYPT available])
690 else
691 have_gcrypt=no
692 fi
693else
694 GCRYPT_LIBS=
695 GCRYPT_CFLAGS=
696fi
697AC_SUBST(GCRYPT_LIBS)
698AC_SUBST(GCRYPT_CFLAGS)
699AM_CONDITIONAL([HAVE_GCRYPT], [test "x$have_gcrypt" != xno])
700
3e214785 701# ------------------------------------------------------------------------------
4927fcae
LP
702AC_ARG_ENABLE([audit],
703 AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]),
704 [case "${enableval}" in
705 yes) have_audit=yes ;;
706 no) have_audit=no ;;
707 *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;;
708 esac],
709 [have_audit=auto])
710
711if test "x${have_audit}" != xno ; then
712 AC_CHECK_HEADERS(
713 [libaudit.h],
714 [have_audit=yes],
715 [if test "x$have_audit" = xyes ; then
716 AC_MSG_ERROR([*** AUDIT headers not found.])
717 fi])
718
719 AC_CHECK_LIB(
720 [audit],
721 [audit_open],
722 [have_audit=yes],
723 [if test "x$have_audit" = xyes ; then
724 AC_MSG_ERROR([*** libaudit not found.])
725 fi])
726
727 if test "x$have_audit" = xyes ; then
728 AUDIT_LIBS="-laudit"
729 AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available])
730 else
731 have_audit=no
732 fi
733else
734 AUDIT_LIBS=
735fi
736AC_SUBST(AUDIT_LIBS)
737
8d4e028f
LP
738# ------------------------------------------------------------------------------
739AC_ARG_ENABLE([elfutils],
740 AS_HELP_STRING([--disable-elfutils],[Disable optional ELFUTILS support]),
741 [case "${enableval}" in
742 yes) have_elfutils=yes ;;
743 no) have_elfutils=no ;;
744 *) AC_MSG_ERROR(bad value ${enableval} for --disable-elfutils) ;;
745 esac],
746 [have_elfutils=auto])
747
748if test "x${have_elfutils}" != xno ; then
749 AC_CHECK_HEADERS(
750 [elfutils/libdwfl.h],
972bded0 751 [],
8d4e028f
LP
752 [if test "x$have_elfutils" = xyes ; then
753 AC_MSG_ERROR([*** ELFUTILS headers not found.])
754 fi])
755
756 AC_CHECK_LIB(
757 [dw],
758 [dwfl_begin],
972bded0 759 [],
8d4e028f
LP
760 [if test "x$have_elfutils" = xyes ; then
761 AC_MSG_ERROR([*** ELFUTILS libs not found.])
762 fi])
763
972bded0
MM
764 AC_CHECK_LIB(
765 [dw],
766 [dwfl_core_file_attach],
767 [have_elfutils=yes],
768 [if test "x$have_elfutils" = xyes ; then
769 AC_MSG_ERROR([*** ELFUTILS >= 158 is required.])
770 fi])
771
8d4e028f
LP
772 if test "x$have_elfutils" = xyes ; then
773 ELFUTILS_LIBS="-lelf -ldw"
774 AC_DEFINE(HAVE_ELFUTILS, 1, [ELFUTILS available])
775 else
776 have_elfutils=no
777 fi
778else
779 ELFUTILS_LIBS=
780fi
781AC_SUBST(ELFUTILS_LIBS)
782AM_CONDITIONAL(HAVE_ELFUTILS, [test "$have_elfutils" = "yes"])
783
3e214785 784# ------------------------------------------------------------------------------
7f4e0805
LP
785have_libcryptsetup=no
786AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
787if test "x$enable_libcryptsetup" != "xno"; then
8cf3ca80 788 PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup >= 1.6.0 ],
7f4e0805 789 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
7f4e0805 790 if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
591622d7 791 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
7f4e0805
LP
792 fi
793fi
794AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
795
f6a971bc
LP
796# ------------------------------------------------------------------------------
797have_qrencode=no
798AC_ARG_ENABLE(qrencode, AS_HELP_STRING([--disable-qrencode], [disable qrencode support]))
799if test "x$enable_qrencode" != "xno"; then
800 PKG_CHECK_MODULES(QRENCODE, [ libqrencode ],
801 [AC_DEFINE(HAVE_QRENCODE, 1, [Define if qrencode is available]) have_qrencode=yes], have_qrencode=no)
802 if test "x$have_qrencode" = xno -a "x$enable_qrencode" = xyes; then
803 AC_MSG_ERROR([*** qrencode support requested but libraries not found])
804 fi
805fi
806AM_CONDITIONAL(HAVE_QRENCODE, [test "$have_qrencode" = "yes"])
807
7b17a7d7
LP
808# ------------------------------------------------------------------------------
809have_microhttpd=no
810AC_ARG_ENABLE(microhttpd, AS_HELP_STRING([--disable-microhttpd], [disable microhttpd support]))
811if test "x$enable_microhttpd" != "xno"; then
3f573096 812 PKG_CHECK_MODULES(MICROHTTPD, [libmicrohttpd >= 0.9.33],
7b17a7d7
LP
813 [AC_DEFINE(HAVE_MICROHTTPD, 1, [Define if microhttpd is available]) have_microhttpd=yes], have_microhttpd=no)
814 if test "x$have_microhttpd" = xno -a "x$enable_microhttpd" = xyes; then
815 AC_MSG_ERROR([*** microhttpd support requested but libraries not found])
816 fi
817fi
818AM_CONDITIONAL(HAVE_MICROHTTPD, [test "$have_microhttpd" = "yes"])
819
60313199
ZJS
820# ------------------------------------------------------------------------------
821have_gnutls=no
822AC_ARG_ENABLE(gnutls, AS_HELP_STRING([--disable-gnutls], [disable gnutls support]))
823if test "x$enable_gnutls" != "xno"; then
f12be7e8 824 PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.1.4],
60313199
ZJS
825 [AC_DEFINE(HAVE_GNUTLS, 1, [Define if gnutls is available]) have_gnutls=yes], have_gnutls=no)
826 if test "x$have_gnutls" = xno -a "x$enable_gnutls" = xyes; then
827 AC_MSG_ERROR([*** gnutls support requested but libraries not found])
828 fi
829fi
830AM_CONDITIONAL(HAVE_GNUTLS, [test "$have_gnutls" = "yes"])
831
36ef43ed
ZJS
832# ------------------------------------------------------------------------------
833have_libcurl=no
834AC_ARG_ENABLE(libcurl, AS_HELP_STRING([--disable-libcurl], [disable libcurl support]))
835if test "x$enable_libcurl" != "xno"; then
836 PKG_CHECK_MODULES(LIBCURL, [libcurl],
837 [AC_DEFINE(HAVE_LIBCURL, 1, [Define if libcurl is available]) have_libcurl=yes], have_libcurl=no)
838 if test "x$have_libcurl" = xno -a "x$enable_libcurl" = xyes; then
839 AC_MSG_ERROR([*** libcurl support requested but libraries not found])
840 fi
841fi
842AM_CONDITIONAL(HAVE_LIBCURL, [test "$have_libcurl" = "yes"])
843
bdf10b5b
LP
844# ------------------------------------------------------------------------------
845have_libidn=no
846AC_ARG_ENABLE(libidn, AS_HELP_STRING([--disable-libidn], [Disable optional LIBIDN support]))
847if test "x$enable_libidn" != "xno"; then
848 PKG_CHECK_MODULES(LIBIDN, [libidn],
849 [AC_DEFINE(HAVE_LIBIDN, 1, [Define if libidn is available])
850 have_libidn=yes
851 M4_DEFINES="$M4_DEFINES -DHAVE_LIBIDN"],
852 [have_libidn=no])
853 if test "x$have_libidn" = "xno" -a "x$enable_libidn" = "xyes"; then
854 AC_MSG_ERROR([*** libidn support requested but libraries not found])
855 fi
856fi
857AM_CONDITIONAL(HAVE_LIBIDN, [test "$have_libidn" = "yes"])
858
3e214785 859# ------------------------------------------------------------------------------
27669061
MV
860have_binfmt=no
861AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
862if test "x$enable_binfmt" != "xno"; then
be31376e 863 have_binfmt=yes
27669061
MV
864fi
865AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
866
3e214785 867# ------------------------------------------------------------------------------
e5e83e83
LP
868have_vconsole=no
869AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool]))
870if test "x$enable_vconsole" != "xno"; then
be31376e 871 have_vconsole=yes
e5e83e83
LP
872fi
873AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"])
874
83fdc450
AK
875# ------------------------------------------------------------------------------
876have_bootchart=no
877AC_ARG_ENABLE(bootchart, AS_HELP_STRING([--disable-bootchart], [disable bootchart tool]))
878if test "x$enable_bootchart" != "xno"; then
879 have_bootchart=yes
880fi
881AM_CONDITIONAL(ENABLE_BOOTCHART, [test "$have_bootchart" = "yes"])
882
3e214785 883# ------------------------------------------------------------------------------
4de85612
LP
884have_quotacheck=no
885AC_ARG_ENABLE(quotacheck, AS_HELP_STRING([--disable-quotacheck], [disable quotacheck tools]))
886if test "x$enable_quotacheck" != "xno"; then
be31376e 887 have_quotacheck=yes
4de85612
LP
888fi
889AM_CONDITIONAL(ENABLE_QUOTACHECK, [test "$have_quotacheck" = "yes"])
890
6351163b
UTL
891# ------------------------------------------------------------------------------
892have_tmpfiles=no
893AC_ARG_ENABLE(tmpfiles, AS_HELP_STRING([--disable-tmpfiles], [disable tmpfiles support]))
894if test "x$enable_tmpfiles" != "xno"; then
895 have_tmpfiles=yes
896fi
897AM_CONDITIONAL(ENABLE_TMPFILES, [test "$have_tmpfiles" = "yes"])
898
1b992147
LP
899# ------------------------------------------------------------------------------
900have_sysusers=no
901AC_ARG_ENABLE(sysusers, AS_HELP_STRING([--disable-sysusers], [disable sysusers support]))
902if test "x$enable_sysusers" != "xno"; then
903 have_sysusers=yes
904fi
905AM_CONDITIONAL(ENABLE_SYSUSERS, [test "$have_sysusers" = "yes"])
906
418b9be5
LP
907# ------------------------------------------------------------------------------
908have_firstboot=no
909AC_ARG_ENABLE(firstboot, AS_HELP_STRING([--disable-firstboot], [disable firstboot support]))
910if test "x$enable_firstboot" != "xno"; then
911 have_firstboot=yes
912fi
913AM_CONDITIONAL(ENABLE_FIRSTBOOT, [test "$have_firstboot" = "yes"])
914
3e214785 915# ------------------------------------------------------------------------------
4de85612
LP
916have_randomseed=no
917AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools]))
918if test "x$enable_randomseed" != "xno"; then
be31376e 919 have_randomseed=yes
4de85612
LP
920fi
921AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"])
922
3731acf1
LP
923# ------------------------------------------------------------------------------
924have_backlight=no
925AC_ARG_ENABLE(backlight, AS_HELP_STRING([--disable-backlight], [disable backlight tools]))
926if test "x$enable_backlight" != "xno"; then
927 have_backlight=yes
928fi
929AM_CONDITIONAL(ENABLE_BACKLIGHT, [test "$have_backlight" = "yes"])
930
3990f247
LP
931# ------------------------------------------------------------------------------
932have_rfkill=no
933AC_ARG_ENABLE(rfkill, AS_HELP_STRING([--disable-rfkill], [disable rfkill tools]))
934if test "x$enable_rfkill" != "xno"; then
935 have_rfkill=yes
936fi
937AM_CONDITIONAL(ENABLE_RFKILL, [test "$have_rfkill" = "yes"])
938
3e214785 939# ------------------------------------------------------------------------------
2a018e83
KS
940have_logind=no
941AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon]))
942if test "x$enable_logind" != "xno"; then
be31376e 943 have_logind=yes
2a018e83
KS
944fi
945AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"])
4c80c73c 946AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ])
2a018e83 947
1ee306e1
LP
948# ------------------------------------------------------------------------------
949have_machined=no
950AC_ARG_ENABLE(machined, AS_HELP_STRING([--disable-machined], [disable machine daemon]))
951if test "x$enable_machined" != "xno"; then
952 have_machined=yes
953fi
954AM_CONDITIONAL(ENABLE_MACHINED, [test "$have_machined" = "yes"])
955AS_IF([test "$have_machined" = "yes"], [ AC_DEFINE(HAVE_MACHINED, [1], [Machined support available]) ])
956
3e214785 957# ------------------------------------------------------------------------------
b2e9fb99
MV
958have_hostnamed=no
959AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon]))
960if test "x$enable_hostnamed" != "xno"; then
be31376e 961 have_hostnamed=yes
b2e9fb99
MV
962fi
963AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"])
964
3e214785 965# ------------------------------------------------------------------------------
f47cd184
MV
966have_timedated=no
967AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon]))
968if test "x$enable_timedated" != "xno"; then
be31376e 969 have_timedated=yes
f47cd184
MV
970fi
971AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
972
3e214785 973# ------------------------------------------------------------------------------
687ed123
KS
974have_timesyncd=no
975AC_ARG_ENABLE(timesyncd, AS_HELP_STRING([--disable-timesyncd], [disable timesync daemon]))
43ba1b3e 976if test "x$enable_timesyncd" != "xno"; then
687ed123
KS
977 have_timesyncd=yes
978fi
979AM_CONDITIONAL(ENABLE_TIMESYNCD, [test "$have_timesyncd" = "yes"])
980
e8af6973
LP
981AC_ARG_WITH(ntp-servers,
982 AS_HELP_STRING([--with-ntp-servers=NTPSERVERS],
983 [Space-separated list of default NTP servers]),
984 [NTP_SERVERS="$withval"],
985 [NTP_SERVERS="time1.google.com time2.google.com time3.google.com time4.google.com"])
986
987AC_DEFINE_UNQUOTED(NTP_SERVERS, ["$NTP_SERVERS"], [Default NTP Servers])
988AC_SUBST(NTP_SERVERS)
989
661278ee
LP
990AC_ARG_WITH(time-epoch,
991 AS_HELP_STRING([--with-time-epoch=SECONDS],
5ea846cc 992 [Time epoch for time clients]),
661278ee
LP
993 [TIME_EPOCH="$withval"],
994 [TIME_EPOCH="`stat -c %Y ${srcdir}/NEWS 2>/dev/null || echo 0`"])
995
996AC_DEFINE_UNQUOTED(TIME_EPOCH, [$TIME_EPOCH], [Time Epoch])
997
f7dc3ab9
LP
998# ------------------------------------------------------------------------------
999AC_ARG_WITH(system-uid-max,
1000 AS_HELP_STRING([--with-system-uid-max=UID]
1001 [Maximum UID for system users]),
1002 [SYSTEM_UID_MAX="$withval"],
1003 [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`"])
1004
1005AC_DEFINE_UNQUOTED(SYSTEM_UID_MAX, [$SYSTEM_UID_MAX], [Maximum System UID])
1006AC_SUBST(SYSTEM_UID_MAX)
1007
1008# ------------------------------------------------------------------------------
1009AC_ARG_WITH(system-gid-max,
1010 AS_HELP_STRING([--with-system-gid-max=GID]
1011 [Maximum GID for system groups]),
1012 [SYSTEM_GID_MAX="$withval"],
1013 [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`"])
1014
1015AC_DEFINE_UNQUOTED(SYSTEM_GID_MAX, [$SYSTEM_GID_MAX], [Maximum System GID])
1016AC_SUBST(SYSTEM_GID_MAX)
1017
687ed123 1018# ------------------------------------------------------------------------------
4cd1eaa5
MV
1019have_localed=no
1020AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))
1021if test "x$enable_localed" != "xno"; then
be31376e 1022 have_localed=yes
4cd1eaa5
MV
1023fi
1024AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"])
1025
3e214785 1026# ------------------------------------------------------------------------------
f5e04665
LP
1027have_coredump=no
1028AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook]))
1029if test "x$enable_coredump" != "xno"; then
be31376e 1030 have_coredump=yes
f5e04665
LP
1031fi
1032AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"])
1033
46ba8aae
LP
1034# ------------------------------------------------------------------------------
1035have_polkit=no
1036AC_ARG_ENABLE(polkit, AS_HELP_STRING([--disable-polkit], [disable PolicyKit support]))
1037if test "x$enable_polkit" != "xno"; then
1038 AC_DEFINE(ENABLE_POLKIT, 1, [Define if PolicyKit support is to be enabled])
1039 have_polkit=yes
1040fi
1041AM_CONDITIONAL(ENABLE_POLKIT, [test "x$have_polkit" = "xyes"])
1042
3c9317d2 1043# ------------------------------------------------------------------------------
091a364c
TG
1044have_resolved=no
1045AC_ARG_ENABLE(resolved, AS_HELP_STRING([--disable-resolved], [disable resolve daemon]))
1046if test "x$enable_resolved" != "xno"; then
1047 have_resolved=yes
aeb50ff0 1048 M4_DEFINES="$M4_DEFINES -DENABLE_RESOLVED"
3c9317d2 1049fi
091a364c 1050AM_CONDITIONAL(ENABLE_RESOLVED, [test "$have_resolved" = "yes"])
3c9317d2 1051
e16cb2e4
TG
1052AC_ARG_WITH(dns-servers,
1053 AS_HELP_STRING([--with-dns-servers=DNSSERVERS],
1054 [Space-separated list of default DNS servers]),
49e5c2b2 1055 [DNS_SERVERS="$withval"],
7b4d7968 1056 [DNS_SERVERS="8.8.8.8 8.8.4.4 2001:4860:4860::8888 2001:4860:4860::8844"])
e16cb2e4
TG
1057
1058AC_DEFINE_UNQUOTED(DNS_SERVERS, ["$DNS_SERVERS"], [Default DNS Servers])
1059AC_SUBST(DNS_SERVERS)
1060
091a364c
TG
1061# ------------------------------------------------------------------------------
1062have_networkd=no
1063AC_ARG_ENABLE(networkd, AS_HELP_STRING([--disable-networkd], [disable networkd]))
81577dc2 1064AS_IF([test "x$enable_networkd" != "xno"], [
091a364c
TG
1065 AC_DEFINE(ENABLE_NETWORKD, 1, [Define if networkd support is to be enabled])
1066 have_networkd=yes
81577dc2 1067])
091a364c
TG
1068AM_CONDITIONAL(ENABLE_NETWORKD, [test "x$have_networkd" = "xyes"])
1069
b872e9a0
LP
1070# ------------------------------------------------------------------------------
1071have_efi=no
1072AC_ARG_ENABLE(efi, AS_HELP_STRING([--disable-efi], [disable EFI support]))
1073if test "x$enable_efi" != "xno"; then
1074 AC_DEFINE(ENABLE_EFI, 1, [Define if EFI support is to be enabled])
1075 have_efi=yes
1076fi
1077AM_CONDITIONAL(ENABLE_EFI, [test "x$have_efi" = "xyes"])
1078
84da4a30
DH
1079# ------------------------------------------------------------------------------
1080have_terminal=no
1081AC_ARG_ENABLE(terminal, AS_HELP_STRING([--enable-terminal], [enable terminal support]))
1082if test "x$enable_terminal" = "xyes"; then
cdcd0ccd 1083 PKG_CHECK_MODULES([TERMINAL], [ libevdev >= 1.2 xkbcommon >= 0.5 libdrm >= 2.4], [have_terminal=yes])
c93e5a62
DH
1084 AS_IF([test "x$have_terminal" != xyes -a "x$enable_terminal" = xyes],
1085 [AC_MSG_ERROR([*** terminal support requested but required dependencies not available])],
1086 [test "x$have_terminal" = xyes],
1087 [AC_DEFINE(ENABLE_TERMINAL, 1, [Define if terminal support is to be enabled])])
84da4a30
DH
1088fi
1089AM_CONDITIONAL(ENABLE_TERMINAL, [test "x$have_terminal" = "xyes"])
1090
626851be
LP
1091# ------------------------------------------------------------------------------
1092have_kdbus=no
c97a6dbc 1093AC_ARG_ENABLE(kdbus, AS_HELP_STRING([--enable-kdbus], [do connect to kdbus by default]))
146ccaaf 1094if test "x$enable_kdbus" = "xyes"; then
626851be
LP
1095 AC_DEFINE(ENABLE_KDBUS, 1, [Define if kdbus support is to be enabled])
1096 have_kdbus=yes
4acbce79 1097 M4_DEFINES="$M4_DEFINES -DENABLE_KDBUS"
626851be
LP
1098fi
1099AM_CONDITIONAL(ENABLE_KDBUS, [test "$have_kdbus" = "yes"])
1100
b1c4ca25
LP
1101# ------------------------------------------------------------------------------
1102AC_ARG_WITH(rc-local-script-path-start,
1103 AS_HELP_STRING([--with-rc-local-script-path-start=PATH],
1104 [Path to /etc/rc.local]),
1105 [RC_LOCAL_SCRIPT_PATH_START="$withval"],
1106 [RC_LOCAL_SCRIPT_PATH_START="/etc/rc.local"])
1107
1108AC_ARG_WITH(rc-local-script-path-stop,
1109 AS_HELP_STRING([--with-rc-local-script-path-stop=PATH],
bc270841 1110 [Path to /usr/sbin/halt.local]),
b1c4ca25 1111 [RC_LOCAL_SCRIPT_PATH_STOP="$withval"],
bc270841 1112 [RC_LOCAL_SCRIPT_PATH_STOP="/usr/sbin/halt.local"])
b1c4ca25
LP
1113
1114AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_START, ["$RC_LOCAL_SCRIPT_PATH_START"], [Path of /etc/rc.local script])
bc270841 1115AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_STOP, ["$RC_LOCAL_SCRIPT_PATH_STOP"], [Path of /usr/sbin/halt.local script])
b1c4ca25
LP
1116
1117AC_SUBST(RC_LOCAL_SCRIPT_PATH_START)
1118AC_SUBST(RC_LOCAL_SCRIPT_PATH_STOP)
1119
a382332e
LP
1120# ------------------------------------------------------------------------------
1121AC_ARG_WITH(kbd-loadkeys,
1122 AS_HELP_STRING([--with-kbd-loadkeys=PATH],
1123 [Path to loadkeys]),
1124 [KBD_LOADKEYS="$withval"],
1125 [KBD_LOADKEYS="/usr/bin/loadkeys"])
1126
1127AC_ARG_WITH(kbd-setfont,
1128 AS_HELP_STRING([--with-kbd-setfont=PATH],
1129 [Path to setfont]),
1130 [KBD_SETFONT="$withval"],
1131 [KBD_SETFONT="/usr/bin/setfont"])
1132
1133AC_DEFINE_UNQUOTED(KBD_LOADKEYS, ["$KBD_LOADKEYS"], [Path of loadkeys])
1134AC_DEFINE_UNQUOTED(KBD_SETFONT, ["$KBD_SETFONT"], [Path of setfont])
1135
1136AC_SUBST(KBD_LOADKEYS)
1137AC_SUBST(KBD_SETFONT)
1138
4ad61fd1
CR
1139AC_ARG_WITH(telinit,
1140 AS_HELP_STRING([--with-telinit=PATH],
1141 [Path to telinit]),
1142 [TELINIT="$withval"],
abaaabf4 1143 [TELINIT="/lib/sysvinit/telinit"])
4ad61fd1
CR
1144
1145AC_DEFINE_UNQUOTED(TELINIT, ["$TELINIT"], [Path to telinit])
1146
1147AC_SUBST(TELINIT)
1148
54b434b1 1149AC_CHECK_HEADERS_ONCE([valgrind/memcheck.h valgrind/valgrind.h])
7211f918 1150
d562955e
TG
1151# ------------------------------------------------------------------------------
1152have_myhostname=no
f8c5a581 1153AC_ARG_ENABLE(myhostname, AS_HELP_STRING([--disable-myhostname], [disable nss-myhostname support]))
d562955e
TG
1154if test "x$enable_myhostname" != "xno"; then
1155 AC_HEADER_STDC
a3b6fafe 1156 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
1157
1158 AC_C_CONST
1159 AC_TYPE_SIZE_T
1160 AC_HEADER_TIME
1161
1162 AC_FUNC_MALLOC
1163 AC_FUNC_SELECT_ARGTYPES
1164 AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn])
1165
1166 have_myhostname=yes
1167fi
1168AM_CONDITIONAL(HAVE_MYHOSTNAME, [test "$have_myhostname" = "yes"])
1169
3e214785
KS
1170# ------------------------------------------------------------------------------
1171AC_ARG_ENABLE([gudev],
1172 AS_HELP_STRING([--disable-gudev], [disable Gobject libudev support @<:@default=enabled@:>@]),
1173 [], [enable_gudev=yes])
de1c301e 1174AS_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 1175AM_CONDITIONAL([ENABLE_GUDEV], [test "x$enable_gudev" = "xyes"])
de1c301e
LP
1176AS_IF([test "x$enable_gudev" = "xyes"], [ AC_DEFINE(HAVE_GLIB, 1, [Define if glib is available]) ])
1177
3e214785 1178# ------------------------------------------------------------------------------
75db9a77 1179have_manpages=no
4c2b0e4e 1180AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
4ca39b28 1181AS_IF([test "x$enable_manpages" != xno], [have_manpages=yes])
fe1fed02 1182AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
75db9a77 1183
4df5c00b
UTL
1184# ------------------------------------------------------------------------------
1185AC_ARG_ENABLE(hibernate,
1186 [AC_HELP_STRING([--disable-hibernate], [disable hibernation support])],
1187 enable_hibernate=$enableval, enable_hibernate=yes)
1188AM_CONDITIONAL(ENABLE_HIBERNATE, [test x$enable_hibernate = xyes])
1189
3e214785 1190# ------------------------------------------------------------------------------
12e34d9d
UTL
1191AC_ARG_ENABLE(ldconfig,
1192 [AC_HELP_STRING([--disable-ldconfig], [disable ldconfig])],
1193 enable_ldconfig=$enableval, enable_ldconfig=yes)
1194AM_CONDITIONAL(ENABLE_LDCONFIG, [test x$enable_ldconfig = xyes])
d1ab0ca0 1195
12e34d9d 1196# ------------------------------------------------------------------------------
34eff652
LP
1197# Location of the init scripts as mandated by LSB
1198SYSTEM_SYSVINIT_PATH=/etc/init.d
f1dd0c3f 1199SYSTEM_SYSVRCND_PATH=/etc/rc.d
12e84679 1200
136337ff 1201AC_ARG_WITH([sysvinit-path],
be31376e 1202 [AS_HELP_STRING([--with-sysvinit-path=PATH],
bc270841 1203 [Specify the path to where the SysV init scripts are located])],
be31376e
KS
1204 [SYSTEM_SYSVINIT_PATH="$withval"],
1205 [])
136337ff 1206
dee4c244
LP
1207AC_ARG_WITH([sysvrcnd-path],
1208 [AS_HELP_STRING([--with-sysvrcnd-path=PATH],
bc270841 1209 [Specify the path to the base directory for the SysV rcN.d directories])],
136337ff
TFH
1210 [SYSTEM_SYSVRCND_PATH="$withval"],
1211 [])
1212
07459bb6
FF
1213if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
1214 AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.])
1215 SYSTEM_SYSV_COMPAT="yes"
f975e971 1216 M4_DEFINES="$M4_DEFINES -DHAVE_SYSV_COMPAT"
07459bb6 1217elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
dee4c244 1218 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
1219else
1220 SYSTEM_SYSV_COMPAT="no"
1221fi
1222
bc270841
LP
1223AC_SUBST(SYSTEM_SYSVINIT_PATH)
1224AC_SUBST(SYSTEM_SYSVRCND_PATH)
1225AC_SUBST(M4_DEFINES)
1226
1227AM_CONDITIONAL(HAVE_SYSV_COMPAT, test "$SYSTEM_SYSV_COMPAT" = "yes")
1228
bef2733f 1229AC_ARG_WITH([tty-gid],
a05ea46d 1230 [AS_HELP_STRING([--with-tty-gid=GID],
bef2733f 1231 [Specify the numeric GID of the 'tty' group])],
f8b5d994
LP
1232 [TTY_GID="$withval"],
1233 [TTY_GID="5"])
1234
1235AC_DEFINE_UNQUOTED(TTY_GID, [$TTY_GID], [GID of the 'tty' group])
1236AC_SUBST(TTY_GID)
bef2733f 1237
d2d12cd1
LP
1238AC_ARG_WITH([dbuspolicydir],
1239 AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
1240 [],
25ee45f9 1241 [with_dbuspolicydir=$($PKG_CONFIG --variable=sysconfdir dbus-1)/dbus-1/system.d])
d122948d 1242
d2d12cd1
LP
1243AC_ARG_WITH([dbussessionservicedir],
1244 AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
1245 [],
25ee45f9 1246 [with_dbussessionservicedir=$($PKG_CONFIG --variable=session_bus_services_dir dbus-1)])
d122948d 1247
d2d12cd1
LP
1248AC_ARG_WITH([dbussystemservicedir],
1249 AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
1250 [],
03c14914 1251 [with_dbussystemservicedir=$(readlink -m $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../system-services)])
d122948d 1252
d2d12cd1
LP
1253AC_ARG_WITH([dbusinterfacedir],
1254 AS_HELP_STRING([--with-dbusinterfacedir=DIR], [D-Bus interface directory]),
1255 [],
03c14914 1256 [with_dbusinterfacedir=$(readlink -m $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../interfaces)])
d122948d 1257
db059f1b
MB
1258AC_ARG_WITH([bashcompletiondir],
1259 AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
1260 [],
25ee45f9
MB
1261 [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
1262 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
db059f1b
MB
1263 ] , [
1264 with_bashcompletiondir=${datadir}/bash-completion/completions
1265 ])])
1266
4f87c47b
WG
1267AC_ARG_WITH([zshcompletiondir],
1268 AS_HELP_STRING([--with-zshcompletiondir=DIR], [Zsh completions directory]),
1269 [], [with_zshcompletiondir=${datadir}/zsh/site-functions])
1270
b8079ae1
KS
1271AC_ARG_WITH([rootprefix],
1272 AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
39ad55a9 1273 [], [with_rootprefix=${ac_default_prefix}])
d2d12cd1 1274
ae446765
KS
1275AC_ARG_WITH([rootlibdir],
1276 AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
1277 [],
1278 [with_rootlibdir=${libdir}])
1279
9d3203b4 1280AC_ARG_WITH([pamlibdir],
b0cca7d8 1281 AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]),
9d3203b4
KS
1282 [],
1283 [with_pamlibdir=${with_rootlibdir}/security])
1284
5c390a4a
ZJS
1285AC_ARG_WITH([pamconfdir],
1286 AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration]),
1287 [],
1288 [with_pamconfdir=${sysconfdir}/pam.d])
1289
bc9bdbba
MG
1290AC_ARG_ENABLE([split-usr],
1291 AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]),
1292 [],
1293 [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [
1294 enable_split_usr=yes
1295 ], [
1296 enable_split_usr=no
1297 ])])
1298
1299AS_IF([test "x${enable_split_usr}" = "xyes"], [
2c6db6fb 1300 AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr])
bc9bdbba 1301])
2c6db6fb 1302
6fc00209
ZJS
1303# Work around intltoolize and gtk-doc problems in VPATH builds
1304AM_CONDITIONAL([ENABLE_GTK_DOC_TESTS], [test "x$0" = "x./configure"],
1305 [Define to do gtk-doc tests])
1306AS_IF([test "x$0" != "x./configure"], [
1307 AC_SUBST([INTLTOOL_UPDATE], [/bin/true])
1308])
1309
cee22bd3
HGB
1310AC_ARG_ENABLE(tests,
1311 [AC_HELP_STRING([--disable-tests], [disable tests])],
1312 enable_tests=$enableval, enable_tests=yes)
1313AM_CONDITIONAL(ENABLE_TESTS, [test x$enable_tests = xyes])
1314
99470154
MS
1315AC_ARG_ENABLE(hashmap-debug,
1316 [AC_HELP_STRING([--enable-hashmap-debug], [enable hashmap debugging])],
1317 enable_hashmap_debug=$enableval, enable_hashmap_debug=no)
1318AS_IF([test x$enable_hashmap_debug = xyes], [
1319 AC_DEFINE(ENABLE_HASHMAP_DEBUG, 1, [Define if hashmap debugging is to be enabled])
1320])
1321
d2d12cd1
LP
1322AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
1323AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
1324AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
1325AC_SUBST([dbusinterfacedir], [$with_dbusinterfacedir])
db059f1b 1326AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
4f87c47b 1327AC_SUBST([zshcompletiondir], [$with_zshcompletiondir])
8c6db833 1328AC_SUBST([pamlibdir], [$with_pamlibdir])
5c390a4a 1329AC_SUBST([pamconfdir], [$with_pamconfdir])
b8079ae1 1330AC_SUBST([rootprefix], [$with_rootprefix])
ae446765 1331AC_SUBST([rootlibdir], [$with_rootlibdir])
8c4a3079 1332
3e214785
KS
1333AC_CONFIG_FILES([
1334 Makefile po/Makefile.in
bb061708
KS
1335 docs/libudev/Makefile
1336 docs/libudev/version.xml
1337 docs/gudev/Makefile
1338 docs/gudev/version.xml
3e214785
KS
1339])
1340
a45a909f 1341AC_OUTPUT
ae446765 1342AC_MSG_RESULT([
0571e011
LP
1343 $PACKAGE_NAME $VERSION
1344
7f4e0805 1345 libcryptsetup: ${have_libcryptsetup}
5b6319dc 1346 PAM: ${have_pam}
12716238 1347 AUDIT: ${have_audit}
81611586 1348 IMA: ${have_ima}
eef65bf3 1349 AppArmor: ${have_apparmor}
12716238 1350 SELinux: ${have_selinux}
c0467cf3 1351 SECCOMP: ${have_seccomp}
2b3e18de 1352 SMACK: ${have_smack}
807e17f0 1353 XZ: ${have_xz}
d89c8fdf 1354 LZ4: ${have_lz4}
5eda94dd 1355 ACL: ${have_acl}
7560fffc 1356 GCRYPT: ${have_gcrypt}
f6a971bc 1357 QRENCODE: ${have_qrencode}
7b17a7d7 1358 MICROHTTPD: ${have_microhttpd}
77e68fa2 1359 CHKCONFIG: ${have_chkconfig}
60313199 1360 GNUTLS: ${have_gnutls}
36ef43ed 1361 libcurl: ${have_libcurl}
bdf10b5b 1362 libidn: ${have_libidn}
8d4e028f 1363 ELFUTILS: ${have_elfutils}
27669061 1364 binfmt: ${have_binfmt}
e5e83e83 1365 vconsole: ${have_vconsole}
83fdc450 1366 bootchart: ${have_bootchart}
4de85612 1367 quotacheck: ${have_quotacheck}
6351163b 1368 tmpfiles: ${have_tmpfiles}
1b992147 1369 sysusers: ${have_sysusers}
418b9be5 1370 firstboot: ${have_firstboot}
4de85612 1371 randomseed: ${have_randomseed}
3731acf1 1372 backlight: ${have_backlight}
3990f247 1373 rfkill: ${have_rfkill}
2a018e83 1374 logind: ${have_logind}
1ee306e1 1375 machined: ${have_machined}
b2e9fb99 1376 hostnamed: ${have_hostnamed}
f47cd184 1377 timedated: ${have_timedated}
a91df40e 1378 timesyncd: ${have_timesyncd}
e8af6973 1379 default NTP servers: ${NTP_SERVERS}
661278ee 1380 time epoch: ${TIME_EPOCH}
4cd1eaa5 1381 localed: ${have_localed}
7a243b22 1382 networkd: ${have_networkd}
091a364c 1383 resolved: ${have_resolved}
e16cb2e4 1384 default DNS servers: ${DNS_SERVERS}
f5e04665 1385 coredump: ${have_coredump}
46ba8aae 1386 polkit: ${have_polkit}
b872e9a0 1387 efi: ${have_efi}
e3043162 1388 kmod: ${have_kmod}
d4f5a1f4 1389 xkbcommon: ${have_xkbcommon}
f553b3b1 1390 blkid: ${have_blkid}
ac6b760c 1391 dbus: ${have_dbus}
d562955e 1392 nss-myhostname: ${have_myhostname}
3e214785
KS
1393 gudev: ${enable_gudev}
1394 gintrospection: ${enable_introspection}
84da4a30 1395 terminal: ${have_terminal}
626851be 1396 kdbus: ${have_kdbus}
8d7e170a
LP
1397 Python: ${have_python}
1398 Python Headers: ${have_python_devel}
2f4da3e6
ZJS
1399 man pages: ${have_manpages}
1400 gtk-doc: ${enable_gtk_doc}
6aea6d10 1401 test coverage: ${have_coverage}
2f4da3e6
ZJS
1402 Split /usr: ${enable_split_usr}
1403 SysV compatibility: ${SYSTEM_SYSV_COMPAT}
53e856e1 1404 compatibility libraries: ${have_compat_libs}
37161c51 1405 utmp/wtmp support: ${have_utmp}
3e214785 1406
8c4a3079 1407 prefix: ${prefix}
b8079ae1 1408 rootprefix: ${with_rootprefix}
3e214785
KS
1409 sysconf dir: ${sysconfdir}
1410 datarootdir: ${datarootdir}
1411 includedir: ${includedir}
1412 include_prefix: ${INCLUDE_PREFIX}
ae446765
KS
1413 lib dir: ${libdir}
1414 rootlib dir: ${with_rootlibdir}
2f4da3e6
ZJS
1415 SysV init scripts: ${SYSTEM_SYSVINIT_PATH}
1416 SysV rc?.d directories: ${SYSTEM_SYSVRCND_PATH}
1417 Build Python: ${PYTHON}
1418 Installation Python: ${PYTHON_BINARY}
f2ec0646 1419 sphinx binary: ${SPHINX_BUILD}
2c6db6fb 1420 PAM modules dir: ${with_pamlibdir}
5c390a4a 1421 PAM configuration dir: ${with_pamconfdir}
2c6db6fb
LP
1422 D-Bus policy dir: ${with_dbuspolicydir}
1423 D-Bus session dir: ${with_dbussessionservicedir}
1424 D-Bus system dir: ${with_dbussystemservicedir}
1425 D-Bus interfaces dir: ${with_dbusinterfacedir}
db059f1b 1426 Bash completions dir: ${with_bashcompletiondir}
4f87c47b 1427 Zsh completions dir: ${with_zshcompletiondir}
b1c4ca25
LP
1428 Extra start script: ${RC_LOCAL_SCRIPT_PATH_START}
1429 Extra stop script: ${RC_LOCAL_SCRIPT_PATH_STOP}
45df1f2c 1430 Debug shell: ${SUSHELL} @ ${DEBUGTTY}
f8b5d994 1431 TTY GID: ${TTY_GID}
f7dc3ab9
LP
1432 Maximum System UID: ${SYSTEM_UID_MAX}
1433 Maximum System GID: ${SYSTEM_GID_MAX}
ad95fd1d 1434 Certificate root: ${CERTIFICATEROOT}
66be6554 1435
5a45a936 1436 CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
1f048a6b 1437 CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
5a45a936 1438 LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
a6c0b31d
ZJS
1439 PYTHON_CFLAGS: ${PYTHON_DEVEL_CFLAGS}
1440 PYTHON_LIBS: ${PYTHON_DEVEL_LIBS}
ae446765 1441])