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