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