]> git.ipfire.org Git - thirdparty/systemd.git/blame - configure.ac
networkd: remove unused variable
[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],
252ff40a 23 [215],
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
FB
64AM_NLS
65AS_IF([test x"$enable_nls" != xno], [
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 \
9f64229f 192 -fdiagnostics-color \
9b85fc6a
GSB
193 -fno-strict-aliasing \
194 -fvisibility=hidden \
195 -ffunction-sections \
5a45a936 196 -fdata-sections \
c1663b9d 197 -fstack-protector \
aca33b07 198 -fstack-protector-strong \
2a4d1ec1 199 -fPIE \
c1663b9d 200 --param=ssp-buffer-size=4])
b850b06e
KS
201AS_CASE([$CFLAGS], [*-O[[12345\ ]]*],
202 [CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
235c6e62 203 -flto -ffat-lto-objects])],
b850b06e 204 [AC_MSG_RESULT([skipping -flto, optimization not enabled])])
ae0ceefc 205AC_SUBST([OUR_CFLAGS], "$with_cflags $sanitizer_cflags")
5a45a936 206
03a170c0 207AS_CASE([$CFLAGS], [*-O[[12345\ ]]*],
a6c0b31d
ZJS
208 [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
209 -Wp,-D_FORTIFY_SOURCE=2])],
210 [AC_MSG_RESULT([skipping -D_FORTIFY_SOURCE, optimization not enabled])])
ae0ceefc 211AC_SUBST([OUR_CPPFLAGS], "$with_cppflags $sanitizer_cppflags")
9e7adc3a
LDM
212
213CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\
9b85fc6a 214 -Wl,--as-needed \
9d2d0fe1 215 -Wl,--no-undefined \
5a45a936
LP
216 -Wl,--gc-sections \
217 -Wl,-z,relro \
39c4ead2 218 -Wl,-z,now \
2a4d1ec1 219 -pie \
39c4ead2 220 -Wl,-fuse-ld=gold])
ae0ceefc 221AC_SUBST([OUR_LDFLAGS], "$with_ldflags $sanitizer_ldflags")
47be870b 222
ccd06097
ZJS
223AC_CHECK_SIZEOF(pid_t)
224AC_CHECK_SIZEOF(uid_t)
1c231f56 225AC_CHECK_SIZEOF(gid_t)
de0671ee
ZJS
226AC_CHECK_SIZEOF(time_t)
227AC_CHECK_SIZEOF(rlim_t,,[
228 #include <sys/time.h>
229 #include <sys/resource.h>
230])
ccd06097 231
c937e0d5
ZJS
232# ------------------------------------------------------------------------------
233# we use python to build the man page index, and for systemd-python
234have_python=no
c937e0d5
ZJS
235AC_ARG_WITH([python],
236 [AS_HELP_STRING([--without-python], [Disable building the man page index and systemd-python (default: test)])])
237
32dcef3a 238have_lxml=no
c937e0d5
ZJS
239AS_IF([test "x$with_python" != "xno"], [
240 AM_PATH_PYTHON(,, [:])
be8737ae
FB
241 AS_IF([test "x$PYTHON" != "x:"], [
242 AC_MSG_CHECKING([for python lxml module])
243 AS_IF(["$PYTHON" -c 'import lxml' 2>/dev/null], [have_lxml=yes])
244 AC_MSG_RESULT([$have_lxml])
245 AS_IF([test "x$have_lxml" = "xyes"], [have_python=yes],
246 [AC_MSG_WARN([*** python support requires python-lxml module installed])])
247 ])
c937e0d5 248])
747cf8cd
ZJS
249AS_IF([test "$have_python" != "yes"], [
250 AS_IF([test "$with_python" = "yes"],
251 [AC_MSG_ERROR([*** python support requested but python support not found])])
252 AS_IF([test "$with_python" != "no"],
253 [AC_MSG_WARN([*** python support not found, some documentation cannot be built])])
254])
255
c937e0d5
ZJS
256AM_CONDITIONAL([HAVE_PYTHON], [test "x$have_python" = "xyes"])
257AS_IF([test "x$PYTHON_BINARY" = "x"],
258 [AS_IF([test "x$have_python" = "xyes"],
25ee45f9 259 [PYTHON_BINARY="$(which "$PYTHON")"],
c937e0d5
ZJS
260 [PYTHON_BINARY=/usr/bin/python])])
261AC_ARG_VAR(PYTHON_BINARY, [Python binary used to launch installed scripts])
262
1864b0e3
ZJS
263AS_IF([test "x$have_python" != "xyes" -a "x$enable_python_devel" = "xyes"],
264 [AC_MSG_ERROR([*** python-devel support requires --with-python])])
265
a6c0b31d
ZJS
266have_python_devel=no
267AC_ARG_ENABLE(python_devel, AS_HELP_STRING([--disable-python-devel], [Do not build python modules]))
1864b0e3 268AS_IF([test "x$have_python" = "xyes" -a "x$enable_python_devel" != "xno"], [
a6c0b31d
ZJS
269 PKG_CHECK_MODULES([PYTHON_DEVEL], [python-${PYTHON_VERSION}],
270 [have_python_devel=yes],
271 [PKG_CHECK_MODULES([PYTHON_DEVEL], [python],
272 [have_python_devel=yes],
273 [have_python_devel=no])])
274 AS_IF([test "x$have_python_devel" = xno -a "x$enable_python_devel" = xyes],
275 [AC_MSG_ERROR([*** python-devel support requested but libraries not found])])
f2ec0646 276 AC_PATH_PROGS(SPHINX_BUILD, sphinx-build-${PYTHON_VERSION} sphinx-build)
c937e0d5
ZJS
277])
278AM_CONDITIONAL([HAVE_PYTHON_DEVEL], [test "$have_python_devel" = "yes"])
279
280# ------------------------------------------------------------------------------
281
afea26ad 282AC_SEARCH_LIBS([dlsym], [dl], [], [AC_MSG_ERROR([*** Dynamic linking loader library not found])])
7959ff99 283AC_CHECK_HEADERS([sys/capability.h], [], [AC_MSG_ERROR([*** POSIX caps headers not found])])
4b357e15 284AC_CHECK_HEADERS([linux/btrfs.h], [], [])
7959ff99
KS
285
286# unconditionally pull-in librt with old glibc versions
287AC_SEARCH_LIBS([clock_gettime], [rt], [], [])
85f19d82
MB
288
289save_LIBS="$LIBS"
290LIBS=
47be870b 291AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
85f19d82 292CAP_LIBS="$LIBS"
7959ff99
KS
293AC_SUBST(CAP_LIBS)
294
295LIBS=
fba1ea06
SL
296AC_SEARCH_LIBS([mq_open], [rt], [], [AC_MSG_ERROR([*** POSIX RT library not found])])
297RT_LIBS="$LIBS"
298AC_SUBST(RT_LIBS)
85f19d82 299LIBS="$save_LIBS"
47be870b 300
9388e99e 301AC_CHECK_FUNCS([fanotify_init fanotify_mark])
4db17f29 302AC_CHECK_FUNCS([__secure_getenv secure_getenv])
81577dc2
ZJS
303AC_CHECK_DECLS([gettid, pivot_root, name_to_handle_at, setns, LO_FLAGS_PARTSCAN],
304 [], [], [[
305#include <sys/types.h>
a8348796 306#include <unistd.h>
9388e99e 307#include <sys/mount.h>
3b794314 308#include <fcntl.h>
5f381b35 309#include <sched.h>
81577dc2
ZJS
310#include <linux/loop.h>
311]])
312
313AC_CHECK_DECLS([IFLA_PHYS_PORT_ID,
314 IFLA_BOND_AD_INFO,
315 IFLA_VLAN_PROTOCOL,
316 IFLA_VXLAN_LOCAL6,
317 IFLA_IPTUN_6RD_RELAY_PREFIXLEN,
318 IFLA_BRIDGE_VLAN_INFO],
319[], [], [[
320#include <inttypes.h>
321#include <netinet/in.h>
322#include <netinet/ether.h>
323#include <linux/rtnetlink.h>
324#include <net/if.h>
325#include <linux/ip.h>
326#include <linux/if_tunnel.h>
327#include <linux/if_link.h>
328#include <linux/if_bridge.h>
329]])
a8348796 330
b237ef2c 331# This makes sure pkg.m4 is available.
a9b5b032 332m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
d1ab0ca0 333
22703094 334# ------------------------------------------------------------------------------
ac6b760c
ZJS
335have_dbus=no
336AC_ARG_ENABLE(dbus, AS_HELP_STRING([--disable-dbus], [disable usage of dbus-1 in tests]))
8114dedc 337AS_IF([test "x$enable_dbus" != "xno"], [
ac6b760c
ZJS
338 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.3.2],
339 [AC_DEFINE(HAVE_DBUS, 1, [Define if dbus-1 library is available]) have_dbus=yes],
340 [have_dbus=no])
341 AS_IF([test "x$have_dbus" = "xno" -a "x$enable_dbus" = "xyes"],
342 [AC_MSG_ERROR([*** dbus-1 support requested but libraries not found])])])
22703094 343AM_CONDITIONAL(HAVE_DBUS, [test "$have_dbus" = "yes"])
4b357e15 344
53e856e1
ZJS
345# ------------------------------------------------------------------------------
346have_compat_libs=no
347AC_ARG_ENABLE([compat_libs], AS_HELP_STRING([--enable-compat-libs],[Enable creation of compatibility libraries]),
348 [case "${enableval}" in
349 yes) have_compat_libs=yes ;;
350 no) have_compat_libs=no ;;
351 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-libs) ;;
352 esac],
353 [have_compat_libs=no])
354AM_CONDITIONAL([ENABLE_COMPAT_LIBS], [test "$have_compat_libs" = "yes"])
355
6aea6d10
TA
356# ------------------------------------------------------------------------------
357have_coverage=no
358AC_ARG_ENABLE(coverage, AS_HELP_STRING([--enable-coverage], [enable test coverage]))
359if test "x$enable_coverage" = "xyes" ; then
360 AC_CHECK_PROG(lcov_found, [lcov], [yes], [no])
361 if test "x$lcov_found" = xno ; then
362 AC_MSG_ERROR([*** lcov support requested but the program was not found])
363 else
364 lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`"
365 lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`"
366 if test "$lcov_version_major" -eq 1 -a "$lcov_version_minor" -lt 10; then
367 AC_MSG_ERROR([*** lcov version is too old. 1.10 required])
368 else
369 have_coverage=yes
370 CC_CHECK_FLAGS_APPEND([with_coverage_cflags], [CFLAGS], [\
371 -fprofile-arcs \
372 -ftest-coverage])
373 AC_SUBST([OUR_CFLAGS], "$with_cflags $with_coverage_cflags")
374 fi
375 fi
376fi
377AM_CONDITIONAL(ENABLE_COVERAGE, [test "$have_coverage" = "yes"])
378
e3043162
TG
379# ------------------------------------------------------------------------------
380have_kmod=no
381AC_ARG_ENABLE(kmod, AS_HELP_STRING([--disable-kmod], [disable loadable modules support]))
382if test "x$enable_kmod" != "xno"; then
e2ca86cf
DR
383 PKG_CHECK_EXISTS([ libkmod ], have_kmod=yes, have_kmod=no)
384 if test "x$have_kmod" = "xyes"; then
a18535d9 385 PKG_CHECK_MODULES(KMOD, [ libkmod >= 15 ],
e2ca86cf 386 [AC_DEFINE(HAVE_KMOD, 1, [Define if kmod is available])],
70d83209 387 AC_MSG_ERROR([*** kmod version >= 15 not found]))
e2ca86cf 388 fi
e3043162 389 if test "x$have_kmod" = xno -a "x$enable_kmod" = xyes; then
c4955740 390 AC_MSG_ERROR([*** kmod support requested, but libraries not found])
e3043162
TG
391 fi
392fi
393AM_CONDITIONAL(HAVE_KMOD, [test "$have_kmod" = "yes"])
f553b3b1
AO
394
395# ------------------------------------------------------------------------------
396have_blkid=no
397AC_ARG_ENABLE(blkid, AS_HELP_STRING([--disable-blkid], [disable blkid support]))
398if test "x$enable_blkid" != "xno"; then
399 PKG_CHECK_MODULES(BLKID, [ blkid >= 2.20 ],
400 [AC_DEFINE(HAVE_BLKID, 1, [Define if blkid is available]) have_blkid=yes], have_blkid=no)
401 if test "x$have_blkid" = xno -a "x$enable_blkid" = xyes; then
402 AC_MSG_ERROR([*** blkid support requested but libraries not found])
403 fi
404fi
405AM_CONDITIONAL(HAVE_BLKID, [test "$have_blkid" = "yes"])
728beb28 406
c0467cf3
RC
407# ------------------------------------------------------------------------------
408have_seccomp=no
409AC_ARG_ENABLE(seccomp, AS_HELP_STRING([--disable-seccomp], [Disable optional SECCOMP support]))
410if test "x$enable_seccomp" != "xno"; then
411 PKG_CHECK_MODULES(SECCOMP, [libseccomp >= 1.0.0],
17df7223
LP
412 [AC_DEFINE(HAVE_SECCOMP, 1, [Define if seccomp is available])
413 have_seccomp=yes
414 M4_DEFINES="$M4_DEFINES -DHAVE_SECCOMP"],
c0467cf3
RC
415 [have_seccomp=no])
416 if test "x$have_seccomp" = "xno" -a "x$enable_seccomp" = "xyes"; then
417 AC_MSG_ERROR([*** seccomp support requested but libraries not found])
418 fi
419fi
420AM_CONDITIONAL(HAVE_SECCOMP, [test "$have_seccomp" = "yes"])
421
3e214785 422# ------------------------------------------------------------------------------
81611586
RS
423have_ima=yes
424AC_ARG_ENABLE([ima], AS_HELP_STRING([--disable-ima],[Disable optional IMA support]),
425 [case "${enableval}" in
426 yes) have_ima=yes ;;
427 no) have_ima=no ;;
428 *) AC_MSG_ERROR(bad value ${enableval} for --disable-ima) ;;
429 esac],
430 [have_ima=yes])
431
432if test "x${have_ima}" != xno ; then
433 AC_DEFINE(HAVE_IMA, 1, [Define if IMA is available])
434fi
435
77e68fa2
LP
436# ------------------------------------------------------------------------------
437have_chkconfig=yes
438AC_ARG_ENABLE([chkconfig], AS_HELP_STRING([--disable-chkconfig],[Disable optional chkconfig support]),
439 [case "${enableval}" in
440 yes) have_chkconfig=yes ;;
441 no) have_chkconfig=no ;;
442 *) AC_MSG_ERROR(bad value ${enableval} for --disable-chkconfig) ;;
443 esac],
444 [AC_PATH_PROG(CHKCONFIG, chkconfig)
445 if test -z "$CHKCONFIG"; then
446 have_chkconfig=no
447 else
448 have_chkconfig=yes
449 fi])
450
451if test "x${have_chkconfig}" != xno ; then
452 AC_DEFINE(HAVE_CHKCONFIG, 1, [Define if CHKCONFIG is available])
453fi
454
3e214785 455# ------------------------------------------------------------------------------
591622d7
LP
456have_selinux=no
457AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
458if test "x$enable_selinux" != "xno"; then
3f8cc098 459 PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9],
6a6751fe
LP
460 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available])
461 have_selinux=yes
462 M4_DEFINES="$M4_DEFINES -DHAVE_SELINUX"],
463 [have_selinux=no])
591622d7
LP
464 if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
465 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
466 fi
56cf987f 467fi
591622d7 468AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
45df1f2c 469
eef65bf3
MS
470have_apparmor=no
471AC_ARG_ENABLE(apparmor, AS_HELP_STRING([--disable-apparmor], [Disable optional AppArmor support]))
472if test "x$enable_apparmor" != "xno"; then
473 PKG_CHECK_MODULES([APPARMOR], [libapparmor],
474 [AC_DEFINE(HAVE_APPARMOR, 1, [Define if AppArmor is available])
475 have_apparmor=yes
476 M4_DEFINES="$M4_DEFINES -DHAVE_APPARMOR"],
477 [have_apparmor=no])
478 if test "x$have_apparmor" = xno -a "x$enable_apparmor" = xyes; then
479 AC_MSG_ERROR([*** AppArmor support requested but libraries not found])
480 fi
481fi
482AM_CONDITIONAL(HAVE_APPARMOR, [test "$have_apparmor" = "yes"])
483
484
45df1f2c
CR
485AC_ARG_WITH(debug-shell,
486 AS_HELP_STRING([--with-debug-shell=PATH],
487 [Path to debug shell binary]),
488 [SUSHELL="$withval"],[
489 AS_IF([test "x${have_selinux}" != "xno"], [SUSHELL="/sbin/sushell"] , [SUSHELL="/bin/sh"])])
490
5ec6b15b 491AC_SUBST(SUSHELL)
56cf987f 492
45df1f2c
CR
493AC_ARG_WITH([debug-tty],
494 AS_HELP_STRING([--with-debug-tty=PATH],
495 [Specify the tty device for debug shell]),
496 [DEBUGTTY="$withval"],
497 [DEBUGTTY=/dev/tty9])
498
499AC_SUBST(DEBUGTTY)
500
3e214785 501# ------------------------------------------------------------------------------
807e17f0
LP
502have_xz=no
503AC_ARG_ENABLE(xz, AS_HELP_STRING([--disable-xz], [Disable optional XZ support]))
504if test "x$enable_xz" != "xno"; then
505 PKG_CHECK_MODULES(XZ, [ liblzma ],
d89c8fdf 506 [AC_DEFINE(HAVE_XZ, 1, [Define if XZ is available]) have_xz=yes])
807e17f0 507 if test "x$have_xz" = xno -a "x$enable_xz" = xyes; then
d89c8fdf 508 AC_MSG_ERROR([*** XZ support requested but libraries not found])
807e17f0
LP
509 fi
510fi
511AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"])
512
d89c8fdf
ZJS
513# ------------------------------------------------------------------------------
514have_lz4=no
515AC_ARG_ENABLE(lz4, AS_HELP_STRING([--enable-lz4], [Enable optional LZ4 support]))
516AS_IF([test "x$enable_lz4" == "xyes"], [
517 AC_CHECK_HEADERS(lz4.h,
518 [AC_DEFINE(HAVE_LZ4, 1, [Define in LZ4 is available]) have_lz4=yes],
519 [AC_MSG_ERROR([*** LZ4 support requested but headers not found])])
520])
521AM_CONDITIONAL(HAVE_LZ4, [test "$have_lz4" = "yes"])
522
3b1a55e1
ZJS
523AM_CONDITIONAL(HAVE_COMPRESSION, [test "$have_xz" = "yes" -o "$have_lz4" = "yes"])
524
3e214785 525# ------------------------------------------------------------------------------
5b6319dc
LP
526AC_ARG_ENABLE([pam],
527 AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
528 [case "${enableval}" in
529 yes) have_pam=yes ;;
530 no) have_pam=no ;;
531 *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
532 esac],
533 [have_pam=auto])
534
535if test "x${have_pam}" != xno ; then
536 AC_CHECK_HEADERS(
537 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
538 [have_pam=yes],
539 [if test "x$have_pam" = xyes ; then
540 AC_MSG_ERROR([*** PAM headers not found.])
541 fi])
542
543 AC_CHECK_LIB(
544 [pam],
545 [pam_syslog],
546 [have_pam=yes],
547 [if test "x$have_pam" = xyes ; then
548 AC_MSG_ERROR([*** libpam not found.])
549 fi])
550
551 if test "x$have_pam" = xyes ; then
552 PAM_LIBS="-lpam -lpam_misc"
553 AC_DEFINE(HAVE_PAM, 1, [PAM available])
6a6751fe 554 M4_DEFINES="$M4_DEFINES -DHAVE_PAM"
812cce32
LP
555 else
556 have_pam=no
5b6319dc
LP
557 fi
558else
559 PAM_LIBS=
560fi
561AC_SUBST(PAM_LIBS)
562AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
563
3e214785 564# ------------------------------------------------------------------------------
5eda94dd
LP
565AC_ARG_ENABLE([acl],
566 AS_HELP_STRING([--disable-acl],[Disable optional ACL support]),
567 [case "${enableval}" in
568 yes) have_acl=yes ;;
569 no) have_acl=no ;;
570 *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;;
571 esac],
572 [have_acl=auto])
573
574if test "x${have_acl}" != xno ; then
575 AC_CHECK_HEADERS(
576 [sys/acl.h acl/libacl.h],
577 [have_acl=yes],
578 [if test "x$have_acl" = xyes ; then
579 AC_MSG_ERROR([*** ACL headers not found.])
580 fi])
581
582 AC_CHECK_LIB(
583 [acl],
584 [acl_get_file],
585 [have_acl=yes],
586 [if test "x$have_acl" = xyes ; then
587 AC_MSG_ERROR([*** libacl not found.])
588 fi])
589
590 if test "x$have_acl" = xyes ; then
591 ACL_LIBS="-lacl"
592 AC_DEFINE(HAVE_ACL, 1, [ACL available])
593 else
594 have_acl=no
595 fi
596else
597 ACL_LIBS=
598fi
599AC_SUBST(ACL_LIBS)
600AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno])
601
2b3e18de
KL
602# ------------------------------------------------------------------------------
603AC_ARG_ENABLE([smack], AS_HELP_STRING([--disable-smack],[Disable optional SMACK support]),
604 [case "${enableval}" in
605 yes) have_smack=yes ;;
606 no) have_smack=no ;;
607 *) AC_MSG_ERROR(bad value ${enableval} for --disable-smack) ;;
608 esac],
609 [have_smack=auto])
610
d2edfae0
KS
611if test "x${have_smack}" = xauto; then
612 M4_DEFINES="$M4_DEFINES -DHAVE_SMACK"
613 have_smack=yes
2b3e18de
KL
614fi
615
8b197c3a
AK
616AC_ARG_WITH(smack-run-label,
617AS_HELP_STRING([--with-smack-run-label=STRING],
618 [run systemd --system with a specific SMACK label]),
619 [AC_DEFINE_UNQUOTED(SMACK_RUN_LABEL, ["$withval"], [Run with a smack label])],
620 [])
621
2b3e18de
KL
622if test "x${have_smack}" = xyes ; then
623 AC_DEFINE(HAVE_SMACK, 1, [Define if SMACK is available])
624fi
625
7560fffc 626# ------------------------------------------------------------------------------
feb12d3e 627AC_ARG_ENABLE([gcrypt],
7560fffc
LP
628 AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]),
629 [case "${enableval}" in
630 yes) have_gcrypt=yes ;;
631 no) have_gcrypt=no ;;
632 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gcrypt) ;;
633 esac],
634 [have_gcrypt=auto])
635
636if test "x${have_gcrypt}" != xno ; then
637 AM_PATH_LIBGCRYPT(
638 [1.4.5],
639 [have_gcrypt=yes],
640 [if test "x$have_gcrypt" = xyes ; then
641 AC_MSG_ERROR([*** GCRYPT headers not found.])
642 fi])
643
644 if test "x$have_gcrypt" = xyes ; then
645 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
646 GCRYPT_CFLAGS="$LIBGCRYPT_CFLAGS"
647 AC_DEFINE(HAVE_GCRYPT, 1, [GCRYPT available])
648 else
649 have_gcrypt=no
650 fi
651else
652 GCRYPT_LIBS=
653 GCRYPT_CFLAGS=
654fi
655AC_SUBST(GCRYPT_LIBS)
656AC_SUBST(GCRYPT_CFLAGS)
657AM_CONDITIONAL([HAVE_GCRYPT], [test "x$have_gcrypt" != xno])
658
3e214785 659# ------------------------------------------------------------------------------
4927fcae
LP
660AC_ARG_ENABLE([audit],
661 AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]),
662 [case "${enableval}" in
663 yes) have_audit=yes ;;
664 no) have_audit=no ;;
665 *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;;
666 esac],
667 [have_audit=auto])
668
669if test "x${have_audit}" != xno ; then
670 AC_CHECK_HEADERS(
671 [libaudit.h],
672 [have_audit=yes],
673 [if test "x$have_audit" = xyes ; then
674 AC_MSG_ERROR([*** AUDIT headers not found.])
675 fi])
676
677 AC_CHECK_LIB(
678 [audit],
679 [audit_open],
680 [have_audit=yes],
681 [if test "x$have_audit" = xyes ; then
682 AC_MSG_ERROR([*** libaudit not found.])
683 fi])
684
685 if test "x$have_audit" = xyes ; then
686 AUDIT_LIBS="-laudit"
687 AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available])
688 else
689 have_audit=no
690 fi
691else
692 AUDIT_LIBS=
693fi
694AC_SUBST(AUDIT_LIBS)
695
8d4e028f
LP
696# ------------------------------------------------------------------------------
697AC_ARG_ENABLE([elfutils],
698 AS_HELP_STRING([--disable-elfutils],[Disable optional ELFUTILS support]),
699 [case "${enableval}" in
700 yes) have_elfutils=yes ;;
701 no) have_elfutils=no ;;
702 *) AC_MSG_ERROR(bad value ${enableval} for --disable-elfutils) ;;
703 esac],
704 [have_elfutils=auto])
705
706if test "x${have_elfutils}" != xno ; then
707 AC_CHECK_HEADERS(
708 [elfutils/libdwfl.h],
972bded0 709 [],
8d4e028f
LP
710 [if test "x$have_elfutils" = xyes ; then
711 AC_MSG_ERROR([*** ELFUTILS headers not found.])
712 fi])
713
714 AC_CHECK_LIB(
715 [dw],
716 [dwfl_begin],
972bded0 717 [],
8d4e028f
LP
718 [if test "x$have_elfutils" = xyes ; then
719 AC_MSG_ERROR([*** ELFUTILS libs not found.])
720 fi])
721
972bded0
MM
722 AC_CHECK_LIB(
723 [dw],
724 [dwfl_core_file_attach],
725 [have_elfutils=yes],
726 [if test "x$have_elfutils" = xyes ; then
727 AC_MSG_ERROR([*** ELFUTILS >= 158 is required.])
728 fi])
729
8d4e028f
LP
730 if test "x$have_elfutils" = xyes ; then
731 ELFUTILS_LIBS="-lelf -ldw"
732 AC_DEFINE(HAVE_ELFUTILS, 1, [ELFUTILS available])
733 else
734 have_elfutils=no
735 fi
736else
737 ELFUTILS_LIBS=
738fi
739AC_SUBST(ELFUTILS_LIBS)
740AM_CONDITIONAL(HAVE_ELFUTILS, [test "$have_elfutils" = "yes"])
741
3e214785 742# ------------------------------------------------------------------------------
7f4e0805
LP
743have_libcryptsetup=no
744AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
745if test "x$enable_libcryptsetup" != "xno"; then
8cf3ca80 746 PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup >= 1.6.0 ],
7f4e0805 747 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
7f4e0805 748 if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
591622d7 749 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
7f4e0805
LP
750 fi
751fi
752AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
753
f6a971bc
LP
754# ------------------------------------------------------------------------------
755have_qrencode=no
756AC_ARG_ENABLE(qrencode, AS_HELP_STRING([--disable-qrencode], [disable qrencode support]))
757if test "x$enable_qrencode" != "xno"; then
758 PKG_CHECK_MODULES(QRENCODE, [ libqrencode ],
759 [AC_DEFINE(HAVE_QRENCODE, 1, [Define if qrencode is available]) have_qrencode=yes], have_qrencode=no)
760 if test "x$have_qrencode" = xno -a "x$enable_qrencode" = xyes; then
761 AC_MSG_ERROR([*** qrencode support requested but libraries not found])
762 fi
763fi
764AM_CONDITIONAL(HAVE_QRENCODE, [test "$have_qrencode" = "yes"])
765
7b17a7d7
LP
766# ------------------------------------------------------------------------------
767have_microhttpd=no
768AC_ARG_ENABLE(microhttpd, AS_HELP_STRING([--disable-microhttpd], [disable microhttpd support]))
769if test "x$enable_microhttpd" != "xno"; then
3f573096 770 PKG_CHECK_MODULES(MICROHTTPD, [libmicrohttpd >= 0.9.33],
7b17a7d7
LP
771 [AC_DEFINE(HAVE_MICROHTTPD, 1, [Define if microhttpd is available]) have_microhttpd=yes], have_microhttpd=no)
772 if test "x$have_microhttpd" = xno -a "x$enable_microhttpd" = xyes; then
773 AC_MSG_ERROR([*** microhttpd support requested but libraries not found])
774 fi
775fi
776AM_CONDITIONAL(HAVE_MICROHTTPD, [test "$have_microhttpd" = "yes"])
777
60313199
ZJS
778# ------------------------------------------------------------------------------
779have_gnutls=no
780AC_ARG_ENABLE(gnutls, AS_HELP_STRING([--disable-gnutls], [disable gnutls support]))
781if test "x$enable_gnutls" != "xno"; then
f12be7e8 782 PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.1.4],
60313199
ZJS
783 [AC_DEFINE(HAVE_GNUTLS, 1, [Define if gnutls is available]) have_gnutls=yes], have_gnutls=no)
784 if test "x$have_gnutls" = xno -a "x$enable_gnutls" = xyes; then
785 AC_MSG_ERROR([*** gnutls support requested but libraries not found])
786 fi
787fi
788AM_CONDITIONAL(HAVE_GNUTLS, [test "$have_gnutls" = "yes"])
789
3e214785 790# ------------------------------------------------------------------------------
27669061
MV
791have_binfmt=no
792AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
793if test "x$enable_binfmt" != "xno"; then
be31376e 794 have_binfmt=yes
27669061
MV
795fi
796AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
797
3e214785 798# ------------------------------------------------------------------------------
e5e83e83
LP
799have_vconsole=no
800AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool]))
801if test "x$enable_vconsole" != "xno"; then
be31376e 802 have_vconsole=yes
e5e83e83
LP
803fi
804AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"])
805
3e214785 806# ------------------------------------------------------------------------------
e5e83e83
LP
807have_readahead=no
808AC_ARG_ENABLE(readahead, AS_HELP_STRING([--disable-readahead], [disable readahead tools]))
809if test "x$enable_readahead" != "xno"; then
be31376e 810 have_readahead=yes
e5e83e83
LP
811fi
812AM_CONDITIONAL(ENABLE_READAHEAD, [test "$have_readahead" = "yes"])
813
83fdc450
AK
814# ------------------------------------------------------------------------------
815have_bootchart=no
816AC_ARG_ENABLE(bootchart, AS_HELP_STRING([--disable-bootchart], [disable bootchart tool]))
817if test "x$enable_bootchart" != "xno"; then
818 have_bootchart=yes
819fi
820AM_CONDITIONAL(ENABLE_BOOTCHART, [test "$have_bootchart" = "yes"])
821
3e214785 822# ------------------------------------------------------------------------------
4de85612
LP
823have_quotacheck=no
824AC_ARG_ENABLE(quotacheck, AS_HELP_STRING([--disable-quotacheck], [disable quotacheck tools]))
825if test "x$enable_quotacheck" != "xno"; then
be31376e 826 have_quotacheck=yes
4de85612
LP
827fi
828AM_CONDITIONAL(ENABLE_QUOTACHECK, [test "$have_quotacheck" = "yes"])
829
6351163b
UTL
830# ------------------------------------------------------------------------------
831have_tmpfiles=no
832AC_ARG_ENABLE(tmpfiles, AS_HELP_STRING([--disable-tmpfiles], [disable tmpfiles support]))
833if test "x$enable_tmpfiles" != "xno"; then
834 have_tmpfiles=yes
835fi
836AM_CONDITIONAL(ENABLE_TMPFILES, [test "$have_tmpfiles" = "yes"])
837
1b992147
LP
838# ------------------------------------------------------------------------------
839have_sysusers=no
840AC_ARG_ENABLE(sysusers, AS_HELP_STRING([--disable-sysusers], [disable sysusers support]))
841if test "x$enable_sysusers" != "xno"; then
842 have_sysusers=yes
843fi
844AM_CONDITIONAL(ENABLE_SYSUSERS, [test "$have_sysusers" = "yes"])
845
418b9be5
LP
846# ------------------------------------------------------------------------------
847have_firstboot=no
848AC_ARG_ENABLE(firstboot, AS_HELP_STRING([--disable-firstboot], [disable firstboot support]))
849if test "x$enable_firstboot" != "xno"; then
850 have_firstboot=yes
851fi
852AM_CONDITIONAL(ENABLE_FIRSTBOOT, [test "$have_firstboot" = "yes"])
853
3e214785 854# ------------------------------------------------------------------------------
4de85612
LP
855have_randomseed=no
856AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools]))
857if test "x$enable_randomseed" != "xno"; then
be31376e 858 have_randomseed=yes
4de85612
LP
859fi
860AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"])
861
3731acf1
LP
862# ------------------------------------------------------------------------------
863have_backlight=no
864AC_ARG_ENABLE(backlight, AS_HELP_STRING([--disable-backlight], [disable backlight tools]))
865if test "x$enable_backlight" != "xno"; then
866 have_backlight=yes
867fi
868AM_CONDITIONAL(ENABLE_BACKLIGHT, [test "$have_backlight" = "yes"])
869
3990f247
LP
870# ------------------------------------------------------------------------------
871have_rfkill=no
872AC_ARG_ENABLE(rfkill, AS_HELP_STRING([--disable-rfkill], [disable rfkill tools]))
873if test "x$enable_rfkill" != "xno"; then
874 have_rfkill=yes
875fi
876AM_CONDITIONAL(ENABLE_RFKILL, [test "$have_rfkill" = "yes"])
877
3e214785 878# ------------------------------------------------------------------------------
2a018e83
KS
879have_logind=no
880AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon]))
881if test "x$enable_logind" != "xno"; then
be31376e 882 have_logind=yes
2a018e83
KS
883fi
884AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"])
4c80c73c 885AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ])
2a018e83 886
1ee306e1
LP
887# ------------------------------------------------------------------------------
888have_machined=no
889AC_ARG_ENABLE(machined, AS_HELP_STRING([--disable-machined], [disable machine daemon]))
890if test "x$enable_machined" != "xno"; then
891 have_machined=yes
892fi
893AM_CONDITIONAL(ENABLE_MACHINED, [test "$have_machined" = "yes"])
894AS_IF([test "$have_machined" = "yes"], [ AC_DEFINE(HAVE_MACHINED, [1], [Machined support available]) ])
895
3e214785 896# ------------------------------------------------------------------------------
b2e9fb99
MV
897have_hostnamed=no
898AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon]))
899if test "x$enable_hostnamed" != "xno"; then
be31376e 900 have_hostnamed=yes
b2e9fb99
MV
901fi
902AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"])
903
3e214785 904# ------------------------------------------------------------------------------
f47cd184
MV
905have_timedated=no
906AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon]))
907if test "x$enable_timedated" != "xno"; then
be31376e 908 have_timedated=yes
f47cd184
MV
909fi
910AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
911
3e214785 912# ------------------------------------------------------------------------------
687ed123
KS
913have_timesyncd=no
914AC_ARG_ENABLE(timesyncd, AS_HELP_STRING([--disable-timesyncd], [disable timesync daemon]))
43ba1b3e 915if test "x$enable_timesyncd" != "xno"; then
687ed123
KS
916 have_timesyncd=yes
917fi
918AM_CONDITIONAL(ENABLE_TIMESYNCD, [test "$have_timesyncd" = "yes"])
919
e8af6973
LP
920AC_ARG_WITH(ntp-servers,
921 AS_HELP_STRING([--with-ntp-servers=NTPSERVERS],
922 [Space-separated list of default NTP servers]),
923 [NTP_SERVERS="$withval"],
924 [NTP_SERVERS="time1.google.com time2.google.com time3.google.com time4.google.com"])
925
926AC_DEFINE_UNQUOTED(NTP_SERVERS, ["$NTP_SERVERS"], [Default NTP Servers])
927AC_SUBST(NTP_SERVERS)
928
661278ee
LP
929AC_ARG_WITH(time-epoch,
930 AS_HELP_STRING([--with-time-epoch=SECONDS],
5ea846cc 931 [Time epoch for time clients]),
661278ee
LP
932 [TIME_EPOCH="$withval"],
933 [TIME_EPOCH="`stat -c %Y ${srcdir}/NEWS 2>/dev/null || echo 0`"])
934
935AC_DEFINE_UNQUOTED(TIME_EPOCH, [$TIME_EPOCH], [Time Epoch])
936
f7dc3ab9
LP
937# ------------------------------------------------------------------------------
938AC_ARG_WITH(system-uid-max,
939 AS_HELP_STRING([--with-system-uid-max=UID]
940 [Maximum UID for system users]),
941 [SYSTEM_UID_MAX="$withval"],
942 [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`"])
943
944AC_DEFINE_UNQUOTED(SYSTEM_UID_MAX, [$SYSTEM_UID_MAX], [Maximum System UID])
945AC_SUBST(SYSTEM_UID_MAX)
946
947# ------------------------------------------------------------------------------
948AC_ARG_WITH(system-gid-max,
949 AS_HELP_STRING([--with-system-gid-max=GID]
950 [Maximum GID for system groups]),
951 [SYSTEM_GID_MAX="$withval"],
952 [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`"])
953
954AC_DEFINE_UNQUOTED(SYSTEM_GID_MAX, [$SYSTEM_GID_MAX], [Maximum System GID])
955AC_SUBST(SYSTEM_GID_MAX)
956
687ed123 957# ------------------------------------------------------------------------------
4cd1eaa5
MV
958have_localed=no
959AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))
960if test "x$enable_localed" != "xno"; then
be31376e 961 have_localed=yes
4cd1eaa5
MV
962fi
963AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"])
964
3e214785 965# ------------------------------------------------------------------------------
f5e04665
LP
966have_coredump=no
967AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook]))
968if test "x$enable_coredump" != "xno"; then
be31376e 969 have_coredump=yes
f5e04665
LP
970fi
971AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"])
972
46ba8aae
LP
973# ------------------------------------------------------------------------------
974have_polkit=no
975AC_ARG_ENABLE(polkit, AS_HELP_STRING([--disable-polkit], [disable PolicyKit support]))
976if test "x$enable_polkit" != "xno"; then
977 AC_DEFINE(ENABLE_POLKIT, 1, [Define if PolicyKit support is to be enabled])
978 have_polkit=yes
979fi
980AM_CONDITIONAL(ENABLE_POLKIT, [test "x$have_polkit" = "xyes"])
981
3c9317d2 982# ------------------------------------------------------------------------------
091a364c
TG
983have_resolved=no
984AC_ARG_ENABLE(resolved, AS_HELP_STRING([--disable-resolved], [disable resolve daemon]))
985if test "x$enable_resolved" != "xno"; then
986 have_resolved=yes
3c9317d2 987fi
091a364c 988AM_CONDITIONAL(ENABLE_RESOLVED, [test "$have_resolved" = "yes"])
3c9317d2 989
e16cb2e4
TG
990AC_ARG_WITH(dns-servers,
991 AS_HELP_STRING([--with-dns-servers=DNSSERVERS],
992 [Space-separated list of default DNS servers]),
49e5c2b2 993 [DNS_SERVERS="$withval"],
7b4d7968 994 [DNS_SERVERS="8.8.8.8 8.8.4.4 2001:4860:4860::8888 2001:4860:4860::8844"])
e16cb2e4
TG
995
996AC_DEFINE_UNQUOTED(DNS_SERVERS, ["$DNS_SERVERS"], [Default DNS Servers])
997AC_SUBST(DNS_SERVERS)
998
091a364c
TG
999# ------------------------------------------------------------------------------
1000have_networkd=no
1001AC_ARG_ENABLE(networkd, AS_HELP_STRING([--disable-networkd], [disable networkd]))
81577dc2 1002AS_IF([test "x$enable_networkd" != "xno"], [
091a364c
TG
1003 AC_DEFINE(ENABLE_NETWORKD, 1, [Define if networkd support is to be enabled])
1004 have_networkd=yes
81577dc2 1005])
091a364c
TG
1006AM_CONDITIONAL(ENABLE_NETWORKD, [test "x$have_networkd" = "xyes"])
1007
b872e9a0
LP
1008# ------------------------------------------------------------------------------
1009have_efi=no
1010AC_ARG_ENABLE(efi, AS_HELP_STRING([--disable-efi], [disable EFI support]))
1011if test "x$enable_efi" != "xno"; then
1012 AC_DEFINE(ENABLE_EFI, 1, [Define if EFI support is to be enabled])
1013 have_efi=yes
1014fi
1015AM_CONDITIONAL(ENABLE_EFI, [test "x$have_efi" = "xyes"])
1016
bd441fa2
ZJS
1017# ------------------------------------------------------------------------------
1018have_multi_seat_x=no
1019AC_ARG_ENABLE(multi_seat_x, AS_HELP_STRING([--disable-multi-seat-x], [do not build multi-seat-x]))
1020if test "x$enable_multi_seat_x" != "xno"; then
1021 have_multi_seat_x=yes
1022fi
1023AM_CONDITIONAL(ENABLE_MULTI_SEAT_X, [test "$have_multi_seat_x" = "yes"])
1024
626851be
LP
1025# ------------------------------------------------------------------------------
1026have_kdbus=no
c97a6dbc 1027AC_ARG_ENABLE(kdbus, AS_HELP_STRING([--enable-kdbus], [do connect to kdbus by default]))
146ccaaf 1028if test "x$enable_kdbus" = "xyes"; then
626851be
LP
1029 AC_DEFINE(ENABLE_KDBUS, 1, [Define if kdbus support is to be enabled])
1030 have_kdbus=yes
4acbce79 1031 M4_DEFINES="$M4_DEFINES -DENABLE_KDBUS"
626851be
LP
1032fi
1033AM_CONDITIONAL(ENABLE_KDBUS, [test "$have_kdbus" = "yes"])
1034
b1c4ca25
LP
1035# ------------------------------------------------------------------------------
1036AC_ARG_WITH(rc-local-script-path-start,
1037 AS_HELP_STRING([--with-rc-local-script-path-start=PATH],
1038 [Path to /etc/rc.local]),
1039 [RC_LOCAL_SCRIPT_PATH_START="$withval"],
1040 [RC_LOCAL_SCRIPT_PATH_START="/etc/rc.local"])
1041
1042AC_ARG_WITH(rc-local-script-path-stop,
1043 AS_HELP_STRING([--with-rc-local-script-path-stop=PATH],
bc270841 1044 [Path to /usr/sbin/halt.local]),
b1c4ca25 1045 [RC_LOCAL_SCRIPT_PATH_STOP="$withval"],
bc270841 1046 [RC_LOCAL_SCRIPT_PATH_STOP="/usr/sbin/halt.local"])
b1c4ca25
LP
1047
1048AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_START, ["$RC_LOCAL_SCRIPT_PATH_START"], [Path of /etc/rc.local script])
bc270841 1049AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_STOP, ["$RC_LOCAL_SCRIPT_PATH_STOP"], [Path of /usr/sbin/halt.local script])
b1c4ca25
LP
1050
1051AC_SUBST(RC_LOCAL_SCRIPT_PATH_START)
1052AC_SUBST(RC_LOCAL_SCRIPT_PATH_STOP)
1053
a382332e
LP
1054# ------------------------------------------------------------------------------
1055AC_ARG_WITH(kbd-loadkeys,
1056 AS_HELP_STRING([--with-kbd-loadkeys=PATH],
1057 [Path to loadkeys]),
1058 [KBD_LOADKEYS="$withval"],
1059 [KBD_LOADKEYS="/usr/bin/loadkeys"])
1060
1061AC_ARG_WITH(kbd-setfont,
1062 AS_HELP_STRING([--with-kbd-setfont=PATH],
1063 [Path to setfont]),
1064 [KBD_SETFONT="$withval"],
1065 [KBD_SETFONT="/usr/bin/setfont"])
1066
1067AC_DEFINE_UNQUOTED(KBD_LOADKEYS, ["$KBD_LOADKEYS"], [Path of loadkeys])
1068AC_DEFINE_UNQUOTED(KBD_SETFONT, ["$KBD_SETFONT"], [Path of setfont])
1069
1070AC_SUBST(KBD_LOADKEYS)
1071AC_SUBST(KBD_SETFONT)
1072
4ad61fd1
CR
1073AC_ARG_WITH(telinit,
1074 AS_HELP_STRING([--with-telinit=PATH],
1075 [Path to telinit]),
1076 [TELINIT="$withval"],
abaaabf4 1077 [TELINIT="/lib/sysvinit/telinit"])
4ad61fd1
CR
1078
1079AC_DEFINE_UNQUOTED(TELINIT, ["$TELINIT"], [Path to telinit])
1080
1081AC_SUBST(TELINIT)
1082
54b434b1 1083AC_CHECK_HEADERS_ONCE([valgrind/memcheck.h valgrind/valgrind.h])
7211f918 1084
d562955e
TG
1085# ------------------------------------------------------------------------------
1086have_myhostname=no
f8c5a581 1087AC_ARG_ENABLE(myhostname, AS_HELP_STRING([--disable-myhostname], [disable nss-myhostname support]))
d562955e
TG
1088if test "x$enable_myhostname" != "xno"; then
1089 AC_HEADER_STDC
a3b6fafe 1090 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
1091
1092 AC_C_CONST
1093 AC_TYPE_SIZE_T
1094 AC_HEADER_TIME
1095
1096 AC_FUNC_MALLOC
1097 AC_FUNC_SELECT_ARGTYPES
1098 AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn])
1099
1100 have_myhostname=yes
1101fi
1102AM_CONDITIONAL(HAVE_MYHOSTNAME, [test "$have_myhostname" = "yes"])
1103
3e214785
KS
1104# ------------------------------------------------------------------------------
1105AC_ARG_WITH(firmware-path,
1106 AS_HELP_STRING([--with-firmware-path=DIR[[[:DIR[...]]]]],
a3bd8447
TG
1107 [Firmware search path (default="")]),
1108 [], [with_firmware_path=""])
3e214785
KS
1109OLD_IFS=$IFS
1110IFS=:
1111for i in $with_firmware_path; do
1112 if test "x${FIRMWARE_PATH}" = "x"; then
1113 FIRMWARE_PATH="\\\"${i}/\\\""
1114 else
1115 FIRMWARE_PATH="${FIRMWARE_PATH}, \\\"${i}/\\\""
1116 fi
1117done
1118IFS=$OLD_IFS
a3bd8447 1119AC_SUBST(FIRMWARE_PATH)
d8d4bee7 1120AS_IF([test "x${FIRMWARE_PATH}" != "x"], [ AC_DEFINE(HAVE_FIRMWARE, 1, [Define if FIRMWARE is available]) ])
a3bd8447 1121AM_CONDITIONAL(ENABLE_FIRMWARE, [test "x${FIRMWARE_PATH}" != "x"])
3e214785
KS
1122
1123# ------------------------------------------------------------------------------
1124AC_ARG_ENABLE([gudev],
1125 AS_HELP_STRING([--disable-gudev], [disable Gobject libudev support @<:@default=enabled@:>@]),
1126 [], [enable_gudev=yes])
de1c301e 1127AS_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 1128AM_CONDITIONAL([ENABLE_GUDEV], [test "x$enable_gudev" = "xyes"])
de1c301e
LP
1129AS_IF([test "x$enable_gudev" = "xyes"], [ AC_DEFINE(HAVE_GLIB, 1, [Define if glib is available]) ])
1130
3e214785 1131# ------------------------------------------------------------------------------
75db9a77 1132have_manpages=no
4c2b0e4e 1133AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
4ca39b28 1134AS_IF([test "x$enable_manpages" != xno], [have_manpages=yes])
fe1fed02 1135AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
75db9a77 1136
3e214785 1137# ------------------------------------------------------------------------------
d1ab0ca0 1138
34eff652
LP
1139# Location of the init scripts as mandated by LSB
1140SYSTEM_SYSVINIT_PATH=/etc/init.d
f1dd0c3f 1141SYSTEM_SYSVRCND_PATH=/etc/rc.d
12e84679 1142
136337ff 1143AC_ARG_WITH([sysvinit-path],
be31376e 1144 [AS_HELP_STRING([--with-sysvinit-path=PATH],
bc270841 1145 [Specify the path to where the SysV init scripts are located])],
be31376e
KS
1146 [SYSTEM_SYSVINIT_PATH="$withval"],
1147 [])
136337ff 1148
dee4c244
LP
1149AC_ARG_WITH([sysvrcnd-path],
1150 [AS_HELP_STRING([--with-sysvrcnd-path=PATH],
bc270841 1151 [Specify the path to the base directory for the SysV rcN.d directories])],
136337ff
TFH
1152 [SYSTEM_SYSVRCND_PATH="$withval"],
1153 [])
1154
07459bb6
FF
1155if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
1156 AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.])
1157 SYSTEM_SYSV_COMPAT="yes"
f975e971 1158 M4_DEFINES="$M4_DEFINES -DHAVE_SYSV_COMPAT"
07459bb6 1159elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
dee4c244 1160 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
1161else
1162 SYSTEM_SYSV_COMPAT="no"
1163fi
1164
bc270841
LP
1165AC_SUBST(SYSTEM_SYSVINIT_PATH)
1166AC_SUBST(SYSTEM_SYSVRCND_PATH)
1167AC_SUBST(M4_DEFINES)
1168
1169AM_CONDITIONAL(HAVE_SYSV_COMPAT, test "$SYSTEM_SYSV_COMPAT" = "yes")
1170
bef2733f 1171AC_ARG_WITH([tty-gid],
a05ea46d 1172 [AS_HELP_STRING([--with-tty-gid=GID],
bef2733f 1173 [Specify the numeric GID of the 'tty' group])],
f8b5d994
LP
1174 [TTY_GID="$withval"],
1175 [TTY_GID="5"])
1176
1177AC_DEFINE_UNQUOTED(TTY_GID, [$TTY_GID], [GID of the 'tty' group])
1178AC_SUBST(TTY_GID)
bef2733f 1179
d2d12cd1
LP
1180AC_ARG_WITH([dbuspolicydir],
1181 AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
1182 [],
25ee45f9 1183 [with_dbuspolicydir=$($PKG_CONFIG --variable=sysconfdir dbus-1)/dbus-1/system.d])
d122948d 1184
d2d12cd1
LP
1185AC_ARG_WITH([dbussessionservicedir],
1186 AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
1187 [],
25ee45f9 1188 [with_dbussessionservicedir=$($PKG_CONFIG --variable=session_bus_services_dir dbus-1)])
d122948d 1189
d2d12cd1
LP
1190AC_ARG_WITH([dbussystemservicedir],
1191 AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
1192 [],
03c14914 1193 [with_dbussystemservicedir=$(readlink -m $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../system-services)])
d122948d 1194
d2d12cd1
LP
1195AC_ARG_WITH([dbusinterfacedir],
1196 AS_HELP_STRING([--with-dbusinterfacedir=DIR], [D-Bus interface directory]),
1197 [],
03c14914 1198 [with_dbusinterfacedir=$(readlink -m $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../interfaces)])
d122948d 1199
db059f1b
MB
1200AC_ARG_WITH([bashcompletiondir],
1201 AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
1202 [],
25ee45f9
MB
1203 [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
1204 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
db059f1b
MB
1205 ] , [
1206 with_bashcompletiondir=${datadir}/bash-completion/completions
1207 ])])
1208
4f87c47b
WG
1209AC_ARG_WITH([zshcompletiondir],
1210 AS_HELP_STRING([--with-zshcompletiondir=DIR], [Zsh completions directory]),
1211 [], [with_zshcompletiondir=${datadir}/zsh/site-functions])
1212
b8079ae1
KS
1213AC_ARG_WITH([rootprefix],
1214 AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
39ad55a9 1215 [], [with_rootprefix=${ac_default_prefix}])
d2d12cd1 1216
ae446765
KS
1217AC_ARG_WITH([rootlibdir],
1218 AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
1219 [],
1220 [with_rootlibdir=${libdir}])
1221
9d3203b4 1222AC_ARG_WITH([pamlibdir],
b0cca7d8 1223 AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]),
9d3203b4
KS
1224 [],
1225 [with_pamlibdir=${with_rootlibdir}/security])
1226
5c390a4a
ZJS
1227AC_ARG_WITH([pamconfdir],
1228 AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration]),
1229 [],
1230 [with_pamconfdir=${sysconfdir}/pam.d])
1231
bc9bdbba
MG
1232AC_ARG_ENABLE([split-usr],
1233 AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]),
1234 [],
1235 [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [
1236 enable_split_usr=yes
1237 ], [
1238 enable_split_usr=no
1239 ])])
1240
1241AS_IF([test "x${enable_split_usr}" = "xyes"], [
2c6db6fb 1242 AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr])
bc9bdbba 1243])
2c6db6fb 1244
6fc00209
ZJS
1245# Work around intltoolize and gtk-doc problems in VPATH builds
1246AM_CONDITIONAL([ENABLE_GTK_DOC_TESTS], [test "x$0" = "x./configure"],
1247 [Define to do gtk-doc tests])
1248AS_IF([test "x$0" != "x./configure"], [
1249 AC_SUBST([INTLTOOL_UPDATE], [/bin/true])
1250])
1251
cee22bd3
HGB
1252AC_ARG_ENABLE(tests,
1253 [AC_HELP_STRING([--disable-tests], [disable tests])],
1254 enable_tests=$enableval, enable_tests=yes)
1255AM_CONDITIONAL(ENABLE_TESTS, [test x$enable_tests = xyes])
1256
d2d12cd1
LP
1257AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
1258AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
1259AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
1260AC_SUBST([dbusinterfacedir], [$with_dbusinterfacedir])
db059f1b 1261AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
4f87c47b 1262AC_SUBST([zshcompletiondir], [$with_zshcompletiondir])
8c6db833 1263AC_SUBST([pamlibdir], [$with_pamlibdir])
5c390a4a 1264AC_SUBST([pamconfdir], [$with_pamconfdir])
b8079ae1 1265AC_SUBST([rootprefix], [$with_rootprefix])
ae446765 1266AC_SUBST([rootlibdir], [$with_rootlibdir])
8c4a3079 1267
3e214785
KS
1268AC_CONFIG_FILES([
1269 Makefile po/Makefile.in
bb061708
KS
1270 docs/libudev/Makefile
1271 docs/libudev/version.xml
1272 docs/gudev/Makefile
1273 docs/gudev/version.xml
3e214785
KS
1274])
1275
a45a909f 1276AC_OUTPUT
ae446765 1277AC_MSG_RESULT([
0571e011
LP
1278 $PACKAGE_NAME $VERSION
1279
7f4e0805 1280 libcryptsetup: ${have_libcryptsetup}
5b6319dc 1281 PAM: ${have_pam}
12716238 1282 AUDIT: ${have_audit}
81611586 1283 IMA: ${have_ima}
eef65bf3 1284 AppArmor: ${have_apparmor}
12716238 1285 SELinux: ${have_selinux}
c0467cf3 1286 SECCOMP: ${have_seccomp}
2b3e18de 1287 SMACK: ${have_smack}
807e17f0 1288 XZ: ${have_xz}
d89c8fdf 1289 LZ4: ${have_lz4}
5eda94dd 1290 ACL: ${have_acl}
7560fffc 1291 GCRYPT: ${have_gcrypt}
f6a971bc 1292 QRENCODE: ${have_qrencode}
7b17a7d7 1293 MICROHTTPD: ${have_microhttpd}
77e68fa2 1294 CHKCONFIG: ${have_chkconfig}
60313199 1295 GNUTLS: ${have_gnutls}
8d4e028f 1296 ELFUTILS: ${have_elfutils}
27669061 1297 binfmt: ${have_binfmt}
e5e83e83
LP
1298 vconsole: ${have_vconsole}
1299 readahead: ${have_readahead}
83fdc450 1300 bootchart: ${have_bootchart}
4de85612 1301 quotacheck: ${have_quotacheck}
6351163b 1302 tmpfiles: ${have_tmpfiles}
1b992147 1303 sysusers: ${have_sysusers}
418b9be5 1304 firstboot: ${have_firstboot}
4de85612 1305 randomseed: ${have_randomseed}
3731acf1 1306 backlight: ${have_backlight}
3990f247 1307 rfkill: ${have_rfkill}
2a018e83 1308 logind: ${have_logind}
1ee306e1 1309 machined: ${have_machined}
b2e9fb99 1310 hostnamed: ${have_hostnamed}
f47cd184 1311 timedated: ${have_timedated}
a91df40e 1312 timesyncd: ${have_timesyncd}
e8af6973 1313 default NTP servers: ${NTP_SERVERS}
661278ee 1314 time epoch: ${TIME_EPOCH}
4cd1eaa5 1315 localed: ${have_localed}
7a243b22 1316 networkd: ${have_networkd}
091a364c 1317 resolved: ${have_resolved}
e16cb2e4 1318 default DNS servers: ${DNS_SERVERS}
f5e04665 1319 coredump: ${have_coredump}
46ba8aae 1320 polkit: ${have_polkit}
b872e9a0 1321 efi: ${have_efi}
e3043162 1322 kmod: ${have_kmod}
f553b3b1 1323 blkid: ${have_blkid}
ac6b760c 1324 dbus: ${have_dbus}
d562955e 1325 nss-myhostname: ${have_myhostname}
3e214785
KS
1326 gudev: ${enable_gudev}
1327 gintrospection: ${enable_introspection}
bd441fa2 1328 multi-seat-x: ${have_multi_seat_x}
626851be 1329 kdbus: ${have_kdbus}
8d7e170a
LP
1330 Python: ${have_python}
1331 Python Headers: ${have_python_devel}
2f4da3e6
ZJS
1332 man pages: ${have_manpages}
1333 gtk-doc: ${enable_gtk_doc}
6aea6d10 1334 test coverage: ${have_coverage}
2f4da3e6
ZJS
1335 Split /usr: ${enable_split_usr}
1336 SysV compatibility: ${SYSTEM_SYSV_COMPAT}
53e856e1 1337 compatibility libraries: ${have_compat_libs}
3e214785 1338
8c4a3079 1339 prefix: ${prefix}
b8079ae1 1340 rootprefix: ${with_rootprefix}
3e214785
KS
1341 sysconf dir: ${sysconfdir}
1342 datarootdir: ${datarootdir}
1343 includedir: ${includedir}
1344 include_prefix: ${INCLUDE_PREFIX}
ae446765
KS
1345 lib dir: ${libdir}
1346 rootlib dir: ${with_rootlibdir}
2f4da3e6
ZJS
1347 SysV init scripts: ${SYSTEM_SYSVINIT_PATH}
1348 SysV rc?.d directories: ${SYSTEM_SYSVRCND_PATH}
1349 Build Python: ${PYTHON}
1350 Installation Python: ${PYTHON_BINARY}
f2ec0646 1351 sphinx binary: ${SPHINX_BUILD}
2f4da3e6 1352 firmware path: ${FIRMWARE_PATH}
2c6db6fb 1353 PAM modules dir: ${with_pamlibdir}
5c390a4a 1354 PAM configuration dir: ${with_pamconfdir}
2c6db6fb
LP
1355 D-Bus policy dir: ${with_dbuspolicydir}
1356 D-Bus session dir: ${with_dbussessionservicedir}
1357 D-Bus system dir: ${with_dbussystemservicedir}
1358 D-Bus interfaces dir: ${with_dbusinterfacedir}
db059f1b 1359 Bash completions dir: ${with_bashcompletiondir}
4f87c47b 1360 Zsh completions dir: ${with_zshcompletiondir}
b1c4ca25
LP
1361 Extra start script: ${RC_LOCAL_SCRIPT_PATH_START}
1362 Extra stop script: ${RC_LOCAL_SCRIPT_PATH_STOP}
45df1f2c 1363 Debug shell: ${SUSHELL} @ ${DEBUGTTY}
f8b5d994 1364 TTY GID: ${TTY_GID}
f7dc3ab9
LP
1365 Maximum System UID: ${SYSTEM_UID_MAX}
1366 Maximum System GID: ${SYSTEM_GID_MAX}
66be6554 1367
5a45a936 1368 CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
1f048a6b 1369 CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
5a45a936 1370 LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
a6c0b31d
ZJS
1371 PYTHON_CFLAGS: ${PYTHON_DEVEL_CFLAGS}
1372 PYTHON_LIBS: ${PYTHON_DEVEL_LIBS}
ae446765 1373])