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