]> git.ipfire.org Git - thirdparty/systemd.git/blame - configure.ac
terminal: remove an unused initialization
[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], [], [])
7959ff99
KS
286
287# unconditionally pull-in librt with old glibc versions
288AC_SEARCH_LIBS([clock_gettime], [rt], [], [])
85f19d82
MB
289
290save_LIBS="$LIBS"
291LIBS=
47be870b 292AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
85f19d82 293CAP_LIBS="$LIBS"
7959ff99
KS
294AC_SUBST(CAP_LIBS)
295
296LIBS=
fba1ea06
SL
297AC_SEARCH_LIBS([mq_open], [rt], [], [AC_MSG_ERROR([*** POSIX RT library not found])])
298RT_LIBS="$LIBS"
299AC_SUBST(RT_LIBS)
85f19d82 300LIBS="$save_LIBS"
47be870b 301
9388e99e 302AC_CHECK_FUNCS([fanotify_init fanotify_mark])
4db17f29 303AC_CHECK_FUNCS([__secure_getenv secure_getenv])
81577dc2
ZJS
304AC_CHECK_DECLS([gettid, pivot_root, name_to_handle_at, setns, LO_FLAGS_PARTSCAN],
305 [], [], [[
306#include <sys/types.h>
a8348796 307#include <unistd.h>
9388e99e 308#include <sys/mount.h>
3b794314 309#include <fcntl.h>
5f381b35 310#include <sched.h>
81577dc2
ZJS
311#include <linux/loop.h>
312]])
313
75616a13 314AC_CHECK_DECLS([IFLA_MACVLAN_FLAGS,
6589d0db 315 IFLA_VTI_REMOTE,
75616a13 316 IFLA_PHYS_PORT_ID,
81577dc2
ZJS
317 IFLA_BOND_AD_INFO,
318 IFLA_VLAN_PROTOCOL,
319 IFLA_VXLAN_LOCAL6,
320 IFLA_IPTUN_6RD_RELAY_PREFIXLEN,
321 IFLA_BRIDGE_VLAN_INFO],
322[], [], [[
323#include <inttypes.h>
324#include <netinet/in.h>
325#include <netinet/ether.h>
326#include <linux/rtnetlink.h>
327#include <net/if.h>
328#include <linux/ip.h>
329#include <linux/if_tunnel.h>
330#include <linux/if_link.h>
331#include <linux/if_bridge.h>
332]])
a8348796 333
b237ef2c 334# This makes sure pkg.m4 is available.
a9b5b032 335m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
d1ab0ca0 336
22703094 337# ------------------------------------------------------------------------------
ac6b760c
ZJS
338have_dbus=no
339AC_ARG_ENABLE(dbus, AS_HELP_STRING([--disable-dbus], [disable usage of dbus-1 in tests]))
8114dedc 340AS_IF([test "x$enable_dbus" != "xno"], [
ac6b760c
ZJS
341 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.3.2],
342 [AC_DEFINE(HAVE_DBUS, 1, [Define if dbus-1 library is available]) have_dbus=yes],
343 [have_dbus=no])
344 AS_IF([test "x$have_dbus" = "xno" -a "x$enable_dbus" = "xyes"],
345 [AC_MSG_ERROR([*** dbus-1 support requested but libraries not found])])])
22703094 346AM_CONDITIONAL(HAVE_DBUS, [test "$have_dbus" = "yes"])
4b357e15 347
37161c51
ERB
348# ------------------------------------------------------------------------------
349have_utmp=yes
350AC_ARG_ENABLE([utmp], AS_HELP_STRING([--disable-utmp], [disable utmp/wtmp log handling]),
351 AS_CASE("x${enableval}",
352 [xyes], [have_utmp=yes],
353 [xno], [have_utmp=no],
354 AC_MSG_ERROR(bad value ${enableval} for --enable-utmp)))
355AS_IF([test "x$have_utmp" = "xyes"], [AC_DEFINE(HAVE_UTMP, 1, [Define if utmp/wtmp support is enabled])])
356AM_CONDITIONAL([HAVE_UTMP], [test "x$have_utmp" = "xyes"])
357
53e856e1
ZJS
358# ------------------------------------------------------------------------------
359have_compat_libs=no
360AC_ARG_ENABLE([compat_libs], AS_HELP_STRING([--enable-compat-libs],[Enable creation of compatibility libraries]),
361 [case "${enableval}" in
362 yes) have_compat_libs=yes ;;
363 no) have_compat_libs=no ;;
364 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-libs) ;;
365 esac],
366 [have_compat_libs=no])
367AM_CONDITIONAL([ENABLE_COMPAT_LIBS], [test "$have_compat_libs" = "yes"])
368
6aea6d10
TA
369# ------------------------------------------------------------------------------
370have_coverage=no
371AC_ARG_ENABLE(coverage, AS_HELP_STRING([--enable-coverage], [enable test coverage]))
372if test "x$enable_coverage" = "xyes" ; then
373 AC_CHECK_PROG(lcov_found, [lcov], [yes], [no])
374 if test "x$lcov_found" = xno ; then
375 AC_MSG_ERROR([*** lcov support requested but the program was not found])
376 else
377 lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`"
378 lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`"
379 if test "$lcov_version_major" -eq 1 -a "$lcov_version_minor" -lt 10; then
380 AC_MSG_ERROR([*** lcov version is too old. 1.10 required])
381 else
382 have_coverage=yes
383 CC_CHECK_FLAGS_APPEND([with_coverage_cflags], [CFLAGS], [\
384 -fprofile-arcs \
385 -ftest-coverage])
386 AC_SUBST([OUR_CFLAGS], "$with_cflags $with_coverage_cflags")
387 fi
388 fi
389fi
390AM_CONDITIONAL(ENABLE_COVERAGE, [test "$have_coverage" = "yes"])
391
e3043162
TG
392# ------------------------------------------------------------------------------
393have_kmod=no
394AC_ARG_ENABLE(kmod, AS_HELP_STRING([--disable-kmod], [disable loadable modules support]))
395if test "x$enable_kmod" != "xno"; then
e2ca86cf
DR
396 PKG_CHECK_EXISTS([ libkmod ], have_kmod=yes, have_kmod=no)
397 if test "x$have_kmod" = "xyes"; then
a18535d9 398 PKG_CHECK_MODULES(KMOD, [ libkmod >= 15 ],
e2ca86cf 399 [AC_DEFINE(HAVE_KMOD, 1, [Define if kmod is available])],
70d83209 400 AC_MSG_ERROR([*** kmod version >= 15 not found]))
e2ca86cf 401 fi
e3043162 402 if test "x$have_kmod" = xno -a "x$enable_kmod" = xyes; then
c4955740 403 AC_MSG_ERROR([*** kmod support requested, but libraries not found])
e3043162
TG
404 fi
405fi
406AM_CONDITIONAL(HAVE_KMOD, [test "$have_kmod" = "yes"])
f553b3b1
AO
407
408# ------------------------------------------------------------------------------
409have_blkid=no
410AC_ARG_ENABLE(blkid, AS_HELP_STRING([--disable-blkid], [disable blkid support]))
411if test "x$enable_blkid" != "xno"; then
412 PKG_CHECK_MODULES(BLKID, [ blkid >= 2.20 ],
413 [AC_DEFINE(HAVE_BLKID, 1, [Define if blkid is available]) have_blkid=yes], have_blkid=no)
414 if test "x$have_blkid" = xno -a "x$enable_blkid" = xyes; then
415 AC_MSG_ERROR([*** blkid support requested but libraries not found])
416 fi
417fi
418AM_CONDITIONAL(HAVE_BLKID, [test "$have_blkid" = "yes"])
728beb28 419
c0467cf3
RC
420# ------------------------------------------------------------------------------
421have_seccomp=no
422AC_ARG_ENABLE(seccomp, AS_HELP_STRING([--disable-seccomp], [Disable optional SECCOMP support]))
423if test "x$enable_seccomp" != "xno"; then
424 PKG_CHECK_MODULES(SECCOMP, [libseccomp >= 1.0.0],
17df7223
LP
425 [AC_DEFINE(HAVE_SECCOMP, 1, [Define if seccomp is available])
426 have_seccomp=yes
427 M4_DEFINES="$M4_DEFINES -DHAVE_SECCOMP"],
c0467cf3
RC
428 [have_seccomp=no])
429 if test "x$have_seccomp" = "xno" -a "x$enable_seccomp" = "xyes"; then
430 AC_MSG_ERROR([*** seccomp support requested but libraries not found])
431 fi
432fi
433AM_CONDITIONAL(HAVE_SECCOMP, [test "$have_seccomp" = "yes"])
434
3e214785 435# ------------------------------------------------------------------------------
81611586
RS
436have_ima=yes
437AC_ARG_ENABLE([ima], AS_HELP_STRING([--disable-ima],[Disable optional IMA support]),
438 [case "${enableval}" in
439 yes) have_ima=yes ;;
440 no) have_ima=no ;;
441 *) AC_MSG_ERROR(bad value ${enableval} for --disable-ima) ;;
442 esac],
443 [have_ima=yes])
444
445if test "x${have_ima}" != xno ; then
446 AC_DEFINE(HAVE_IMA, 1, [Define if IMA is available])
447fi
448
77e68fa2
LP
449# ------------------------------------------------------------------------------
450have_chkconfig=yes
451AC_ARG_ENABLE([chkconfig], AS_HELP_STRING([--disable-chkconfig],[Disable optional chkconfig support]),
452 [case "${enableval}" in
453 yes) have_chkconfig=yes ;;
454 no) have_chkconfig=no ;;
455 *) AC_MSG_ERROR(bad value ${enableval} for --disable-chkconfig) ;;
456 esac],
457 [AC_PATH_PROG(CHKCONFIG, chkconfig)
458 if test -z "$CHKCONFIG"; then
459 have_chkconfig=no
460 else
461 have_chkconfig=yes
462 fi])
463
464if test "x${have_chkconfig}" != xno ; then
465 AC_DEFINE(HAVE_CHKCONFIG, 1, [Define if CHKCONFIG is available])
466fi
467
3e214785 468# ------------------------------------------------------------------------------
591622d7
LP
469have_selinux=no
470AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
471if test "x$enable_selinux" != "xno"; then
3f8cc098 472 PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9],
6a6751fe
LP
473 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available])
474 have_selinux=yes
475 M4_DEFINES="$M4_DEFINES -DHAVE_SELINUX"],
476 [have_selinux=no])
591622d7
LP
477 if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
478 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
479 fi
56cf987f 480fi
591622d7 481AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
45df1f2c 482
eef65bf3
MS
483have_apparmor=no
484AC_ARG_ENABLE(apparmor, AS_HELP_STRING([--disable-apparmor], [Disable optional AppArmor support]))
485if test "x$enable_apparmor" != "xno"; then
486 PKG_CHECK_MODULES([APPARMOR], [libapparmor],
487 [AC_DEFINE(HAVE_APPARMOR, 1, [Define if AppArmor is available])
488 have_apparmor=yes
489 M4_DEFINES="$M4_DEFINES -DHAVE_APPARMOR"],
490 [have_apparmor=no])
491 if test "x$have_apparmor" = xno -a "x$enable_apparmor" = xyes; then
492 AC_MSG_ERROR([*** AppArmor support requested but libraries not found])
493 fi
494fi
495AM_CONDITIONAL(HAVE_APPARMOR, [test "$have_apparmor" = "yes"])
496
497
45df1f2c
CR
498AC_ARG_WITH(debug-shell,
499 AS_HELP_STRING([--with-debug-shell=PATH],
500 [Path to debug shell binary]),
501 [SUSHELL="$withval"],[
502 AS_IF([test "x${have_selinux}" != "xno"], [SUSHELL="/sbin/sushell"] , [SUSHELL="/bin/sh"])])
503
5ec6b15b 504AC_SUBST(SUSHELL)
56cf987f 505
45df1f2c
CR
506AC_ARG_WITH([debug-tty],
507 AS_HELP_STRING([--with-debug-tty=PATH],
508 [Specify the tty device for debug shell]),
509 [DEBUGTTY="$withval"],
510 [DEBUGTTY=/dev/tty9])
511
512AC_SUBST(DEBUGTTY)
513
ad95fd1d
ZJS
514AC_ARG_WITH([certificate-root],
515 AS_HELP_STRING([--with-certificate-root=PATH],
516 [Specify the prefix for TLS certificates [/etc/ssl]]),
517 [CERTIFICATEROOT="$withval"],
518 [CERTIFICATEROOT="/etc/ssl"])
519
520AC_SUBST(CERTIFICATEROOT)
521
3e214785 522# ------------------------------------------------------------------------------
807e17f0
LP
523have_xz=no
524AC_ARG_ENABLE(xz, AS_HELP_STRING([--disable-xz], [Disable optional XZ support]))
525if test "x$enable_xz" != "xno"; then
526 PKG_CHECK_MODULES(XZ, [ liblzma ],
d89c8fdf 527 [AC_DEFINE(HAVE_XZ, 1, [Define if XZ is available]) have_xz=yes])
807e17f0 528 if test "x$have_xz" = xno -a "x$enable_xz" = xyes; then
d89c8fdf 529 AC_MSG_ERROR([*** XZ support requested but libraries not found])
807e17f0
LP
530 fi
531fi
532AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"])
533
d89c8fdf
ZJS
534# ------------------------------------------------------------------------------
535have_lz4=no
536AC_ARG_ENABLE(lz4, AS_HELP_STRING([--enable-lz4], [Enable optional LZ4 support]))
537AS_IF([test "x$enable_lz4" == "xyes"], [
538 AC_CHECK_HEADERS(lz4.h,
539 [AC_DEFINE(HAVE_LZ4, 1, [Define in LZ4 is available]) have_lz4=yes],
540 [AC_MSG_ERROR([*** LZ4 support requested but headers not found])])
541])
542AM_CONDITIONAL(HAVE_LZ4, [test "$have_lz4" = "yes"])
543
3b1a55e1
ZJS
544AM_CONDITIONAL(HAVE_COMPRESSION, [test "$have_xz" = "yes" -o "$have_lz4" = "yes"])
545
3e214785 546# ------------------------------------------------------------------------------
5b6319dc
LP
547AC_ARG_ENABLE([pam],
548 AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
549 [case "${enableval}" in
550 yes) have_pam=yes ;;
551 no) have_pam=no ;;
552 *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
553 esac],
554 [have_pam=auto])
555
556if test "x${have_pam}" != xno ; then
557 AC_CHECK_HEADERS(
558 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
559 [have_pam=yes],
560 [if test "x$have_pam" = xyes ; then
561 AC_MSG_ERROR([*** PAM headers not found.])
562 fi])
563
564 AC_CHECK_LIB(
565 [pam],
566 [pam_syslog],
567 [have_pam=yes],
568 [if test "x$have_pam" = xyes ; then
569 AC_MSG_ERROR([*** libpam not found.])
570 fi])
571
572 if test "x$have_pam" = xyes ; then
573 PAM_LIBS="-lpam -lpam_misc"
574 AC_DEFINE(HAVE_PAM, 1, [PAM available])
6a6751fe 575 M4_DEFINES="$M4_DEFINES -DHAVE_PAM"
812cce32
LP
576 else
577 have_pam=no
5b6319dc
LP
578 fi
579else
580 PAM_LIBS=
581fi
582AC_SUBST(PAM_LIBS)
583AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
584
3e214785 585# ------------------------------------------------------------------------------
5eda94dd
LP
586AC_ARG_ENABLE([acl],
587 AS_HELP_STRING([--disable-acl],[Disable optional ACL support]),
588 [case "${enableval}" in
589 yes) have_acl=yes ;;
590 no) have_acl=no ;;
591 *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;;
592 esac],
593 [have_acl=auto])
594
595if test "x${have_acl}" != xno ; then
596 AC_CHECK_HEADERS(
597 [sys/acl.h acl/libacl.h],
598 [have_acl=yes],
599 [if test "x$have_acl" = xyes ; then
600 AC_MSG_ERROR([*** ACL headers not found.])
601 fi])
602
603 AC_CHECK_LIB(
604 [acl],
605 [acl_get_file],
606 [have_acl=yes],
607 [if test "x$have_acl" = xyes ; then
608 AC_MSG_ERROR([*** libacl not found.])
609 fi])
610
611 if test "x$have_acl" = xyes ; then
612 ACL_LIBS="-lacl"
613 AC_DEFINE(HAVE_ACL, 1, [ACL available])
614 else
615 have_acl=no
616 fi
617else
618 ACL_LIBS=
619fi
620AC_SUBST(ACL_LIBS)
621AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno])
622
2b3e18de
KL
623# ------------------------------------------------------------------------------
624AC_ARG_ENABLE([smack], AS_HELP_STRING([--disable-smack],[Disable optional SMACK support]),
625 [case "${enableval}" in
626 yes) have_smack=yes ;;
627 no) have_smack=no ;;
628 *) AC_MSG_ERROR(bad value ${enableval} for --disable-smack) ;;
629 esac],
630 [have_smack=auto])
631
d2edfae0
KS
632if test "x${have_smack}" = xauto; then
633 M4_DEFINES="$M4_DEFINES -DHAVE_SMACK"
634 have_smack=yes
2b3e18de
KL
635fi
636
8b197c3a
AK
637AC_ARG_WITH(smack-run-label,
638AS_HELP_STRING([--with-smack-run-label=STRING],
639 [run systemd --system with a specific SMACK label]),
640 [AC_DEFINE_UNQUOTED(SMACK_RUN_LABEL, ["$withval"], [Run with a smack label])],
641 [])
642
2b3e18de
KL
643if test "x${have_smack}" = xyes ; then
644 AC_DEFINE(HAVE_SMACK, 1, [Define if SMACK is available])
645fi
646
7560fffc 647# ------------------------------------------------------------------------------
feb12d3e 648AC_ARG_ENABLE([gcrypt],
7560fffc
LP
649 AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]),
650 [case "${enableval}" in
651 yes) have_gcrypt=yes ;;
652 no) have_gcrypt=no ;;
653 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gcrypt) ;;
654 esac],
655 [have_gcrypt=auto])
656
657if test "x${have_gcrypt}" != xno ; then
658 AM_PATH_LIBGCRYPT(
659 [1.4.5],
660 [have_gcrypt=yes],
661 [if test "x$have_gcrypt" = xyes ; then
662 AC_MSG_ERROR([*** GCRYPT headers not found.])
663 fi])
664
665 if test "x$have_gcrypt" = xyes ; then
666 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
667 GCRYPT_CFLAGS="$LIBGCRYPT_CFLAGS"
668 AC_DEFINE(HAVE_GCRYPT, 1, [GCRYPT available])
669 else
670 have_gcrypt=no
671 fi
672else
673 GCRYPT_LIBS=
674 GCRYPT_CFLAGS=
675fi
676AC_SUBST(GCRYPT_LIBS)
677AC_SUBST(GCRYPT_CFLAGS)
678AM_CONDITIONAL([HAVE_GCRYPT], [test "x$have_gcrypt" != xno])
679
3e214785 680# ------------------------------------------------------------------------------
4927fcae
LP
681AC_ARG_ENABLE([audit],
682 AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]),
683 [case "${enableval}" in
684 yes) have_audit=yes ;;
685 no) have_audit=no ;;
686 *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;;
687 esac],
688 [have_audit=auto])
689
690if test "x${have_audit}" != xno ; then
691 AC_CHECK_HEADERS(
692 [libaudit.h],
693 [have_audit=yes],
694 [if test "x$have_audit" = xyes ; then
695 AC_MSG_ERROR([*** AUDIT headers not found.])
696 fi])
697
698 AC_CHECK_LIB(
699 [audit],
700 [audit_open],
701 [have_audit=yes],
702 [if test "x$have_audit" = xyes ; then
703 AC_MSG_ERROR([*** libaudit not found.])
704 fi])
705
706 if test "x$have_audit" = xyes ; then
707 AUDIT_LIBS="-laudit"
708 AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available])
709 else
710 have_audit=no
711 fi
712else
713 AUDIT_LIBS=
714fi
715AC_SUBST(AUDIT_LIBS)
716
8d4e028f
LP
717# ------------------------------------------------------------------------------
718AC_ARG_ENABLE([elfutils],
719 AS_HELP_STRING([--disable-elfutils],[Disable optional ELFUTILS support]),
720 [case "${enableval}" in
721 yes) have_elfutils=yes ;;
722 no) have_elfutils=no ;;
723 *) AC_MSG_ERROR(bad value ${enableval} for --disable-elfutils) ;;
724 esac],
725 [have_elfutils=auto])
726
727if test "x${have_elfutils}" != xno ; then
728 AC_CHECK_HEADERS(
729 [elfutils/libdwfl.h],
972bded0 730 [],
8d4e028f
LP
731 [if test "x$have_elfutils" = xyes ; then
732 AC_MSG_ERROR([*** ELFUTILS headers not found.])
733 fi])
734
735 AC_CHECK_LIB(
736 [dw],
737 [dwfl_begin],
972bded0 738 [],
8d4e028f
LP
739 [if test "x$have_elfutils" = xyes ; then
740 AC_MSG_ERROR([*** ELFUTILS libs not found.])
741 fi])
742
972bded0
MM
743 AC_CHECK_LIB(
744 [dw],
745 [dwfl_core_file_attach],
746 [have_elfutils=yes],
747 [if test "x$have_elfutils" = xyes ; then
748 AC_MSG_ERROR([*** ELFUTILS >= 158 is required.])
749 fi])
750
8d4e028f
LP
751 if test "x$have_elfutils" = xyes ; then
752 ELFUTILS_LIBS="-lelf -ldw"
753 AC_DEFINE(HAVE_ELFUTILS, 1, [ELFUTILS available])
754 else
755 have_elfutils=no
756 fi
757else
758 ELFUTILS_LIBS=
759fi
760AC_SUBST(ELFUTILS_LIBS)
761AM_CONDITIONAL(HAVE_ELFUTILS, [test "$have_elfutils" = "yes"])
762
3e214785 763# ------------------------------------------------------------------------------
7f4e0805
LP
764have_libcryptsetup=no
765AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
766if test "x$enable_libcryptsetup" != "xno"; then
8cf3ca80 767 PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup >= 1.6.0 ],
7f4e0805 768 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
7f4e0805 769 if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
591622d7 770 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
7f4e0805
LP
771 fi
772fi
773AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
774
f6a971bc
LP
775# ------------------------------------------------------------------------------
776have_qrencode=no
777AC_ARG_ENABLE(qrencode, AS_HELP_STRING([--disable-qrencode], [disable qrencode support]))
778if test "x$enable_qrencode" != "xno"; then
779 PKG_CHECK_MODULES(QRENCODE, [ libqrencode ],
780 [AC_DEFINE(HAVE_QRENCODE, 1, [Define if qrencode is available]) have_qrencode=yes], have_qrencode=no)
781 if test "x$have_qrencode" = xno -a "x$enable_qrencode" = xyes; then
782 AC_MSG_ERROR([*** qrencode support requested but libraries not found])
783 fi
784fi
785AM_CONDITIONAL(HAVE_QRENCODE, [test "$have_qrencode" = "yes"])
786
7b17a7d7
LP
787# ------------------------------------------------------------------------------
788have_microhttpd=no
789AC_ARG_ENABLE(microhttpd, AS_HELP_STRING([--disable-microhttpd], [disable microhttpd support]))
790if test "x$enable_microhttpd" != "xno"; then
3f573096 791 PKG_CHECK_MODULES(MICROHTTPD, [libmicrohttpd >= 0.9.33],
7b17a7d7
LP
792 [AC_DEFINE(HAVE_MICROHTTPD, 1, [Define if microhttpd is available]) have_microhttpd=yes], have_microhttpd=no)
793 if test "x$have_microhttpd" = xno -a "x$enable_microhttpd" = xyes; then
794 AC_MSG_ERROR([*** microhttpd support requested but libraries not found])
795 fi
796fi
797AM_CONDITIONAL(HAVE_MICROHTTPD, [test "$have_microhttpd" = "yes"])
798
60313199
ZJS
799# ------------------------------------------------------------------------------
800have_gnutls=no
801AC_ARG_ENABLE(gnutls, AS_HELP_STRING([--disable-gnutls], [disable gnutls support]))
802if test "x$enable_gnutls" != "xno"; then
f12be7e8 803 PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.1.4],
60313199
ZJS
804 [AC_DEFINE(HAVE_GNUTLS, 1, [Define if gnutls is available]) have_gnutls=yes], have_gnutls=no)
805 if test "x$have_gnutls" = xno -a "x$enable_gnutls" = xyes; then
806 AC_MSG_ERROR([*** gnutls support requested but libraries not found])
807 fi
808fi
809AM_CONDITIONAL(HAVE_GNUTLS, [test "$have_gnutls" = "yes"])
810
36ef43ed
ZJS
811# ------------------------------------------------------------------------------
812have_libcurl=no
813AC_ARG_ENABLE(libcurl, AS_HELP_STRING([--disable-libcurl], [disable libcurl support]))
814if test "x$enable_libcurl" != "xno"; then
815 PKG_CHECK_MODULES(LIBCURL, [libcurl],
816 [AC_DEFINE(HAVE_LIBCURL, 1, [Define if libcurl is available]) have_libcurl=yes], have_libcurl=no)
817 if test "x$have_libcurl" = xno -a "x$enable_libcurl" = xyes; then
818 AC_MSG_ERROR([*** libcurl support requested but libraries not found])
819 fi
820fi
821AM_CONDITIONAL(HAVE_LIBCURL, [test "$have_libcurl" = "yes"])
822
bdf10b5b
LP
823# ------------------------------------------------------------------------------
824have_libidn=no
825AC_ARG_ENABLE(libidn, AS_HELP_STRING([--disable-libidn], [Disable optional LIBIDN support]))
826if test "x$enable_libidn" != "xno"; then
827 PKG_CHECK_MODULES(LIBIDN, [libidn],
828 [AC_DEFINE(HAVE_LIBIDN, 1, [Define if libidn is available])
829 have_libidn=yes
830 M4_DEFINES="$M4_DEFINES -DHAVE_LIBIDN"],
831 [have_libidn=no])
832 if test "x$have_libidn" = "xno" -a "x$enable_libidn" = "xyes"; then
833 AC_MSG_ERROR([*** libidn support requested but libraries not found])
834 fi
835fi
836AM_CONDITIONAL(HAVE_LIBIDN, [test "$have_libidn" = "yes"])
837
3e214785 838# ------------------------------------------------------------------------------
27669061
MV
839have_binfmt=no
840AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
841if test "x$enable_binfmt" != "xno"; then
be31376e 842 have_binfmt=yes
27669061
MV
843fi
844AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
845
3e214785 846# ------------------------------------------------------------------------------
e5e83e83
LP
847have_vconsole=no
848AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool]))
849if test "x$enable_vconsole" != "xno"; then
be31376e 850 have_vconsole=yes
e5e83e83
LP
851fi
852AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"])
853
83fdc450
AK
854# ------------------------------------------------------------------------------
855have_bootchart=no
856AC_ARG_ENABLE(bootchart, AS_HELP_STRING([--disable-bootchart], [disable bootchart tool]))
857if test "x$enable_bootchart" != "xno"; then
858 have_bootchart=yes
859fi
860AM_CONDITIONAL(ENABLE_BOOTCHART, [test "$have_bootchart" = "yes"])
861
3e214785 862# ------------------------------------------------------------------------------
4de85612
LP
863have_quotacheck=no
864AC_ARG_ENABLE(quotacheck, AS_HELP_STRING([--disable-quotacheck], [disable quotacheck tools]))
865if test "x$enable_quotacheck" != "xno"; then
be31376e 866 have_quotacheck=yes
4de85612
LP
867fi
868AM_CONDITIONAL(ENABLE_QUOTACHECK, [test "$have_quotacheck" = "yes"])
869
6351163b
UTL
870# ------------------------------------------------------------------------------
871have_tmpfiles=no
872AC_ARG_ENABLE(tmpfiles, AS_HELP_STRING([--disable-tmpfiles], [disable tmpfiles support]))
873if test "x$enable_tmpfiles" != "xno"; then
874 have_tmpfiles=yes
875fi
876AM_CONDITIONAL(ENABLE_TMPFILES, [test "$have_tmpfiles" = "yes"])
877
1b992147
LP
878# ------------------------------------------------------------------------------
879have_sysusers=no
880AC_ARG_ENABLE(sysusers, AS_HELP_STRING([--disable-sysusers], [disable sysusers support]))
881if test "x$enable_sysusers" != "xno"; then
882 have_sysusers=yes
883fi
884AM_CONDITIONAL(ENABLE_SYSUSERS, [test "$have_sysusers" = "yes"])
885
418b9be5
LP
886# ------------------------------------------------------------------------------
887have_firstboot=no
888AC_ARG_ENABLE(firstboot, AS_HELP_STRING([--disable-firstboot], [disable firstboot support]))
889if test "x$enable_firstboot" != "xno"; then
890 have_firstboot=yes
891fi
892AM_CONDITIONAL(ENABLE_FIRSTBOOT, [test "$have_firstboot" = "yes"])
893
3e214785 894# ------------------------------------------------------------------------------
4de85612
LP
895have_randomseed=no
896AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools]))
897if test "x$enable_randomseed" != "xno"; then
be31376e 898 have_randomseed=yes
4de85612
LP
899fi
900AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"])
901
3731acf1
LP
902# ------------------------------------------------------------------------------
903have_backlight=no
904AC_ARG_ENABLE(backlight, AS_HELP_STRING([--disable-backlight], [disable backlight tools]))
905if test "x$enable_backlight" != "xno"; then
906 have_backlight=yes
907fi
908AM_CONDITIONAL(ENABLE_BACKLIGHT, [test "$have_backlight" = "yes"])
909
3990f247
LP
910# ------------------------------------------------------------------------------
911have_rfkill=no
912AC_ARG_ENABLE(rfkill, AS_HELP_STRING([--disable-rfkill], [disable rfkill tools]))
913if test "x$enable_rfkill" != "xno"; then
914 have_rfkill=yes
915fi
916AM_CONDITIONAL(ENABLE_RFKILL, [test "$have_rfkill" = "yes"])
917
3e214785 918# ------------------------------------------------------------------------------
2a018e83
KS
919have_logind=no
920AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon]))
921if test "x$enable_logind" != "xno"; then
be31376e 922 have_logind=yes
2a018e83
KS
923fi
924AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"])
4c80c73c 925AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ])
2a018e83 926
1ee306e1
LP
927# ------------------------------------------------------------------------------
928have_machined=no
929AC_ARG_ENABLE(machined, AS_HELP_STRING([--disable-machined], [disable machine daemon]))
930if test "x$enable_machined" != "xno"; then
931 have_machined=yes
932fi
933AM_CONDITIONAL(ENABLE_MACHINED, [test "$have_machined" = "yes"])
934AS_IF([test "$have_machined" = "yes"], [ AC_DEFINE(HAVE_MACHINED, [1], [Machined support available]) ])
935
3e214785 936# ------------------------------------------------------------------------------
b2e9fb99
MV
937have_hostnamed=no
938AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon]))
939if test "x$enable_hostnamed" != "xno"; then
be31376e 940 have_hostnamed=yes
b2e9fb99
MV
941fi
942AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"])
943
3e214785 944# ------------------------------------------------------------------------------
f47cd184
MV
945have_timedated=no
946AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon]))
947if test "x$enable_timedated" != "xno"; then
be31376e 948 have_timedated=yes
f47cd184
MV
949fi
950AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
951
3e214785 952# ------------------------------------------------------------------------------
687ed123
KS
953have_timesyncd=no
954AC_ARG_ENABLE(timesyncd, AS_HELP_STRING([--disable-timesyncd], [disable timesync daemon]))
43ba1b3e 955if test "x$enable_timesyncd" != "xno"; then
687ed123
KS
956 have_timesyncd=yes
957fi
958AM_CONDITIONAL(ENABLE_TIMESYNCD, [test "$have_timesyncd" = "yes"])
959
e8af6973
LP
960AC_ARG_WITH(ntp-servers,
961 AS_HELP_STRING([--with-ntp-servers=NTPSERVERS],
962 [Space-separated list of default NTP servers]),
963 [NTP_SERVERS="$withval"],
964 [NTP_SERVERS="time1.google.com time2.google.com time3.google.com time4.google.com"])
965
966AC_DEFINE_UNQUOTED(NTP_SERVERS, ["$NTP_SERVERS"], [Default NTP Servers])
967AC_SUBST(NTP_SERVERS)
968
661278ee
LP
969AC_ARG_WITH(time-epoch,
970 AS_HELP_STRING([--with-time-epoch=SECONDS],
5ea846cc 971 [Time epoch for time clients]),
661278ee
LP
972 [TIME_EPOCH="$withval"],
973 [TIME_EPOCH="`stat -c %Y ${srcdir}/NEWS 2>/dev/null || echo 0`"])
974
975AC_DEFINE_UNQUOTED(TIME_EPOCH, [$TIME_EPOCH], [Time Epoch])
976
f7dc3ab9
LP
977# ------------------------------------------------------------------------------
978AC_ARG_WITH(system-uid-max,
979 AS_HELP_STRING([--with-system-uid-max=UID]
980 [Maximum UID for system users]),
981 [SYSTEM_UID_MAX="$withval"],
982 [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`"])
983
984AC_DEFINE_UNQUOTED(SYSTEM_UID_MAX, [$SYSTEM_UID_MAX], [Maximum System UID])
985AC_SUBST(SYSTEM_UID_MAX)
986
987# ------------------------------------------------------------------------------
988AC_ARG_WITH(system-gid-max,
989 AS_HELP_STRING([--with-system-gid-max=GID]
990 [Maximum GID for system groups]),
991 [SYSTEM_GID_MAX="$withval"],
992 [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`"])
993
994AC_DEFINE_UNQUOTED(SYSTEM_GID_MAX, [$SYSTEM_GID_MAX], [Maximum System GID])
995AC_SUBST(SYSTEM_GID_MAX)
996
687ed123 997# ------------------------------------------------------------------------------
4cd1eaa5
MV
998have_localed=no
999AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))
1000if test "x$enable_localed" != "xno"; then
be31376e 1001 have_localed=yes
4cd1eaa5
MV
1002fi
1003AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"])
1004
3e214785 1005# ------------------------------------------------------------------------------
f5e04665
LP
1006have_coredump=no
1007AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook]))
1008if test "x$enable_coredump" != "xno"; then
be31376e 1009 have_coredump=yes
f5e04665
LP
1010fi
1011AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"])
1012
46ba8aae
LP
1013# ------------------------------------------------------------------------------
1014have_polkit=no
1015AC_ARG_ENABLE(polkit, AS_HELP_STRING([--disable-polkit], [disable PolicyKit support]))
1016if test "x$enable_polkit" != "xno"; then
1017 AC_DEFINE(ENABLE_POLKIT, 1, [Define if PolicyKit support is to be enabled])
1018 have_polkit=yes
1019fi
1020AM_CONDITIONAL(ENABLE_POLKIT, [test "x$have_polkit" = "xyes"])
1021
3c9317d2 1022# ------------------------------------------------------------------------------
091a364c
TG
1023have_resolved=no
1024AC_ARG_ENABLE(resolved, AS_HELP_STRING([--disable-resolved], [disable resolve daemon]))
1025if test "x$enable_resolved" != "xno"; then
1026 have_resolved=yes
aeb50ff0 1027 M4_DEFINES="$M4_DEFINES -DENABLE_RESOLVED"
3c9317d2 1028fi
091a364c 1029AM_CONDITIONAL(ENABLE_RESOLVED, [test "$have_resolved" = "yes"])
3c9317d2 1030
e16cb2e4
TG
1031AC_ARG_WITH(dns-servers,
1032 AS_HELP_STRING([--with-dns-servers=DNSSERVERS],
1033 [Space-separated list of default DNS servers]),
49e5c2b2 1034 [DNS_SERVERS="$withval"],
7b4d7968 1035 [DNS_SERVERS="8.8.8.8 8.8.4.4 2001:4860:4860::8888 2001:4860:4860::8844"])
e16cb2e4
TG
1036
1037AC_DEFINE_UNQUOTED(DNS_SERVERS, ["$DNS_SERVERS"], [Default DNS Servers])
1038AC_SUBST(DNS_SERVERS)
1039
091a364c
TG
1040# ------------------------------------------------------------------------------
1041have_networkd=no
1042AC_ARG_ENABLE(networkd, AS_HELP_STRING([--disable-networkd], [disable networkd]))
81577dc2 1043AS_IF([test "x$enable_networkd" != "xno"], [
091a364c
TG
1044 AC_DEFINE(ENABLE_NETWORKD, 1, [Define if networkd support is to be enabled])
1045 have_networkd=yes
81577dc2 1046])
091a364c
TG
1047AM_CONDITIONAL(ENABLE_NETWORKD, [test "x$have_networkd" = "xyes"])
1048
b872e9a0
LP
1049# ------------------------------------------------------------------------------
1050have_efi=no
1051AC_ARG_ENABLE(efi, AS_HELP_STRING([--disable-efi], [disable EFI support]))
1052if test "x$enable_efi" != "xno"; then
1053 AC_DEFINE(ENABLE_EFI, 1, [Define if EFI support is to be enabled])
1054 have_efi=yes
1055fi
1056AM_CONDITIONAL(ENABLE_EFI, [test "x$have_efi" = "xyes"])
1057
bd441fa2
ZJS
1058# ------------------------------------------------------------------------------
1059have_multi_seat_x=no
1060AC_ARG_ENABLE(multi_seat_x, AS_HELP_STRING([--disable-multi-seat-x], [do not build multi-seat-x]))
1061if test "x$enable_multi_seat_x" != "xno"; then
1062 have_multi_seat_x=yes
1063fi
1064AM_CONDITIONAL(ENABLE_MULTI_SEAT_X, [test "$have_multi_seat_x" = "yes"])
1065
84da4a30
DH
1066# ------------------------------------------------------------------------------
1067have_terminal=no
1068AC_ARG_ENABLE(terminal, AS_HELP_STRING([--enable-terminal], [enable terminal support]))
1069if test "x$enable_terminal" = "xyes"; then
650c5444 1070 PKG_CHECK_MODULES([TERMINAL], [ libevdev >= 1.2 xkbcommon >= 0.4 libdrm >= 2.4], [have_terminal=yes])
c93e5a62
DH
1071 AS_IF([test "x$have_terminal" != xyes -a "x$enable_terminal" = xyes],
1072 [AC_MSG_ERROR([*** terminal support requested but required dependencies not available])],
1073 [test "x$have_terminal" = xyes],
1074 [AC_DEFINE(ENABLE_TERMINAL, 1, [Define if terminal support is to be enabled])])
84da4a30
DH
1075fi
1076AM_CONDITIONAL(ENABLE_TERMINAL, [test "x$have_terminal" = "xyes"])
1077
626851be
LP
1078# ------------------------------------------------------------------------------
1079have_kdbus=no
c97a6dbc 1080AC_ARG_ENABLE(kdbus, AS_HELP_STRING([--enable-kdbus], [do connect to kdbus by default]))
146ccaaf 1081if test "x$enable_kdbus" = "xyes"; then
626851be
LP
1082 AC_DEFINE(ENABLE_KDBUS, 1, [Define if kdbus support is to be enabled])
1083 have_kdbus=yes
4acbce79 1084 M4_DEFINES="$M4_DEFINES -DENABLE_KDBUS"
626851be
LP
1085fi
1086AM_CONDITIONAL(ENABLE_KDBUS, [test "$have_kdbus" = "yes"])
1087
b1c4ca25
LP
1088# ------------------------------------------------------------------------------
1089AC_ARG_WITH(rc-local-script-path-start,
1090 AS_HELP_STRING([--with-rc-local-script-path-start=PATH],
1091 [Path to /etc/rc.local]),
1092 [RC_LOCAL_SCRIPT_PATH_START="$withval"],
1093 [RC_LOCAL_SCRIPT_PATH_START="/etc/rc.local"])
1094
1095AC_ARG_WITH(rc-local-script-path-stop,
1096 AS_HELP_STRING([--with-rc-local-script-path-stop=PATH],
bc270841 1097 [Path to /usr/sbin/halt.local]),
b1c4ca25 1098 [RC_LOCAL_SCRIPT_PATH_STOP="$withval"],
bc270841 1099 [RC_LOCAL_SCRIPT_PATH_STOP="/usr/sbin/halt.local"])
b1c4ca25
LP
1100
1101AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_START, ["$RC_LOCAL_SCRIPT_PATH_START"], [Path of /etc/rc.local script])
bc270841 1102AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_STOP, ["$RC_LOCAL_SCRIPT_PATH_STOP"], [Path of /usr/sbin/halt.local script])
b1c4ca25
LP
1103
1104AC_SUBST(RC_LOCAL_SCRIPT_PATH_START)
1105AC_SUBST(RC_LOCAL_SCRIPT_PATH_STOP)
1106
a382332e
LP
1107# ------------------------------------------------------------------------------
1108AC_ARG_WITH(kbd-loadkeys,
1109 AS_HELP_STRING([--with-kbd-loadkeys=PATH],
1110 [Path to loadkeys]),
1111 [KBD_LOADKEYS="$withval"],
1112 [KBD_LOADKEYS="/usr/bin/loadkeys"])
1113
1114AC_ARG_WITH(kbd-setfont,
1115 AS_HELP_STRING([--with-kbd-setfont=PATH],
1116 [Path to setfont]),
1117 [KBD_SETFONT="$withval"],
1118 [KBD_SETFONT="/usr/bin/setfont"])
1119
1120AC_DEFINE_UNQUOTED(KBD_LOADKEYS, ["$KBD_LOADKEYS"], [Path of loadkeys])
1121AC_DEFINE_UNQUOTED(KBD_SETFONT, ["$KBD_SETFONT"], [Path of setfont])
1122
1123AC_SUBST(KBD_LOADKEYS)
1124AC_SUBST(KBD_SETFONT)
1125
4ad61fd1
CR
1126AC_ARG_WITH(telinit,
1127 AS_HELP_STRING([--with-telinit=PATH],
1128 [Path to telinit]),
1129 [TELINIT="$withval"],
abaaabf4 1130 [TELINIT="/lib/sysvinit/telinit"])
4ad61fd1
CR
1131
1132AC_DEFINE_UNQUOTED(TELINIT, ["$TELINIT"], [Path to telinit])
1133
1134AC_SUBST(TELINIT)
1135
54b434b1 1136AC_CHECK_HEADERS_ONCE([valgrind/memcheck.h valgrind/valgrind.h])
7211f918 1137
d562955e
TG
1138# ------------------------------------------------------------------------------
1139have_myhostname=no
f8c5a581 1140AC_ARG_ENABLE(myhostname, AS_HELP_STRING([--disable-myhostname], [disable nss-myhostname support]))
d562955e
TG
1141if test "x$enable_myhostname" != "xno"; then
1142 AC_HEADER_STDC
a3b6fafe 1143 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
1144
1145 AC_C_CONST
1146 AC_TYPE_SIZE_T
1147 AC_HEADER_TIME
1148
1149 AC_FUNC_MALLOC
1150 AC_FUNC_SELECT_ARGTYPES
1151 AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn])
1152
1153 have_myhostname=yes
1154fi
1155AM_CONDITIONAL(HAVE_MYHOSTNAME, [test "$have_myhostname" = "yes"])
1156
3e214785
KS
1157# ------------------------------------------------------------------------------
1158AC_ARG_ENABLE([gudev],
1159 AS_HELP_STRING([--disable-gudev], [disable Gobject libudev support @<:@default=enabled@:>@]),
1160 [], [enable_gudev=yes])
de1c301e 1161AS_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 1162AM_CONDITIONAL([ENABLE_GUDEV], [test "x$enable_gudev" = "xyes"])
de1c301e
LP
1163AS_IF([test "x$enable_gudev" = "xyes"], [ AC_DEFINE(HAVE_GLIB, 1, [Define if glib is available]) ])
1164
3e214785 1165# ------------------------------------------------------------------------------
75db9a77 1166have_manpages=no
4c2b0e4e 1167AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
4ca39b28 1168AS_IF([test "x$enable_manpages" != xno], [have_manpages=yes])
fe1fed02 1169AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
75db9a77 1170
4df5c00b
UTL
1171# ------------------------------------------------------------------------------
1172AC_ARG_ENABLE(hibernate,
1173 [AC_HELP_STRING([--disable-hibernate], [disable hibernation support])],
1174 enable_hibernate=$enableval, enable_hibernate=yes)
1175AM_CONDITIONAL(ENABLE_HIBERNATE, [test x$enable_hibernate = xyes])
1176
3e214785 1177# ------------------------------------------------------------------------------
12e34d9d
UTL
1178AC_ARG_ENABLE(ldconfig,
1179 [AC_HELP_STRING([--disable-ldconfig], [disable ldconfig])],
1180 enable_ldconfig=$enableval, enable_ldconfig=yes)
1181AM_CONDITIONAL(ENABLE_LDCONFIG, [test x$enable_ldconfig = xyes])
d1ab0ca0 1182
12e34d9d 1183# ------------------------------------------------------------------------------
34eff652
LP
1184# Location of the init scripts as mandated by LSB
1185SYSTEM_SYSVINIT_PATH=/etc/init.d
f1dd0c3f 1186SYSTEM_SYSVRCND_PATH=/etc/rc.d
12e84679 1187
136337ff 1188AC_ARG_WITH([sysvinit-path],
be31376e 1189 [AS_HELP_STRING([--with-sysvinit-path=PATH],
bc270841 1190 [Specify the path to where the SysV init scripts are located])],
be31376e
KS
1191 [SYSTEM_SYSVINIT_PATH="$withval"],
1192 [])
136337ff 1193
dee4c244
LP
1194AC_ARG_WITH([sysvrcnd-path],
1195 [AS_HELP_STRING([--with-sysvrcnd-path=PATH],
bc270841 1196 [Specify the path to the base directory for the SysV rcN.d directories])],
136337ff
TFH
1197 [SYSTEM_SYSVRCND_PATH="$withval"],
1198 [])
1199
07459bb6
FF
1200if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
1201 AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.])
1202 SYSTEM_SYSV_COMPAT="yes"
f975e971 1203 M4_DEFINES="$M4_DEFINES -DHAVE_SYSV_COMPAT"
07459bb6 1204elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
dee4c244 1205 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
1206else
1207 SYSTEM_SYSV_COMPAT="no"
1208fi
1209
bc270841
LP
1210AC_SUBST(SYSTEM_SYSVINIT_PATH)
1211AC_SUBST(SYSTEM_SYSVRCND_PATH)
1212AC_SUBST(M4_DEFINES)
1213
1214AM_CONDITIONAL(HAVE_SYSV_COMPAT, test "$SYSTEM_SYSV_COMPAT" = "yes")
1215
bef2733f 1216AC_ARG_WITH([tty-gid],
a05ea46d 1217 [AS_HELP_STRING([--with-tty-gid=GID],
bef2733f 1218 [Specify the numeric GID of the 'tty' group])],
f8b5d994
LP
1219 [TTY_GID="$withval"],
1220 [TTY_GID="5"])
1221
1222AC_DEFINE_UNQUOTED(TTY_GID, [$TTY_GID], [GID of the 'tty' group])
1223AC_SUBST(TTY_GID)
bef2733f 1224
d2d12cd1
LP
1225AC_ARG_WITH([dbuspolicydir],
1226 AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
1227 [],
25ee45f9 1228 [with_dbuspolicydir=$($PKG_CONFIG --variable=sysconfdir dbus-1)/dbus-1/system.d])
d122948d 1229
d2d12cd1
LP
1230AC_ARG_WITH([dbussessionservicedir],
1231 AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
1232 [],
25ee45f9 1233 [with_dbussessionservicedir=$($PKG_CONFIG --variable=session_bus_services_dir dbus-1)])
d122948d 1234
d2d12cd1
LP
1235AC_ARG_WITH([dbussystemservicedir],
1236 AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
1237 [],
03c14914 1238 [with_dbussystemservicedir=$(readlink -m $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../system-services)])
d122948d 1239
d2d12cd1
LP
1240AC_ARG_WITH([dbusinterfacedir],
1241 AS_HELP_STRING([--with-dbusinterfacedir=DIR], [D-Bus interface directory]),
1242 [],
03c14914 1243 [with_dbusinterfacedir=$(readlink -m $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../interfaces)])
d122948d 1244
db059f1b
MB
1245AC_ARG_WITH([bashcompletiondir],
1246 AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
1247 [],
25ee45f9
MB
1248 [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
1249 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
db059f1b
MB
1250 ] , [
1251 with_bashcompletiondir=${datadir}/bash-completion/completions
1252 ])])
1253
4f87c47b
WG
1254AC_ARG_WITH([zshcompletiondir],
1255 AS_HELP_STRING([--with-zshcompletiondir=DIR], [Zsh completions directory]),
1256 [], [with_zshcompletiondir=${datadir}/zsh/site-functions])
1257
b8079ae1
KS
1258AC_ARG_WITH([rootprefix],
1259 AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
39ad55a9 1260 [], [with_rootprefix=${ac_default_prefix}])
d2d12cd1 1261
ae446765
KS
1262AC_ARG_WITH([rootlibdir],
1263 AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
1264 [],
1265 [with_rootlibdir=${libdir}])
1266
9d3203b4 1267AC_ARG_WITH([pamlibdir],
b0cca7d8 1268 AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]),
9d3203b4
KS
1269 [],
1270 [with_pamlibdir=${with_rootlibdir}/security])
1271
5c390a4a
ZJS
1272AC_ARG_WITH([pamconfdir],
1273 AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration]),
1274 [],
1275 [with_pamconfdir=${sysconfdir}/pam.d])
1276
bc9bdbba
MG
1277AC_ARG_ENABLE([split-usr],
1278 AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]),
1279 [],
1280 [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [
1281 enable_split_usr=yes
1282 ], [
1283 enable_split_usr=no
1284 ])])
1285
1286AS_IF([test "x${enable_split_usr}" = "xyes"], [
2c6db6fb 1287 AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr])
bc9bdbba 1288])
2c6db6fb 1289
6fc00209
ZJS
1290# Work around intltoolize and gtk-doc problems in VPATH builds
1291AM_CONDITIONAL([ENABLE_GTK_DOC_TESTS], [test "x$0" = "x./configure"],
1292 [Define to do gtk-doc tests])
1293AS_IF([test "x$0" != "x./configure"], [
1294 AC_SUBST([INTLTOOL_UPDATE], [/bin/true])
1295])
1296
cee22bd3
HGB
1297AC_ARG_ENABLE(tests,
1298 [AC_HELP_STRING([--disable-tests], [disable tests])],
1299 enable_tests=$enableval, enable_tests=yes)
1300AM_CONDITIONAL(ENABLE_TESTS, [test x$enable_tests = xyes])
1301
d2d12cd1
LP
1302AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
1303AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
1304AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
1305AC_SUBST([dbusinterfacedir], [$with_dbusinterfacedir])
db059f1b 1306AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
4f87c47b 1307AC_SUBST([zshcompletiondir], [$with_zshcompletiondir])
8c6db833 1308AC_SUBST([pamlibdir], [$with_pamlibdir])
5c390a4a 1309AC_SUBST([pamconfdir], [$with_pamconfdir])
b8079ae1 1310AC_SUBST([rootprefix], [$with_rootprefix])
ae446765 1311AC_SUBST([rootlibdir], [$with_rootlibdir])
8c4a3079 1312
3e214785
KS
1313AC_CONFIG_FILES([
1314 Makefile po/Makefile.in
bb061708
KS
1315 docs/libudev/Makefile
1316 docs/libudev/version.xml
1317 docs/gudev/Makefile
1318 docs/gudev/version.xml
3e214785
KS
1319])
1320
a45a909f 1321AC_OUTPUT
ae446765 1322AC_MSG_RESULT([
0571e011
LP
1323 $PACKAGE_NAME $VERSION
1324
7f4e0805 1325 libcryptsetup: ${have_libcryptsetup}
5b6319dc 1326 PAM: ${have_pam}
12716238 1327 AUDIT: ${have_audit}
81611586 1328 IMA: ${have_ima}
eef65bf3 1329 AppArmor: ${have_apparmor}
12716238 1330 SELinux: ${have_selinux}
c0467cf3 1331 SECCOMP: ${have_seccomp}
2b3e18de 1332 SMACK: ${have_smack}
807e17f0 1333 XZ: ${have_xz}
d89c8fdf 1334 LZ4: ${have_lz4}
5eda94dd 1335 ACL: ${have_acl}
7560fffc 1336 GCRYPT: ${have_gcrypt}
f6a971bc 1337 QRENCODE: ${have_qrencode}
7b17a7d7 1338 MICROHTTPD: ${have_microhttpd}
77e68fa2 1339 CHKCONFIG: ${have_chkconfig}
60313199 1340 GNUTLS: ${have_gnutls}
36ef43ed 1341 libcurl: ${have_libcurl}
bdf10b5b 1342 libidn: ${have_libidn}
8d4e028f 1343 ELFUTILS: ${have_elfutils}
27669061 1344 binfmt: ${have_binfmt}
e5e83e83 1345 vconsole: ${have_vconsole}
83fdc450 1346 bootchart: ${have_bootchart}
4de85612 1347 quotacheck: ${have_quotacheck}
6351163b 1348 tmpfiles: ${have_tmpfiles}
1b992147 1349 sysusers: ${have_sysusers}
418b9be5 1350 firstboot: ${have_firstboot}
4de85612 1351 randomseed: ${have_randomseed}
3731acf1 1352 backlight: ${have_backlight}
3990f247 1353 rfkill: ${have_rfkill}
2a018e83 1354 logind: ${have_logind}
1ee306e1 1355 machined: ${have_machined}
b2e9fb99 1356 hostnamed: ${have_hostnamed}
f47cd184 1357 timedated: ${have_timedated}
a91df40e 1358 timesyncd: ${have_timesyncd}
e8af6973 1359 default NTP servers: ${NTP_SERVERS}
661278ee 1360 time epoch: ${TIME_EPOCH}
4cd1eaa5 1361 localed: ${have_localed}
7a243b22 1362 networkd: ${have_networkd}
091a364c 1363 resolved: ${have_resolved}
e16cb2e4 1364 default DNS servers: ${DNS_SERVERS}
f5e04665 1365 coredump: ${have_coredump}
46ba8aae 1366 polkit: ${have_polkit}
b872e9a0 1367 efi: ${have_efi}
e3043162 1368 kmod: ${have_kmod}
f553b3b1 1369 blkid: ${have_blkid}
ac6b760c 1370 dbus: ${have_dbus}
d562955e 1371 nss-myhostname: ${have_myhostname}
3e214785
KS
1372 gudev: ${enable_gudev}
1373 gintrospection: ${enable_introspection}
bd441fa2 1374 multi-seat-x: ${have_multi_seat_x}
84da4a30 1375 terminal: ${have_terminal}
626851be 1376 kdbus: ${have_kdbus}
8d7e170a
LP
1377 Python: ${have_python}
1378 Python Headers: ${have_python_devel}
2f4da3e6
ZJS
1379 man pages: ${have_manpages}
1380 gtk-doc: ${enable_gtk_doc}
6aea6d10 1381 test coverage: ${have_coverage}
2f4da3e6
ZJS
1382 Split /usr: ${enable_split_usr}
1383 SysV compatibility: ${SYSTEM_SYSV_COMPAT}
53e856e1 1384 compatibility libraries: ${have_compat_libs}
37161c51 1385 utmp/wtmp support: ${have_utmp}
3e214785 1386
8c4a3079 1387 prefix: ${prefix}
b8079ae1 1388 rootprefix: ${with_rootprefix}
3e214785
KS
1389 sysconf dir: ${sysconfdir}
1390 datarootdir: ${datarootdir}
1391 includedir: ${includedir}
1392 include_prefix: ${INCLUDE_PREFIX}
ae446765
KS
1393 lib dir: ${libdir}
1394 rootlib dir: ${with_rootlibdir}
2f4da3e6
ZJS
1395 SysV init scripts: ${SYSTEM_SYSVINIT_PATH}
1396 SysV rc?.d directories: ${SYSTEM_SYSVRCND_PATH}
1397 Build Python: ${PYTHON}
1398 Installation Python: ${PYTHON_BINARY}
f2ec0646 1399 sphinx binary: ${SPHINX_BUILD}
2c6db6fb 1400 PAM modules dir: ${with_pamlibdir}
5c390a4a 1401 PAM configuration dir: ${with_pamconfdir}
2c6db6fb
LP
1402 D-Bus policy dir: ${with_dbuspolicydir}
1403 D-Bus session dir: ${with_dbussessionservicedir}
1404 D-Bus system dir: ${with_dbussystemservicedir}
1405 D-Bus interfaces dir: ${with_dbusinterfacedir}
db059f1b 1406 Bash completions dir: ${with_bashcompletiondir}
4f87c47b 1407 Zsh completions dir: ${with_zshcompletiondir}
b1c4ca25
LP
1408 Extra start script: ${RC_LOCAL_SCRIPT_PATH_START}
1409 Extra stop script: ${RC_LOCAL_SCRIPT_PATH_STOP}
45df1f2c 1410 Debug shell: ${SUSHELL} @ ${DEBUGTTY}
f8b5d994 1411 TTY GID: ${TTY_GID}
f7dc3ab9
LP
1412 Maximum System UID: ${SYSTEM_UID_MAX}
1413 Maximum System GID: ${SYSTEM_GID_MAX}
ad95fd1d 1414 Certificate root: ${CERTIFICATEROOT}
66be6554 1415
5a45a936 1416 CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
1f048a6b 1417 CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
5a45a936 1418 LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
a6c0b31d
ZJS
1419 PYTHON_CFLAGS: ${PYTHON_DEVEL_CFLAGS}
1420 PYTHON_LIBS: ${PYTHON_DEVEL_LIBS}
ae446765 1421])