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