]> git.ipfire.org Git - thirdparty/systemd.git/blob - configure.ac
Merge pull request #2157 from keszybz/manager-status
[thirdparty/systemd.git] / configure.ac
1 #
2 # This file is part of systemd.
3 #
4 # Copyright 2010-2012 Lennart Poettering
5 # Copyright 2010-2012 Kay Sievers
6 #
7 # systemd is free software; you can redistribute it and/or modify it
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
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
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public License
18 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
19
20 AC_PREREQ([2.64])
21
22 AC_INIT([systemd],
23 [228],
24 [http://github.com/systemd/systemd/issues],
25 [systemd],
26 [http://www.freedesktop.org/wiki/Software/systemd])
27
28 AC_CONFIG_SRCDIR([src/core/main.c])
29 AC_CONFIG_MACRO_DIR([m4])
30 AC_CONFIG_HEADERS([config.h])
31 AC_CONFIG_AUX_DIR([build-aux])
32
33 AC_USE_SYSTEM_EXTENSIONS
34 AC_SYS_LARGEFILE
35 AC_PREFIX_DEFAULT([/usr])
36 AM_MAINTAINER_MODE([enable])
37 AM_INIT_AUTOMAKE([foreign 1.11 -Wall -Wno-portability silent-rules tar-pax no-dist-gzip dist-xz subdir-objects parallel-tests])
38 AM_SILENT_RULES([yes])
39 AC_CANONICAL_HOST
40 AC_DEFINE_UNQUOTED([CANONICAL_HOST], "$host", [Canonical host string.])
41
42 AC_PROG_CC_C99
43
44 AX_COMPILER_VENDOR
45 AS_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 ])
50
51 LT_PREREQ(2.2)
52 LT_INIT([disable-static])
53
54 AS_IF([test "x$enable_static" = "xyes"], [AC_MSG_ERROR([--enable-static is not supported by systemd])])
55 AS_IF([test "x$enable_largefile" = "xno"], [AC_MSG_ERROR([--disable-largefile is not supported by systemd])])
56
57 SET_ARCH(X86_64, x86_64*)
58 SET_ARCH(IA32, i*86*)
59 SET_ARCH(MIPS, mips*)
60 SET_ARCH(AARCH64, aarch64*)
61
62 # i18n stuff for the PolicyKit policy files, heck whether intltool can be found, disable NLS otherwise
63 AC_CHECK_PROG(intltool_found, [intltool-merge], [yes], [no])
64 AS_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
73 AM_NLS
74 AS_IF([test x"$enable_nls" != xno -o "x$enable_polkit" != xno], [
75 # intltoolize greps for '^(AC|IT)_PROG_INTLTOOL', so it needs to be on its own line
76 IT_PROG_INTLTOOL([0.40.0])
77 ])
78
79 AS_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 ])
84
85 GETTEXT_PACKAGE=systemd
86 AC_SUBST(GETTEXT_PACKAGE)
87 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [systemd])
88
89 AC_PROG_MKDIR_P
90 AC_PROG_LN_S
91 AC_PROG_SED
92 AC_PROG_GREP
93 AC_PROG_AWK
94
95 AC_PATH_PROG([M4], [m4])
96
97 AC_PATH_PROG([QUOTAON], [quotaon], [/usr/sbin/quotaon], [$PATH:/usr/sbin:/sbin])
98 AC_PATH_PROG([QUOTACHECK], [quotacheck], [/usr/sbin/quotacheck], [$PATH:/usr/sbin:/sbin])
99
100 AC_PATH_PROG([SETCAP], [setcap], [/usr/sbin/setcap], [$PATH:/usr/sbin:/sbin])
101
102 AC_PATH_PROG([KILL], [kill], [/usr/bin/kill], [$PATH:/usr/sbin:/sbin])
103
104 AC_PATH_PROG([KMOD], [kmod], [/usr/bin/kmod], [$PATH:/usr/sbin:/sbin])
105
106 AC_PATH_PROG([KEXEC], [kexec], [/usr/sbin/kexec], [$PATH:/usr/sbin:/sbin])
107
108 AC_PATH_PROG([SULOGIN], [sulogin], [/usr/sbin/sulogin], [$PATH:/usr/sbin:/sbin])
109
110 AC_PATH_PROG([MOUNT_PATH], [mount], [/usr/bin/mount], [$PATH:/usr/sbin:/sbin])
111 AC_PATH_PROG([UMOUNT_PATH], [umount], [/usr/bin/umount], [$PATH:/usr/sbin:/sbin])
112
113 AS_IF([! ln --relative --help > /dev/null 2>&1], [AC_MSG_ERROR([*** ln doesn't support --relative ***])])
114
115 M4_DEFINES=
116
117 AC_CHECK_TOOL(OBJCOPY, objcopy)
118 AC_CHECK_TOOL(STRINGS, strings)
119 AC_CHECK_TOOL(GPERF, gperf)
120 if test -z "$GPERF" ; then
121 AC_MSG_ERROR([*** gperf not found])
122 fi
123
124 # ------------------------------------------------------------------------------
125 address_sanitizer_cflags=
126 address_sanitizer_cppflags=
127 address_sanitizer_ldflags=
128 AC_ARG_ENABLE(address-sanitizer, AS_HELP_STRING([--enable-address-sanitizer], [enable -fsanitize=address]))
129 AS_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
138 undefined_sanitizer_cflags=
139 undefined_sanitizer_cppflags=
140 undefined_sanitizer_ldflags=
141 AC_ARG_ENABLE(undefined-sanitizer, AS_HELP_STRING([--enable-undefined-sanitizer], [enable -fsanitize=undefined]))
142 AS_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
151 sanitizer_cflags="$address_sanitizer_cflags $undefined_sanitizer_cflags"
152 sanitizer_cppflags="$address_sanitizer_cppflags $undefined_sanitizer_cppflags"
153 sanitizer_ldflags="$address_sanitizer_ldflags $undefined_sanitizer_ldflags"
154
155 CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
156 -pipe \
157 -Wall \
158 -Wextra \
159 -Wundef \
160 "-Wformat=2 -Wformat-security -Wformat-nonliteral" \
161 -Wlogical-op \
162 -Wmissing-include-dirs \
163 -Wold-style-definition \
164 -Wpointer-arith \
165 -Winit-self \
166 -Wdeclaration-after-statement \
167 -Wfloat-equal \
168 -Wsuggest-attribute=noreturn \
169 -Werror=missing-prototypes \
170 -Werror=implicit-function-declaration \
171 -Werror=missing-declarations \
172 -Werror=return-type \
173 -Wstrict-prototypes \
174 -Wredundant-decls \
175 -Wmissing-noreturn \
176 -Wshadow \
177 -Wendif-labels \
178 -Wstrict-aliasing=2 \
179 -Wwrite-strings \
180 -Wno-unused-parameter \
181 -Wno-missing-field-initializers \
182 -Wno-unused-result \
183 -Wno-format-signedness \
184 -Werror=overflow \
185 -Wdate-time \
186 -Wnested-externs \
187 -ffast-math \
188 -fno-common \
189 -fdiagnostics-show-option \
190 -fno-strict-aliasing \
191 -fvisibility=hidden \
192 -fstack-protector \
193 -fstack-protector-strong \
194 -fPIE \
195 --param=ssp-buffer-size=4])
196
197 CC_CHECK_FLAG_APPEND([with_cflags], [CFLAGS], [-Werror=shadow], [
198 #include <time.h>
199 #include <inttypes.h>
200 typedef uint64_t usec_t;
201 usec_t now(clockid_t clock);
202 int main(void) {
203 struct timespec now;
204 return 0;
205 }
206 ])
207
208 AS_CASE([$CC], [*clang*],
209 [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
210 -Wno-typedef-redefinition \
211 -Wno-gnu-variable-sized-type-not-at-end \
212 ])])
213
214 AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*],
215 [CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
216 -flto])],
217 [AC_MSG_RESULT([skipping -flto, optimization not enabled])])
218 AC_SUBST([OUR_CFLAGS], "$with_cflags $sanitizer_cflags")
219
220 AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*],
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])])
224 AC_SUBST([OUR_CPPFLAGS], "$with_cppflags $sanitizer_cppflags")
225
226 AS_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])])
230 AC_SUBST([OUR_CFLAGS], "$with_ldflags $sanitizer_cflags")
231
232 AS_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])])
236 AC_SUBST([OUR_CFLAGS], "$with_cflags $sanitizer_cflags")
237
238 CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\
239 -Wl,--as-needed \
240 -Wl,--no-undefined \
241 -Wl,-z,relro \
242 -Wl,-z,now \
243 -pie \
244 -Wl,-fuse-ld=gold])
245 AC_SUBST([OUR_LDFLAGS], "$with_ldflags $sanitizer_ldflags")
246
247 AC_CHECK_SIZEOF(pid_t)
248 AC_CHECK_SIZEOF(uid_t)
249 AC_CHECK_SIZEOF(gid_t)
250 AC_CHECK_SIZEOF(time_t)
251 AC_CHECK_SIZEOF(dev_t)
252 AC_CHECK_SIZEOF(rlim_t,,[
253 #include <sys/time.h>
254 #include <sys/resource.h>
255 ])
256
257 # ------------------------------------------------------------------------------
258 # we use python to build the man page index
259 have_python=no
260 AC_ARG_WITH([python],
261 [AS_HELP_STRING([--without-python], [Disable building the man page index and systemd-python (default: test)])])
262
263 have_lxml=no
264 AS_IF([test "x$with_python" != "xno"], [
265 AM_PATH_PYTHON(,, [:])
266 AS_IF([test "x$PYTHON" != "x:"], [
267 AC_MSG_CHECKING([for python lxml module])
268 AS_IF(["$PYTHON" -c 'import lxml' 2>/dev/null], [have_lxml=yes])
269 AC_MSG_RESULT([$have_lxml])
270 AS_IF([test "x$have_lxml" = "xyes"], [have_python=yes],
271 [AC_MSG_WARN([*** python support requires python-lxml module installed])])
272 ])
273 ])
274 AS_IF([test "$have_python" != "yes"], [
275 AS_IF([test "$with_python" = "yes"],
276 [AC_MSG_ERROR([*** python support requested but python support not found])])
277 AS_IF([test "$with_python" != "no"],
278 [AC_MSG_WARN([*** python support not found, some documentation cannot be built])])
279 ])
280 AM_CONDITIONAL([HAVE_PYTHON], [test "x$have_python" = "xyes"])
281
282 # ------------------------------------------------------------------------------
283
284 AC_CHECK_HEADERS([sys/capability.h], [], [AC_MSG_ERROR([*** POSIX caps headers not found])])
285 AC_CHECK_HEADERS([linux/btrfs.h], [], [])
286 AC_CHECK_HEADERS([linux/memfd.h], [], [])
287
288 # unconditionally pull-in librt with old glibc versions
289 AC_SEARCH_LIBS([clock_gettime], [rt], [], [])
290
291 save_LIBS="$LIBS"
292 LIBS=
293 AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
294 CAP_LIBS="$LIBS"
295 LIBS="$save_LIBS"
296 AC_SUBST(CAP_LIBS)
297
298 AC_CHECK_FUNCS([memfd_create])
299 AC_CHECK_FUNCS([__secure_getenv secure_getenv])
300 AC_CHECK_DECLS([gettid, pivot_root, name_to_handle_at, setns, getrandom, renameat2, kcmp, keyctl, key_serial_t, LO_FLAGS_PARTSCAN],
301 [], [], [[
302 #include <sys/types.h>
303 #include <unistd.h>
304 #include <sys/mount.h>
305 #include <fcntl.h>
306 #include <sched.h>
307 #include <linux/loop.h>
308 #include <linux/random.h>
309 ]])
310
311 AC_CHECK_DECLS([IFLA_INET6_ADDR_GEN_MODE,
312 IFLA_MACVLAN_FLAGS,
313 IFLA_IPVLAN_MODE,
314 IFLA_VTI_REMOTE,
315 IFLA_PHYS_PORT_ID,
316 IFLA_BOND_AD_INFO,
317 IFLA_VLAN_PROTOCOL,
318 IFLA_VXLAN_REMCSUM_NOPARTIAL,
319 IFLA_IPTUN_ENCAP_DPORT,
320 IFLA_GRE_ENCAP_DPORT,
321 IFLA_BRIDGE_VLAN_INFO,
322 IFLA_BRPORT_LEARNING_SYNC,
323 IFLA_BR_PRIORITY,
324 NDA_IFINDEX,
325 IFA_FLAGS],
326 [], [], [[
327 #include <inttypes.h>
328 #include <netinet/in.h>
329 #include <netinet/ether.h>
330 #include <linux/rtnetlink.h>
331 #include <net/if.h>
332 #include <linux/ip.h>
333 #include <linux/if_tunnel.h>
334 #include <linux/if_link.h>
335 #include <linux/if_bridge.h>
336 #include <linux/if_addr.h>
337 #include <linux/neighbour.h>
338 ]])
339
340 # This makes sure pkg.m4 is available.
341 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
342
343 # ------------------------------------------------------------------------------
344 have_dbus=no
345 AC_ARG_ENABLE(dbus, AS_HELP_STRING([--disable-dbus], [disable usage of dbus-1 in tests]))
346 AS_IF([test "x$enable_dbus" != "xno"], [
347 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.3.2],
348 [AC_DEFINE(HAVE_DBUS, 1, [Define if dbus-1 library is available]) have_dbus=yes],
349 [have_dbus=no])
350 AS_IF([test "x$have_dbus" = "xno" -a "x$enable_dbus" = "xyes"],
351 [AC_MSG_ERROR([*** dbus-1 support requested but libraries not found])])])
352 AM_CONDITIONAL(HAVE_DBUS, [test "$have_dbus" = "yes"])
353
354 # ------------------------------------------------------------------------------
355 have_utmp=yes
356 AC_ARG_ENABLE([utmp], AS_HELP_STRING([--disable-utmp], [disable utmp/wtmp log handling]),
357 AS_CASE("x${enableval}",
358 [xyes], [have_utmp=yes],
359 [xno], [have_utmp=no],
360 AC_MSG_ERROR(bad value ${enableval} for --enable-utmp)))
361 AS_IF([test "x$have_utmp" = "xyes"], [AC_DEFINE(HAVE_UTMP, 1, [Define if utmp/wtmp support is enabled])])
362 AM_CONDITIONAL([HAVE_UTMP], [test "x$have_utmp" = "xyes"])
363
364 # ------------------------------------------------------------------------------
365 have_compat_libs=no
366 AC_ARG_ENABLE([compat_libs], AS_HELP_STRING([--enable-compat-libs],[Enable creation of compatibility libraries]),
367 [case "${enableval}" in
368 yes) have_compat_libs=yes ;;
369 no) have_compat_libs=no ;;
370 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-libs) ;;
371 esac],
372 [have_compat_libs=no])
373 AM_CONDITIONAL([ENABLE_COMPAT_LIBS], [test "$have_compat_libs" = "yes"])
374
375 # ------------------------------------------------------------------------------
376 have_coverage=no
377 AC_ARG_ENABLE(coverage, AS_HELP_STRING([--enable-coverage], [enable test coverage]))
378 if test "x$enable_coverage" = "xyes" ; then
379 AC_CHECK_PROG(lcov_found, [lcov], [yes], [no])
380 if test "x$lcov_found" = xno ; then
381 AC_MSG_ERROR([*** lcov support requested but the program was not found])
382 else
383 lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`"
384 lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`"
385 if test "$lcov_version_major" -eq 1 -a "$lcov_version_minor" -lt 10; then
386 AC_MSG_ERROR([*** lcov version is too old. 1.10 required])
387 else
388 have_coverage=yes
389 CC_CHECK_FLAGS_APPEND([with_coverage_cflags], [CFLAGS], [\
390 -fprofile-arcs \
391 -ftest-coverage])
392 AC_SUBST([OUR_CFLAGS], "$with_cflags $with_coverage_cflags")
393 fi
394 fi
395 fi
396 AM_CONDITIONAL(ENABLE_COVERAGE, [test "$have_coverage" = "yes"])
397
398 # ------------------------------------------------------------------------------
399 have_kmod=no
400 AC_ARG_ENABLE(kmod, AS_HELP_STRING([--disable-kmod], [disable loadable modules support]))
401 if test "x$enable_kmod" != "xno"; then
402 PKG_CHECK_EXISTS([ libkmod ], have_kmod=yes, have_kmod=no)
403 if test "x$have_kmod" = "xyes"; then
404 PKG_CHECK_MODULES(KMOD, [ libkmod >= 15 ],
405 [AC_DEFINE(HAVE_KMOD, 1, [Define if kmod is available])],
406 AC_MSG_ERROR([*** kmod version >= 15 not found]))
407 fi
408 if test "x$have_kmod" = xno -a "x$enable_kmod" = xyes; then
409 AC_MSG_ERROR([*** kmod support requested, but libraries not found])
410 fi
411 fi
412 AM_CONDITIONAL(HAVE_KMOD, [test "$have_kmod" = "yes"])
413
414 # ------------------------------------------------------------------------------
415 have_xkbcommon=no
416 AC_ARG_ENABLE(xkbcommon, AS_HELP_STRING([--disable-xkbcommon], [disable xkbcommon keymap support]))
417 if test "x$enable_xkbcommon" != "xno"; then
418 PKG_CHECK_MODULES(XKBCOMMON, [ xkbcommon >= 0.3.0 ],
419 [AC_DEFINE(HAVE_XKBCOMMON, 1, [Define if libxkbcommon is available]) have_xkbcommon=yes], have_xkbcommon=no)
420 if test "x$have_xkbcommon" = xno -a "x$enable_xkbcommon" = xyes; then
421 AC_MSG_ERROR([*** xkbcommon support requested but libraries not found])
422 fi
423 fi
424 AM_CONDITIONAL(HAVE_XKBCOMMON, [test "$have_xkbcommon" = "yes"])
425
426 # ------------------------------------------------------------------------------
427 have_blkid=no
428 AC_ARG_ENABLE(blkid, AS_HELP_STRING([--disable-blkid], [disable blkid support]))
429 if test "x$enable_blkid" != "xno"; then
430 PKG_CHECK_MODULES(BLKID, [ blkid >= 2.24 ],
431 [AC_DEFINE(HAVE_BLKID, 1, [Define if blkid is available]) have_blkid=yes], have_blkid=no)
432 if test "x$have_blkid" = xno -a "x$enable_blkid" = xyes; then
433 AC_MSG_ERROR([*** blkid support requested but libraries not found])
434 fi
435 fi
436 AM_CONDITIONAL(HAVE_BLKID, [test "$have_blkid" = "yes"])
437
438 # ------------------------------------------------------------------------------
439 have_libmount=no
440 PKG_CHECK_MODULES(MOUNT, [ mount >= 2.27 ],
441 [AC_DEFINE(HAVE_LIBMOUNT, 1, [Define if libmount is available]) have_libmount=yes], have_libmount=no)
442 if test "x$have_libmount" = xno; then
443 AC_MSG_ERROR([*** libmount support required but libraries not found])
444 fi
445 AM_CONDITIONAL(HAVE_LIBMOUNT, [test "$have_libmount" = "yes"])
446
447 # ------------------------------------------------------------------------------
448 have_seccomp=no
449 AC_ARG_ENABLE(seccomp, AS_HELP_STRING([--disable-seccomp], [Disable optional SECCOMP support]))
450 if test "x$enable_seccomp" != "xno"; then
451 PKG_CHECK_MODULES(SECCOMP, [libseccomp >= 1.0.0],
452 [AC_DEFINE(HAVE_SECCOMP, 1, [Define if seccomp is available])
453 have_seccomp=yes
454 M4_DEFINES="$M4_DEFINES -DHAVE_SECCOMP"],
455 [have_seccomp=no])
456 if test "x$have_seccomp" = "xno" -a "x$enable_seccomp" = "xyes"; then
457 AC_MSG_ERROR([*** seccomp support requested but libraries not found])
458 fi
459 fi
460 AM_CONDITIONAL(HAVE_SECCOMP, [test "$have_seccomp" = "yes"])
461
462 # ------------------------------------------------------------------------------
463 have_ima=yes
464 AC_ARG_ENABLE([ima], AS_HELP_STRING([--disable-ima],[Disable optional IMA support]),
465 [case "${enableval}" in
466 yes) have_ima=yes ;;
467 no) have_ima=no ;;
468 *) AC_MSG_ERROR(bad value ${enableval} for --disable-ima) ;;
469 esac],
470 [have_ima=yes])
471
472 if test "x${have_ima}" != xno ; then
473 AC_DEFINE(HAVE_IMA, 1, [Define if IMA is available])
474 fi
475
476 # ------------------------------------------------------------------------------
477 have_selinux=no
478 AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
479 if test "x$enable_selinux" != "xno"; then
480 PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9],
481 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available])
482 have_selinux=yes
483 M4_DEFINES="$M4_DEFINES -DHAVE_SELINUX"],
484 [have_selinux=no])
485 if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
486 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
487 fi
488 fi
489 AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
490
491 have_apparmor=no
492 AC_ARG_ENABLE(apparmor, AS_HELP_STRING([--disable-apparmor], [Disable optional AppArmor support]))
493 if test "x$enable_apparmor" != "xno"; then
494 PKG_CHECK_MODULES([APPARMOR], [libapparmor],
495 [AC_DEFINE(HAVE_APPARMOR, 1, [Define if AppArmor is available])
496 have_apparmor=yes
497 M4_DEFINES="$M4_DEFINES -DHAVE_APPARMOR"],
498 [have_apparmor=no])
499 if test "x$have_apparmor" = xno -a "x$enable_apparmor" = xyes; then
500 AC_MSG_ERROR([*** AppArmor support requested but libraries not found])
501 fi
502 fi
503 AM_CONDITIONAL(HAVE_APPARMOR, [test "$have_apparmor" = "yes"])
504
505
506 AC_ARG_WITH(debug-shell,
507 AS_HELP_STRING([--with-debug-shell=PATH],
508 [Path to debug shell binary]),
509 [SUSHELL="$withval"],[
510 AS_IF([test "x${have_selinux}" != "xno"], [SUSHELL="/sbin/sushell"] , [SUSHELL="/bin/sh"])])
511
512 AC_SUBST(SUSHELL)
513
514 AC_ARG_WITH([debug-tty],
515 AS_HELP_STRING([--with-debug-tty=PATH],
516 [Specify the tty device for debug shell]),
517 [DEBUGTTY="$withval"],
518 [DEBUGTTY=/dev/tty9])
519
520 AC_SUBST(DEBUGTTY)
521
522 AC_ARG_WITH([certificate-root],
523 AS_HELP_STRING([--with-certificate-root=PATH],
524 [Specify the prefix for TLS certificates [/etc/ssl]]),
525 [CERTIFICATEROOT="$withval"],
526 [CERTIFICATEROOT="/etc/ssl"])
527
528 AC_SUBST(CERTIFICATEROOT)
529
530 # ------------------------------------------------------------------------------
531 have_xz=no
532 AC_ARG_ENABLE(xz, AS_HELP_STRING([--disable-xz], [Disable optional XZ support]))
533 AS_IF([test "x$enable_xz" != "xno"], [
534 PKG_CHECK_MODULES(XZ, [ liblzma ],
535 [AC_DEFINE(HAVE_XZ, 1, [Define if XZ is available])
536 have_xz=yes],
537 have_xz=no)
538 AS_IF([test "x$have_xz" = xno -a "x$enable_xz" = xyes],
539 [AC_MSG_ERROR([*** XZ support requested but libraries not found])])
540 ])
541 AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"])
542
543 # ------------------------------------------------------------------------------
544 have_zlib=no
545 AC_ARG_ENABLE(zlib, AS_HELP_STRING([--disable-zlib], [Disable optional ZLIB support]))
546 AS_IF([test "x$enable_zlib" != "xno"], [
547 PKG_CHECK_MODULES(ZLIB, [ zlib ],
548 [AC_DEFINE(HAVE_ZLIB, 1, [Define if ZLIB is available])
549 have_zlib=yes],
550 have_zlib=no)
551 AS_IF([test "x$have_zlib" = xno -a "x$enable_zlib" = xyes],
552 [AC_MSG_ERROR([*** ZLIB support requested but libraries not found])])
553 ])
554 AM_CONDITIONAL(HAVE_ZLIB, [test "$have_zlib" = "yes"])
555
556 # ------------------------------------------------------------------------------
557 have_bzip2=no
558 AC_ARG_ENABLE(bzip2, AS_HELP_STRING([--enable-bzip2], [Disable optional BZIP2 support]))
559 AS_IF([test "x$enable_bzip2" != "xno"], [
560 AC_CHECK_HEADERS(bzlib.h,
561 [AC_DEFINE(HAVE_BZIP2, 1, [Define if BZIP2 is available])
562 have_bzip2=yes],
563 [AS_IF([test "x$enable_bzip2" = xyes],
564 [AC_MSG_ERROR([*** BZIP2 support requested but headers not found])])]
565 )
566 ])
567 AM_CONDITIONAL(HAVE_BZIP2, [test "$have_bzip2" = "yes"])
568
569 # ------------------------------------------------------------------------------
570 have_lz4=no
571 AC_ARG_ENABLE(lz4, AS_HELP_STRING([--disable-lz4], [Disable optional LZ4 support]))
572 AS_IF([test "x$enable_lz4" != "xno"], [
573 PKG_CHECK_MODULES(LZ4, [ liblz4 >= 125 ],
574 [AC_DEFINE(HAVE_LZ4, 1, [Define in LZ4 is available])
575 have_lz4=yes],
576 have_lz4=no)
577 AS_IF([test "x$have_lz4" = xno -a "x$enable_lz4" = xyes],
578 [AC_MSG_ERROR([*** LZ4 support requested but libraries not found])])
579 ])
580 AM_CONDITIONAL(HAVE_LZ4, [test "$have_lz4" = "yes"])
581
582 AM_CONDITIONAL(HAVE_COMPRESSION, [test "$have_xz" = "yes" -o "$have_lz4" = "yes"])
583
584 # ------------------------------------------------------------------------------
585 AC_ARG_ENABLE([pam],
586 AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
587 [case "${enableval}" in
588 yes) have_pam=yes ;;
589 no) have_pam=no ;;
590 *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
591 esac],
592 [have_pam=auto])
593
594 if test "x${have_pam}" != xno ; then
595 AC_CHECK_HEADERS(
596 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
597 [have_pam=yes],
598 [if test "x$have_pam" = xyes ; then
599 AC_MSG_ERROR([*** PAM headers not found.])
600 fi])
601
602 AC_CHECK_LIB(
603 [pam],
604 [pam_syslog],
605 [have_pam=yes],
606 [if test "x$have_pam" = xyes ; then
607 AC_MSG_ERROR([*** libpam not found.])
608 fi])
609
610 if test "x$have_pam" = xyes ; then
611 PAM_LIBS="-lpam -lpam_misc"
612 AC_DEFINE(HAVE_PAM, 1, [PAM available])
613 M4_DEFINES="$M4_DEFINES -DHAVE_PAM"
614 else
615 have_pam=no
616 fi
617 else
618 PAM_LIBS=
619 fi
620 AC_SUBST(PAM_LIBS)
621 AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
622
623 # ------------------------------------------------------------------------------
624 AC_ARG_ENABLE([acl],
625 AS_HELP_STRING([--disable-acl],[Disable optional ACL support]),
626 [case "${enableval}" in
627 yes) have_acl=yes ;;
628 no) have_acl=no ;;
629 *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;;
630 esac],
631 [have_acl=auto])
632
633 if test "x${have_acl}" != xno ; then
634 AC_CHECK_HEADERS(
635 [sys/acl.h acl/libacl.h],
636 [have_acl=yes],
637 [if test "x$have_acl" = xyes ; then
638 AC_MSG_ERROR([*** ACL headers not found.])
639 fi])
640
641 AC_CHECK_LIB(
642 [acl],
643 [acl_get_file],
644 [have_acl=yes],
645 [if test "x$have_acl" = xyes ; then
646 AC_MSG_ERROR([*** libacl not found.])
647 fi])
648
649 if test "x$have_acl" = xyes ; then
650 ACL_LIBS="-lacl"
651 AC_DEFINE(HAVE_ACL, 1, [ACL available])
652 M4_DEFINES="$M4_DEFINES -DHAVE_ACL"
653 else
654 have_acl=no
655 fi
656 else
657 ACL_LIBS=
658 fi
659 AC_SUBST(ACL_LIBS)
660 AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno])
661
662 # ------------------------------------------------------------------------------
663 AC_ARG_ENABLE([smack], AS_HELP_STRING([--disable-smack],[Disable optional SMACK support]),
664 [case "${enableval}" in
665 yes) have_smack=yes ;;
666 no) have_smack=no ;;
667 *) AC_MSG_ERROR(bad value ${enableval} for --disable-smack) ;;
668 esac],
669 [have_smack=auto])
670
671 if test "x${have_smack}" != xno; then
672 AC_DEFINE(HAVE_SMACK, 1, [Define if SMACK is available])
673 M4_DEFINES="$M4_DEFINES -DHAVE_SMACK"
674 have_smack=yes
675 fi
676
677 AM_CONDITIONAL([HAVE_SMACK], [test "x$have_smack" = "xyes"])
678
679 have_smack_run_label=no
680 AC_ARG_WITH(smack-run-label,
681 AS_HELP_STRING([--with-smack-run-label=STRING],
682 [run systemd --system itself with a specific SMACK label]),
683 [AC_DEFINE_UNQUOTED(SMACK_RUN_LABEL, ["$withval"], [Run systemd itself with SMACK label]) have_smack_run_label=yes],
684 [])
685
686 if test "x${have_smack_run_label}" = xyes; then
687 M4_DEFINES="$M4_DEFINES -DHAVE_SMACK_RUN_LABEL"
688 fi
689
690 AC_ARG_WITH(smack-default-process-label,
691 AS_HELP_STRING([--with-smack-default-process-label=STRING],
692 [default SMACK label for executed processes]),
693 [AC_DEFINE_UNQUOTED(SMACK_DEFAULT_PROCESS_LABEL, ["$withval"], [Default SMACK label for executed processes])],
694 [])
695
696 # ------------------------------------------------------------------------------
697 AC_ARG_ENABLE([gcrypt],
698 AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]),
699 [case "${enableval}" in
700 yes) have_gcrypt=yes ;;
701 no) have_gcrypt=no ;;
702 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gcrypt) ;;
703 esac],
704 [have_gcrypt=auto])
705
706 if test "x${have_gcrypt}" != xno ; then
707 m4_define([AM_PATH_LIBGCRYPT_FAIL],
708 [{ test "x$have_gcrypt" != xyes || AC_MSG_ERROR([*** GCRYPT/GPG-ERROR headers not found.]); }]
709 )
710 m4_ifdef([AM_PATH_LIBGCRYPT], [AM_PATH_LIBGCRYPT(
711 [1.4.5],
712 [have_gcrypt=yes],
713 dnl If we have the gcrypt m4 macros, but don't have
714 dnl gcrypt, throw an error if gcrypt is explicitly
715 dnl requested.
716 [AM_PATH_LIBGCRYPT_FAIL]
717 )],
718 dnl If we don't have the gcrypt m4 macros, but build with
719 dnl gcrypt explicitly requested, throw an error.
720 [AM_PATH_LIBGCRYPT_FAIL]
721 )
722
723 have_gpg_error=no
724 m4_ifdef([AM_PATH_GPG_ERROR], [AM_PATH_GPG_ERROR(
725 [1.12],
726 [have_gpg_error=yes],
727 [AM_PATH_LIBGCRYPT_FAIL]
728 )],
729 [AM_PATH_LIBGCRYPT_FAIL]
730 )
731
732 if test "x$have_gcrypt" = xyes -a "x$have_gpg_error" = xyes ; then
733 GCRYPT_LIBS="$LIBGCRYPT_LIBS $GPG_ERROR_LIBS"
734 GCRYPT_CFLAGS="$LIBGCRYPT_CFLAGS $GPG_ERROR_CFLAGS"
735 AC_DEFINE(HAVE_GCRYPT, 1, [GCRYPT available])
736 else
737 have_gcrypt=no
738 have_gpg_error=no
739 fi
740 else
741 GCRYPT_LIBS=
742 GCRYPT_CFLAGS=
743 fi
744 AC_SUBST(GCRYPT_LIBS)
745 AC_SUBST(GCRYPT_CFLAGS)
746 AM_CONDITIONAL([HAVE_GCRYPT], [test "x$have_gcrypt" != xno])
747
748 # ------------------------------------------------------------------------------
749 AC_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
758 if 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
780 else
781 AUDIT_LIBS=
782 fi
783 AC_SUBST(AUDIT_LIBS)
784 AM_CONDITIONAL([HAVE_AUDIT], [test "x$have_audit" != xno])
785
786 # ------------------------------------------------------------------------------
787 AC_ARG_ENABLE([elfutils],
788 AS_HELP_STRING([--disable-elfutils],[Disable optional ELFUTILS support]),
789 [case "${enableval}" in
790 yes) have_elfutils=yes ;;
791 no) have_elfutils=no ;;
792 *) AC_MSG_ERROR(bad value ${enableval} for --disable-elfutils) ;;
793 esac],
794 [have_elfutils=auto])
795
796 if test "x${have_elfutils}" != xno ; then
797 AC_CHECK_HEADERS(
798 [elfutils/libdwfl.h],
799 [],
800 [if test "x$have_elfutils" = xyes ; then
801 AC_MSG_ERROR([*** ELFUTILS headers not found.])
802 fi])
803
804 AC_CHECK_LIB(
805 [dw],
806 [dwfl_core_file_attach],
807 [have_elfutils=yes],
808 [if test "x$have_elfutils" = xyes ; then
809 AC_MSG_ERROR([*** ELFUTILS >= 158 is required.])
810 fi])
811
812 if test "x$have_elfutils" = xyes ; then
813 ELFUTILS_LIBS="-lelf -ldw"
814 AC_DEFINE(HAVE_ELFUTILS, 1, [ELFUTILS available])
815 else
816 have_elfutils=no
817 fi
818 else
819 ELFUTILS_LIBS=
820 fi
821 AC_SUBST(ELFUTILS_LIBS)
822 AM_CONDITIONAL(HAVE_ELFUTILS, [test "$have_elfutils" = "yes"])
823
824 # ------------------------------------------------------------------------------
825 have_libcryptsetup=no
826 AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
827 if test "x$enable_libcryptsetup" != "xno"; then
828 PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup >= 1.6.0 ],
829 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
830 if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
831 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
832 fi
833 fi
834 AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
835
836 # ------------------------------------------------------------------------------
837 have_qrencode=no
838 AC_ARG_ENABLE(qrencode, AS_HELP_STRING([--disable-qrencode], [disable qrencode support]))
839 if test "x$enable_qrencode" != "xno"; then
840 PKG_CHECK_MODULES(QRENCODE, [ libqrencode ],
841 [AC_DEFINE(HAVE_QRENCODE, 1, [Define if qrencode is available]) have_qrencode=yes], have_qrencode=no)
842 if test "x$have_qrencode" = xno -a "x$enable_qrencode" = xyes; then
843 AC_MSG_ERROR([*** qrencode support requested but libraries not found])
844 fi
845 fi
846 AM_CONDITIONAL(HAVE_QRENCODE, [test "$have_qrencode" = "yes"])
847
848 # ------------------------------------------------------------------------------
849 have_gnutls=no
850 AC_ARG_ENABLE(gnutls, AS_HELP_STRING([--disable-gnutls], [disable gnutls support]))
851 if test "x$enable_gnutls" != "xno"; then
852 PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.1.4],
853 [AC_DEFINE(HAVE_GNUTLS, 1, [Define if gnutls is available]) have_gnutls=yes], have_gnutls=no)
854 if test "x$have_gnutls" = xno -a "x$enable_gnutls" = xyes; then
855 AC_MSG_ERROR([*** gnutls support requested but libraries not found])
856 fi
857 fi
858 AM_CONDITIONAL(HAVE_GNUTLS, [test "$have_gnutls" = "yes"])
859
860 # ------------------------------------------------------------------------------
861 have_microhttpd=no
862 AC_ARG_ENABLE(microhttpd, AS_HELP_STRING([--disable-microhttpd], [disable microhttpd support]))
863 if test "x$enable_microhttpd" != "xno"; then
864 PKG_CHECK_MODULES(MICROHTTPD, [libmicrohttpd >= 0.9.33],
865 [AC_DEFINE(HAVE_MICROHTTPD, 1, [Define if microhttpd is available])
866 have_microhttpd=yes
867 M4_DEFINES="$M4_DEFINES -DHAVE_MICROHTTPD"],
868 [have_microhttpd=no])
869 if test "x$have_microhttpd" = xno -a "x$enable_microhttpd" = xyes; then
870 AC_MSG_ERROR([*** microhttpd support requested but libraries not found])
871 fi
872 fi
873 AM_CONDITIONAL(HAVE_MICROHTTPD, [test "$have_microhttpd" = "yes"])
874
875 # ------------------------------------------------------------------------------
876 have_libcurl=no
877 AC_ARG_ENABLE(libcurl, AS_HELP_STRING([--disable-libcurl], [disable libcurl support]))
878 if test "x$enable_libcurl" != "xno"; then
879 PKG_CHECK_MODULES(LIBCURL, [libcurl],
880 [AC_DEFINE(HAVE_LIBCURL, 1, [Define if libcurl is available])
881 have_libcurl=yes
882 M4_DEFINES="$M4_DEFINES -DHAVE_LIBCURL"],
883 [have_libcurl=no])
884 if test "x$have_libcurl" = xno -a "x$enable_libcurl" = xyes; then
885 AC_MSG_ERROR([*** libcurl support requested but libraries not found])
886 fi
887 fi
888 AM_CONDITIONAL(HAVE_LIBCURL, [test "$have_libcurl" = "yes"])
889
890 # ------------------------------------------------------------------------------
891 AM_CONDITIONAL(HAVE_REMOTE, [test "$have_microhttpd" = "yes" -o "$have_libcurl" = "yes"])
892
893 # ------------------------------------------------------------------------------
894 have_libidn=no
895 AC_ARG_ENABLE(libidn, AS_HELP_STRING([--disable-libidn], [Disable optional LIBIDN support]))
896 if test "x$enable_libidn" != "xno"; then
897 PKG_CHECK_MODULES(LIBIDN, [libidn],
898 [AC_DEFINE(HAVE_LIBIDN, 1, [Define if libidn is available])
899 have_libidn=yes
900 M4_DEFINES="$M4_DEFINES -DHAVE_LIBIDN"],
901 [have_libidn=no])
902 if test "x$have_libidn" = "xno" -a "x$enable_libidn" = "xyes"; then
903 AC_MSG_ERROR([*** libidn support requested but libraries not found])
904 fi
905 fi
906 AM_CONDITIONAL(HAVE_LIBIDN, [test "$have_libidn" = "yes"])
907
908 # ------------------------------------------------------------------------------
909 have_libiptc=no
910 AC_ARG_ENABLE(libiptc, AS_HELP_STRING([--disable-libiptc], [Disable optional LIBIPTC support]))
911 if test "x$enable_libiptc" != "xno"; then
912 PKG_CHECK_MODULES(LIBIPTC, [libiptc],
913 [AC_DEFINE(HAVE_LIBIPTC, 1, [Define if libiptc is available])
914 have_libiptc=yes
915 M4_DEFINES="$M4_DEFINES -DHAVE_LIBIPTC"],
916 [have_libiptc=no])
917 if test "x$have_libiptc" = "xno" -a "x$enable_libiptc" = "xyes"; then
918 AC_MSG_ERROR([*** libiptc support requested but libraries not found])
919 fi
920 fi
921 AM_CONDITIONAL(HAVE_LIBIPTC, [test "$have_libiptc" = "yes"])
922
923 # ------------------------------------------------------------------------------
924 have_binfmt=no
925 AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
926 if test "x$enable_binfmt" != "xno"; then
927 have_binfmt=yes
928 fi
929 AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
930
931 # ------------------------------------------------------------------------------
932 have_vconsole=no
933 AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool]))
934 if test "x$enable_vconsole" != "xno"; then
935 have_vconsole=yes
936 fi
937 AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"])
938
939 # ------------------------------------------------------------------------------
940 have_bootchart=no
941 AC_ARG_ENABLE(bootchart, AS_HELP_STRING([--disable-bootchart], [disable bootchart tool]))
942 if test "x$enable_bootchart" != "xno"; then
943 have_bootchart=yes
944 fi
945 AM_CONDITIONAL(ENABLE_BOOTCHART, [test "$have_bootchart" = "yes"])
946
947 # ------------------------------------------------------------------------------
948 have_quotacheck=no
949 AC_ARG_ENABLE(quotacheck, AS_HELP_STRING([--disable-quotacheck], [disable quotacheck tools]))
950 if test "x$enable_quotacheck" != "xno"; then
951 have_quotacheck=yes
952 fi
953 AM_CONDITIONAL(ENABLE_QUOTACHECK, [test "$have_quotacheck" = "yes"])
954
955 # ------------------------------------------------------------------------------
956 have_tmpfiles=no
957 AC_ARG_ENABLE(tmpfiles, AS_HELP_STRING([--disable-tmpfiles], [disable tmpfiles support]))
958 if test "x$enable_tmpfiles" != "xno"; then
959 have_tmpfiles=yes
960 fi
961 AM_CONDITIONAL(ENABLE_TMPFILES, [test "$have_tmpfiles" = "yes"])
962
963 # ------------------------------------------------------------------------------
964 have_sysusers=no
965 AC_ARG_ENABLE(sysusers, AS_HELP_STRING([--disable-sysusers], [disable sysusers support]))
966 if test "x$enable_sysusers" != "xno"; then
967 have_sysusers=yes
968 fi
969 AM_CONDITIONAL(ENABLE_SYSUSERS, [test "$have_sysusers" = "yes"])
970
971 # ------------------------------------------------------------------------------
972 have_firstboot=no
973 AC_ARG_ENABLE(firstboot, AS_HELP_STRING([--disable-firstboot], [disable firstboot support]))
974 if test "x$enable_firstboot" != "xno"; then
975 have_firstboot=yes
976 fi
977 AM_CONDITIONAL(ENABLE_FIRSTBOOT, [test "$have_firstboot" = "yes"])
978
979 # ------------------------------------------------------------------------------
980 have_randomseed=no
981 AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools]))
982 if test "x$enable_randomseed" != "xno"; then
983 have_randomseed=yes
984 fi
985 AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"])
986
987 # ------------------------------------------------------------------------------
988 have_backlight=no
989 AC_ARG_ENABLE(backlight, AS_HELP_STRING([--disable-backlight], [disable backlight tools]))
990 if test "x$enable_backlight" != "xno"; then
991 have_backlight=yes
992 fi
993 AM_CONDITIONAL(ENABLE_BACKLIGHT, [test "$have_backlight" = "yes"])
994
995 # ------------------------------------------------------------------------------
996 have_rfkill=no
997 AC_ARG_ENABLE(rfkill, AS_HELP_STRING([--disable-rfkill], [disable rfkill tools]))
998 if test "x$enable_rfkill" != "xno"; then
999 have_rfkill=yes
1000 fi
1001 AM_CONDITIONAL(ENABLE_RFKILL, [test "$have_rfkill" = "yes"])
1002
1003 # ------------------------------------------------------------------------------
1004 have_logind=no
1005 AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon]))
1006 if test "x$enable_logind" != "xno"; then
1007 have_logind=yes
1008 fi
1009 AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"])
1010 AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ])
1011
1012 # ------------------------------------------------------------------------------
1013 have_machined=no
1014 AC_ARG_ENABLE(machined, AS_HELP_STRING([--disable-machined], [disable machine daemon]))
1015 if test "x$enable_machined" != "xno"; then
1016 have_machined=yes
1017 fi
1018 AM_CONDITIONAL(ENABLE_MACHINED, [test "$have_machined" = "yes"])
1019 AS_IF([test "$have_machined" = "yes"], [ AC_DEFINE(HAVE_MACHINED, [1], [Machined support available]) ])
1020
1021 # ------------------------------------------------------------------------------
1022 have_importd=no
1023 AC_ARG_ENABLE(importd, AS_HELP_STRING([--disable-importd], [disable import daemon]))
1024 if test "x$enable_importd" != "xno"; then
1025 have_importd=yes
1026 fi
1027 AM_CONDITIONAL(ENABLE_IMPORTD, [test "$have_importd" = "yes"])
1028 AS_IF([test "$have_importd" = "yes"], [ AC_DEFINE(HAVE_IMPORTD, [1], [Importd support available]) ])
1029
1030 # ------------------------------------------------------------------------------
1031 have_hostnamed=no
1032 AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon]))
1033 if test "x$enable_hostnamed" != "xno"; then
1034 have_hostnamed=yes
1035 fi
1036 AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"])
1037
1038 # ------------------------------------------------------------------------------
1039 have_timedated=no
1040 AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon]))
1041 if test "x$enable_timedated" != "xno"; then
1042 have_timedated=yes
1043 fi
1044 AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
1045
1046 # ------------------------------------------------------------------------------
1047 have_timesyncd=no
1048 AC_ARG_ENABLE(timesyncd, AS_HELP_STRING([--disable-timesyncd], [disable timesync daemon]))
1049 if test "x$enable_timesyncd" != "xno"; then
1050 have_timesyncd=yes
1051 M4_DEFINES="$M4_DEFINES -DENABLE_TIMESYNCD"
1052 fi
1053 AM_CONDITIONAL(ENABLE_TIMESYNCD, [test "$have_timesyncd" = "yes"])
1054
1055 AC_ARG_WITH(ntp-servers,
1056 AS_HELP_STRING([--with-ntp-servers=NTPSERVERS],
1057 [Space-separated list of default NTP servers]),
1058 [NTP_SERVERS="$withval"],
1059 [NTP_SERVERS="time1.google.com time2.google.com time3.google.com time4.google.com"
1060 AC_MSG_WARN([*** Using Google NTP servers.
1061 Do not ship OSes or devices with these default settings.
1062 See DISTRO_PORTING for details!])])
1063
1064 AC_DEFINE_UNQUOTED(NTP_SERVERS, ["$NTP_SERVERS"], [Default NTP Servers])
1065 AC_SUBST(NTP_SERVERS)
1066
1067 AC_ARG_WITH(time-epoch,
1068 AS_HELP_STRING([--with-time-epoch=SECONDS],
1069 [Time epoch for time clients]),
1070 [TIME_EPOCH="$withval"],
1071 [TIME_EPOCH="`stat -c %Y ${srcdir}/NEWS 2>/dev/null || echo 0`"])
1072
1073 AC_DEFINE_UNQUOTED(TIME_EPOCH, [$TIME_EPOCH], [Time Epoch])
1074
1075 # ------------------------------------------------------------------------------
1076 AC_ARG_WITH(system-uid-max,
1077 AS_HELP_STRING([--with-system-uid-max=UID]
1078 [Maximum UID for system users]),
1079 [SYSTEM_UID_MAX="$withval"],
1080 [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`"])
1081
1082 AC_DEFINE_UNQUOTED(SYSTEM_UID_MAX, [$SYSTEM_UID_MAX], [Maximum System UID])
1083 AC_SUBST(SYSTEM_UID_MAX)
1084
1085 # ------------------------------------------------------------------------------
1086 AC_ARG_WITH(system-gid-max,
1087 AS_HELP_STRING([--with-system-gid-max=GID]
1088 [Maximum GID for system groups]),
1089 [SYSTEM_GID_MAX="$withval"],
1090 [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`"])
1091
1092 AC_DEFINE_UNQUOTED(SYSTEM_GID_MAX, [$SYSTEM_GID_MAX], [Maximum System GID])
1093 AC_SUBST(SYSTEM_GID_MAX)
1094
1095 # ------------------------------------------------------------------------------
1096 have_localed=no
1097 AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))
1098 if test "x$enable_localed" != "xno"; then
1099 have_localed=yes
1100 fi
1101 AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"])
1102
1103 # ------------------------------------------------------------------------------
1104 have_coredump=no
1105 AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook]))
1106 if test "x$enable_coredump" != "xno"; then
1107 have_coredump=yes
1108 fi
1109 AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"])
1110
1111 # ------------------------------------------------------------------------------
1112 have_polkit=no
1113 AC_ARG_ENABLE(polkit, AS_HELP_STRING([--disable-polkit], [disable PolicyKit support]))
1114 if test "x$enable_polkit" != "xno"; then
1115 AC_DEFINE(ENABLE_POLKIT, 1, [Define if PolicyKit support is to be enabled])
1116 have_polkit=yes
1117 fi
1118 AM_CONDITIONAL(ENABLE_POLKIT, [test "x$have_polkit" = "xyes"])
1119
1120 # ------------------------------------------------------------------------------
1121 have_resolved=no
1122 AC_ARG_ENABLE(resolved, AS_HELP_STRING([--disable-resolved], [disable resolve daemon]))
1123 AS_IF([test "x$enable_resolved" != "xno"], [
1124 AC_CHECK_LIB([dl], [dlsym], [true], [AC_MSG_ERROR([*** Dynamic linking loader library not found])])
1125
1126 have_resolved=yes
1127 M4_DEFINES="$M4_DEFINES -DENABLE_RESOLVED"
1128 ])
1129 AM_CONDITIONAL(ENABLE_RESOLVED, [test "$have_resolved" = "yes"])
1130
1131 AC_ARG_WITH(dns-servers,
1132 AS_HELP_STRING([--with-dns-servers=DNSSERVERS],
1133 [Space-separated list of default DNS servers]),
1134 [DNS_SERVERS="$withval"],
1135 [DNS_SERVERS="8.8.8.8 8.8.4.4 2001:4860:4860::8888 2001:4860:4860::8844"])
1136
1137 AC_DEFINE_UNQUOTED(DNS_SERVERS, ["$DNS_SERVERS"], [Default DNS Servers])
1138 AC_SUBST(DNS_SERVERS)
1139
1140 # ------------------------------------------------------------------------------
1141 have_networkd=no
1142 AC_ARG_ENABLE(networkd, AS_HELP_STRING([--disable-networkd], [disable networkd]))
1143 AS_IF([test "x$enable_networkd" != "xno"], [
1144 AC_DEFINE(ENABLE_NETWORKD, 1, [Define if networkd support is to be enabled])
1145 have_networkd=yes
1146 M4_DEFINES="$M4_DEFINES -DENABLE_NETWORKD"
1147 ])
1148 AM_CONDITIONAL(ENABLE_NETWORKD, [test "x$have_networkd" = "xyes"])
1149
1150 # ------------------------------------------------------------------------------
1151 have_efi=no
1152 AC_ARG_ENABLE(efi, AS_HELP_STRING([--disable-efi], [disable EFI support]))
1153 if test "x$enable_efi" != "xno"; then
1154 AC_DEFINE(ENABLE_EFI, 1, [Define if EFI support is to be enabled])
1155 have_efi=yes
1156 fi
1157 AM_CONDITIONAL(ENABLE_EFI, [test "x$have_efi" = "xyes"])
1158
1159 # ------------------------------------------------------------------------------
1160 AC_CHECK_TOOL(EFI_CC, gcc)
1161
1162 EFI_ARCH=`echo $host | sed "s/\(-\).*$//"`
1163
1164 AM_COND_IF(ARCH_IA32, [
1165 EFI_ARCH=ia32
1166 EFI_MACHINE_TYPE_NAME=ia32])
1167
1168 AM_COND_IF(ARCH_X86_64, [
1169 EFI_MACHINE_TYPE_NAME=x64])
1170
1171 AM_COND_IF(ARCH_AARCH64, [
1172 EFI_MACHINE_TYPE_NAME=aa64])
1173
1174 AC_SUBST([EFI_ARCH])
1175 AC_SUBST([EFI_MACHINE_TYPE_NAME])
1176
1177 have_gnuefi=no
1178 AC_ARG_ENABLE(gnuefi, AS_HELP_STRING([--enable-gnuefi], [Disable optional gnuefi support]))
1179 AS_IF([test "x$enable_gnuefi" != "xno"], [
1180 AC_CHECK_HEADERS(efi/${EFI_ARCH}/efibind.h,
1181 [AC_DEFINE(HAVE_GNUEFI, 1, [Define if gnuefi is available])
1182 have_gnuefi=yes],
1183 [AS_IF([test "x$enable_gnuefi" = xyes],
1184 [AC_MSG_ERROR([*** gnuefi support requested but headers not found])])
1185 ])
1186
1187 efiroot=$(echo $(cd /usr/lib/$(${EFI_CC} -print-multi-os-directory); pwd))
1188
1189 EFI_LIB_DIR="$efiroot"
1190 AC_ARG_WITH(efi-libdir,
1191 AS_HELP_STRING([--with-efi-libdir=PATH], [Path to EFI lib directory]),
1192 [EFI_LIB_DIR="$withval"], [EFI_LIB_DIR="$efiroot"]
1193 )
1194 AC_SUBST([EFI_LIB_DIR])
1195
1196 have_efi_lds=no
1197 AC_ARG_WITH(efi-ldsdir,
1198 AS_HELP_STRING([--with-efi-ldsdir=PATH], [Path to EFI lds directory]),
1199 [EFI_LDS_DIR="$withval" && AS_IF([test -f "${EFI_LDS_DIR}/elf_${EFI_ARCH}_efi.lds"],
1200 [have_efi_lds=yes])],
1201 [AS_FOR([DIR], [EFI_LDS_DIR], ["${EFI_LIB_DIR}/gnuefi" "${EFI_LIB_DIR}"],
1202 [AS_IF([test -f "${EFI_LDS_DIR}/elf_${EFI_ARCH}_efi.lds"],
1203 [have_efi_lds=yes && break])])])
1204 AS_IF([test "x$have_efi_lds" = xyes],
1205 [AC_SUBST([EFI_LDS_DIR])],
1206 [AS_IF([test "x$enable_gnuefi" = xyes],
1207 [AC_MSG_ERROR([*** gnuefi support requested but files not found])],
1208 [have_gnuefi=no])])
1209
1210 AC_ARG_WITH(efi-includedir,
1211 AS_HELP_STRING([--with-efi-includedir=PATH], [Path to EFI include directory]),
1212 [EFI_INC_DIR="$withval"], [EFI_INC_DIR="/usr/include"]
1213 )
1214 AC_SUBST([EFI_INC_DIR])
1215 ])
1216 AM_CONDITIONAL(HAVE_GNUEFI, [test "x$have_gnuefi" = xyes])
1217
1218 # ------------------------------------------------------------------------------
1219 have_kdbus=no
1220 AC_ARG_ENABLE(kdbus, AS_HELP_STRING([--disable-kdbus], [do not connect to kdbus by default]))
1221 if test "x$enable_kdbus" != "xno"; then
1222 AC_DEFINE(ENABLE_KDBUS, 1, [Define if kdbus is to be connected to by default])
1223 have_kdbus=yes
1224 M4_DEFINES="$M4_DEFINES -DENABLE_KDBUS"
1225 fi
1226 AM_CONDITIONAL(ENABLE_KDBUS, [test "$have_kdbus" = "yes"])
1227
1228 # ------------------------------------------------------------------------------
1229 AC_ARG_WITH(rc-local-script-path-start,
1230 AS_HELP_STRING([--with-rc-local-script-path-start=PATH],
1231 [Path to /etc/rc.local]),
1232 [RC_LOCAL_SCRIPT_PATH_START="$withval"],
1233 [RC_LOCAL_SCRIPT_PATH_START="/etc/rc.local"])
1234
1235 AC_ARG_WITH(rc-local-script-path-stop,
1236 AS_HELP_STRING([--with-rc-local-script-path-stop=PATH],
1237 [Path to /usr/sbin/halt.local]),
1238 [RC_LOCAL_SCRIPT_PATH_STOP="$withval"],
1239 [RC_LOCAL_SCRIPT_PATH_STOP="/usr/sbin/halt.local"])
1240
1241 AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_START, ["$RC_LOCAL_SCRIPT_PATH_START"], [Path of /etc/rc.local script])
1242 AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_STOP, ["$RC_LOCAL_SCRIPT_PATH_STOP"], [Path of /usr/sbin/halt.local script])
1243
1244 AC_SUBST(RC_LOCAL_SCRIPT_PATH_START)
1245 AC_SUBST(RC_LOCAL_SCRIPT_PATH_STOP)
1246
1247 # ------------------------------------------------------------------------------
1248 AC_ARG_WITH(kbd-loadkeys,
1249 AS_HELP_STRING([--with-kbd-loadkeys=PATH],
1250 [Path to loadkeys]),
1251 [KBD_LOADKEYS="$withval"],
1252 [KBD_LOADKEYS="/usr/bin/loadkeys"])
1253
1254 AC_ARG_WITH(kbd-setfont,
1255 AS_HELP_STRING([--with-kbd-setfont=PATH],
1256 [Path to setfont]),
1257 [KBD_SETFONT="$withval"],
1258 [KBD_SETFONT="/usr/bin/setfont"])
1259
1260 AC_DEFINE_UNQUOTED(KBD_LOADKEYS, ["$KBD_LOADKEYS"], [Path of loadkeys])
1261 AC_DEFINE_UNQUOTED(KBD_SETFONT, ["$KBD_SETFONT"], [Path of setfont])
1262
1263 AC_SUBST(KBD_LOADKEYS)
1264 AC_SUBST(KBD_SETFONT)
1265
1266 AC_ARG_WITH(telinit,
1267 AS_HELP_STRING([--with-telinit=PATH],
1268 [Path to telinit]),
1269 [TELINIT="$withval"],
1270 [TELINIT="/lib/sysvinit/telinit"])
1271
1272 AC_DEFINE_UNQUOTED(TELINIT, ["$TELINIT"], [Path to telinit])
1273
1274 AC_SUBST(TELINIT)
1275
1276 AC_CHECK_HEADERS_ONCE([valgrind/memcheck.h valgrind/valgrind.h])
1277
1278 # ------------------------------------------------------------------------------
1279 have_myhostname=no
1280 AC_ARG_ENABLE(myhostname, AS_HELP_STRING([--disable-myhostname], [disable nss-myhostname support]))
1281 if test "x$enable_myhostname" != "xno"; then
1282 AC_HEADER_STDC
1283 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])
1284
1285 AC_C_CONST
1286 AC_TYPE_SIZE_T
1287 AC_HEADER_TIME
1288
1289 AC_FUNC_SELECT_ARGTYPES
1290 AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn])
1291
1292 have_myhostname=yes
1293 fi
1294 AM_CONDITIONAL(HAVE_MYHOSTNAME, [test "$have_myhostname" = "yes"])
1295
1296 # ------------------------------------------------------------------------------
1297 AC_ARG_ENABLE(hwdb, [AC_HELP_STRING([--disable-hwdb], [disable hardware database support])],
1298 enable_hwdb=$enableval, enable_hwdb=yes)
1299 AM_CONDITIONAL(ENABLE_HWDB, [test x$enable_hwdb = xyes])
1300
1301 # ------------------------------------------------------------------------------
1302 have_manpages=no
1303 AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
1304 AS_IF([test "x$enable_manpages" != xno], [
1305 have_manpages=yes
1306 AC_PATH_PROG([XSLTPROC], [xsltproc])
1307 AS_IF([test -z "$XSLTPROC"],
1308 AC_MSG_ERROR([*** xsltproc is required for man pages]))
1309 ])
1310 AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
1311
1312 # ------------------------------------------------------------------------------
1313 AC_ARG_ENABLE(hibernate,
1314 [AC_HELP_STRING([--disable-hibernate], [disable hibernation support])],
1315 enable_hibernate=$enableval, enable_hibernate=yes)
1316 AM_CONDITIONAL(ENABLE_HIBERNATE, [test x$enable_hibernate = xyes])
1317
1318 # ------------------------------------------------------------------------------
1319 AC_ARG_ENABLE(ldconfig,
1320 [AC_HELP_STRING([--disable-ldconfig], [disable ldconfig])],
1321 enable_ldconfig=$enableval, enable_ldconfig=yes)
1322 AM_CONDITIONAL(ENABLE_LDCONFIG, [test x$enable_ldconfig = xyes])
1323
1324 # ------------------------------------------------------------------------------
1325 # Location of the init scripts as mandated by LSB
1326 SYSTEM_SYSVINIT_PATH=/etc/init.d
1327 SYSTEM_SYSVRCND_PATH=/etc/rc.d
1328
1329 AC_ARG_WITH([sysvinit-path],
1330 [AS_HELP_STRING([--with-sysvinit-path=PATH],
1331 [Specify the path to where the SysV init scripts are located])],
1332 [SYSTEM_SYSVINIT_PATH="$withval"],
1333 [])
1334
1335 AC_ARG_WITH([sysvrcnd-path],
1336 [AS_HELP_STRING([--with-sysvrcnd-path=PATH],
1337 [Specify the path to the base directory for the SysV rcN.d directories])],
1338 [SYSTEM_SYSVRCND_PATH="$withval"],
1339 [])
1340
1341 if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
1342 AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.])
1343 SYSTEM_SYSV_COMPAT="yes"
1344 M4_DEFINES="$M4_DEFINES -DHAVE_SYSV_COMPAT"
1345 elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
1346 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.])
1347 else
1348 SYSTEM_SYSV_COMPAT="no"
1349 fi
1350
1351 AC_SUBST(SYSTEM_SYSVINIT_PATH)
1352 AC_SUBST(SYSTEM_SYSVRCND_PATH)
1353 AC_SUBST(M4_DEFINES)
1354
1355 AM_CONDITIONAL(HAVE_SYSV_COMPAT, test "$SYSTEM_SYSV_COMPAT" = "yes")
1356
1357 AC_ARG_WITH([tty-gid],
1358 [AS_HELP_STRING([--with-tty-gid=GID],
1359 [Specify the numeric GID of the 'tty' group])],
1360 [TTY_GID="$withval"],
1361 [TTY_GID="5"])
1362
1363 AC_DEFINE_UNQUOTED(TTY_GID, [$TTY_GID], [GID of the 'tty' group])
1364 AC_SUBST(TTY_GID)
1365
1366 AC_ARG_WITH([dbuspolicydir],
1367 AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
1368 [],
1369 [with_dbuspolicydir=${sysconfdir}/dbus-1/system.d])
1370 AX_NORMALIZE_PATH([with_dbuspolicydir])
1371
1372 AC_ARG_WITH([dbussessionservicedir],
1373 AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
1374 [],
1375 [with_dbussessionservicedir=${datadir}/dbus-1/services])
1376 AX_NORMALIZE_PATH([with_dbussessionservicedir])
1377
1378 AC_ARG_WITH([dbussystemservicedir],
1379 AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
1380 [],
1381 [with_dbussystemservicedir=${datadir}/dbus-1/system-services])
1382 AX_NORMALIZE_PATH([with_dbussystemservicedir])
1383
1384 AC_ARG_WITH([bashcompletiondir],
1385 AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
1386 [],
1387 [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
1388 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
1389 ] , [
1390 with_bashcompletiondir=${datadir}/bash-completion/completions
1391 ])])
1392 AM_CONDITIONAL(ENABLE_BASH_COMPLETION, [test "$with_bashcompletiondir" != "no"])
1393 AX_NORMALIZE_PATH([with_bashcompletiondir])
1394
1395 AC_ARG_WITH([zshcompletiondir],
1396 AS_HELP_STRING([--with-zshcompletiondir=DIR], [Zsh completions directory]),
1397 [], [with_zshcompletiondir=${datadir}/zsh/site-functions])
1398 AM_CONDITIONAL(ENABLE_ZSH_COMPLETION, [test "$with_zshcompletiondir" != "no"])
1399 AX_NORMALIZE_PATH([with_zshcompletiondir])
1400
1401 AC_ARG_WITH([rootprefix],
1402 AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
1403 [], [with_rootprefix=${ac_default_prefix}])
1404 # --with-rootprefix= (empty) should default to "/" but AX_NORMALIZE_PATH
1405 # defaults those to ".", solve that here for now until we can find a suitable
1406 # fix for AX_NORMALIZE_PATH upstream at autoconf-archive.
1407 # See: https://github.com/systemd/systemd/issues/54
1408 if test "x${with_rootprefix}" = "x"; then
1409 with_rootprefix="/"
1410 fi
1411 AX_NORMALIZE_PATH([with_rootprefix])
1412
1413 AC_ARG_WITH([rootlibdir],
1414 AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
1415 [],
1416 [with_rootlibdir=${libdir}])
1417 AX_NORMALIZE_PATH([with_rootlibdir])
1418
1419 AC_ARG_WITH([pamlibdir],
1420 AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]),
1421 [],
1422 [with_pamlibdir=${with_rootlibdir}/security])
1423 AX_NORMALIZE_PATH([with_pamlibdir])
1424
1425 AC_ARG_WITH([pamconfdir],
1426 AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration]),
1427 [],
1428 [with_pamconfdir=${sysconfdir}/pam.d])
1429 AX_NORMALIZE_PATH([with_pamconfdir])
1430
1431 AC_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
1440 AS_IF([test "x${enable_split_usr}" = "xyes"], [
1441 AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr])
1442 ])
1443 AM_CONDITIONAL(ENABLE_SPLIT_USR, [test "x${enable_split_usr}" = "xyes"])
1444
1445 # work around intltool-update issues during 'make distcheck'
1446 AS_IF([test "x$0" != "x./configure"], [
1447 AC_SUBST([INTLTOOL_UPDATE], [/bin/true])
1448 ])
1449
1450 # QEMU and OVMF UEFI firmware
1451 AS_IF([test x"$cross_compiling" = "xyes"], [], [
1452 AC_PATH_PROG([QEMU], [qemu-system-x86_64])
1453 AC_CHECK_FILE([/usr/share/qemu/bios-ovmf.bin], [QEMU_BIOS=/usr/share/qemu/bios-ovmf.bin],
1454 [AC_CHECK_FILE([/usr/share/qemu-ovmf/bios.bin], [QEMU_BIOS=/usr/share/qemu-ovmf/bios.bin])])
1455 AC_SUBST([QEMU_BIOS])
1456 ])
1457
1458 AC_ARG_ENABLE(tests,
1459 [AC_HELP_STRING([--disable-tests], [disable tests])],
1460 enable_tests=$enableval, enable_tests=yes)
1461 AM_CONDITIONAL(ENABLE_TESTS, [test x$enable_tests = xyes])
1462
1463 AC_ARG_ENABLE(debug,
1464 [AC_HELP_STRING([--enable-debug@<:@=LIST@:>@], [enable extra debugging (hashmap,mmap-cache)])],
1465 [if test "x$enableval" = "xyes"; then
1466 enableval="hashmap,mmap-cache"
1467 fi
1468 saved_ifs="$IFS"
1469 IFS="$IFS$PATH_SEPARATOR,"
1470 for name in $enableval; do
1471 case $name in
1472 hashmap)
1473 enable_debug_hashmap=yes
1474 ;;
1475 mmap-cache)
1476 enable_debug_mmap_cache=yes
1477 ;;
1478 esac
1479 done
1480 IFS="$saved_ifs"],[])
1481
1482 enable_debug=""
1483 AS_IF([test x$enable_debug_hashmap = xyes], [
1484 AC_DEFINE(ENABLE_DEBUG_HASHMAP, 1, [Define if hashmap debugging is to be enabled])
1485 enable_debug="hashmap $enable_debug"
1486 ])
1487 AS_IF([test x$enable_debug_mmap_cache = xyes], [
1488 AC_DEFINE(ENABLE_DEBUG_MMAP_CACHE, 1, [Define if mmap cache debugging is to be enabled])
1489 enable_debug="mmap-cache $enable_debug"
1490 ])
1491 test -z "$enable_debug" && enable_debug="none"
1492
1493 AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
1494 AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
1495 AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
1496 AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
1497 AC_SUBST([zshcompletiondir], [$with_zshcompletiondir])
1498 AC_SUBST([pamlibdir], [$with_pamlibdir])
1499 AC_SUBST([pamconfdir], [$with_pamconfdir])
1500 AC_SUBST([rootprefix], [$with_rootprefix])
1501 AC_SUBST([rootlibdir], [$with_rootlibdir])
1502
1503 AC_CONFIG_FILES([
1504 Makefile
1505 po/Makefile.in
1506 ])
1507
1508 AC_OUTPUT
1509 AC_MSG_RESULT([
1510 $PACKAGE_NAME $VERSION
1511
1512 libcryptsetup: ${have_libcryptsetup}
1513 PAM: ${have_pam}
1514 AUDIT: ${have_audit}
1515 IMA: ${have_ima}
1516 AppArmor: ${have_apparmor}
1517 SELinux: ${have_selinux}
1518 SECCOMP: ${have_seccomp}
1519 SMACK: ${have_smack}
1520 ZLIB: ${have_zlib}
1521 XZ: ${have_xz}
1522 LZ4: ${have_lz4}
1523 BZIP2: ${have_bzip2}
1524 ACL: ${have_acl}
1525 GCRYPT: ${have_gcrypt}
1526 QRENCODE: ${have_qrencode}
1527 MICROHTTPD: ${have_microhttpd}
1528 GNUTLS: ${have_gnutls}
1529 libcurl: ${have_libcurl}
1530 libidn: ${have_libidn}
1531 libiptc: ${have_libiptc}
1532 ELFUTILS: ${have_elfutils}
1533 binfmt: ${have_binfmt}
1534 vconsole: ${have_vconsole}
1535 bootchart: ${have_bootchart}
1536 quotacheck: ${have_quotacheck}
1537 tmpfiles: ${have_tmpfiles}
1538 sysusers: ${have_sysusers}
1539 firstboot: ${have_firstboot}
1540 randomseed: ${have_randomseed}
1541 backlight: ${have_backlight}
1542 rfkill: ${have_rfkill}
1543 logind: ${have_logind}
1544 machined: ${have_machined}
1545 importd: ${have_importd}
1546 hostnamed: ${have_hostnamed}
1547 timedated: ${have_timedated}
1548 timesyncd: ${have_timesyncd}
1549 default NTP servers: ${NTP_SERVERS}
1550 time epoch: ${TIME_EPOCH}
1551 localed: ${have_localed}
1552 networkd: ${have_networkd}
1553 resolved: ${have_resolved}
1554 default DNS servers: ${DNS_SERVERS}
1555 coredump: ${have_coredump}
1556 polkit: ${have_polkit}
1557 efi: ${have_efi}
1558 gnuefi: ${have_gnuefi}
1559 efi arch: ${EFI_ARCH}
1560 EFI machine type: ${EFI_MACHINE_TYPE_NAME}
1561 EFI CC ${EFI_CC}
1562 EFI libdir: ${EFI_LIB_DIR}
1563 EFI ldsdir: ${EFI_LDS_DIR}
1564 EFI includedir: ${EFI_INC_DIR}
1565 kmod: ${have_kmod}
1566 xkbcommon: ${have_xkbcommon}
1567 blkid: ${have_blkid}
1568 libmount: ${have_libmount}
1569 dbus: ${have_dbus}
1570 nss-myhostname: ${have_myhostname}
1571 hwdb: ${enable_hwdb}
1572 kdbus: ${have_kdbus}
1573 Python: ${have_python}
1574 man pages: ${have_manpages}
1575 test coverage: ${have_coverage}
1576 Split /usr: ${enable_split_usr}
1577 SysV compatibility: ${SYSTEM_SYSV_COMPAT}
1578 compatibility libraries: ${have_compat_libs}
1579 utmp/wtmp support: ${have_utmp}
1580 ldconfig support: ${enable_ldconfig}
1581 hibernate support: ${enable_hibernate}
1582 extra debugging: ${enable_debug}
1583
1584 prefix: ${prefix}
1585 rootprefix: ${with_rootprefix}
1586 sysconf dir: ${sysconfdir}
1587 datarootdir: ${datarootdir}
1588 includedir: ${includedir}
1589 lib dir: ${libdir}
1590 rootlib dir: ${with_rootlibdir}
1591 SysV init scripts: ${SYSTEM_SYSVINIT_PATH}
1592 SysV rc?.d directories: ${SYSTEM_SYSVRCND_PATH}
1593 Build Python: ${PYTHON}
1594 PAM modules dir: ${with_pamlibdir}
1595 PAM configuration dir: ${with_pamconfdir}
1596 D-Bus policy dir: ${with_dbuspolicydir}
1597 D-Bus session dir: ${with_dbussessionservicedir}
1598 D-Bus system dir: ${with_dbussystemservicedir}
1599 Bash completions dir: ${with_bashcompletiondir}
1600 Zsh completions dir: ${with_zshcompletiondir}
1601 Extra start script: ${RC_LOCAL_SCRIPT_PATH_START}
1602 Extra stop script: ${RC_LOCAL_SCRIPT_PATH_STOP}
1603 Debug shell: ${SUSHELL} @ ${DEBUGTTY}
1604 TTY GID: ${TTY_GID}
1605 Maximum System UID: ${SYSTEM_UID_MAX}
1606 Maximum System GID: ${SYSTEM_GID_MAX}
1607 Certificate root: ${CERTIFICATEROOT}
1608
1609 CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
1610 CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
1611 LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
1612 ])