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