]> git.ipfire.org Git - thirdparty/systemd.git/blame - configure.ac
bus: conditionally set cookie_reply/timeout and update kdbus.h
[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],
cd4010b3 23 [208],
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])
bbd9b8c2 37AM_INIT_AUTOMAKE([foreign 1.11 -Wall -Wno-portability silent-rules tar-pax no-dist-gzip dist-xz subdir-objects check-news])
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
BN
51# i18n stuff for the PolicyKit policy files
52IT_PROG_INTLTOOL([0.40.0])
53
54GETTEXT_PACKAGE=systemd
55AC_SUBST(GETTEXT_PACKAGE)
56
e9da3678
LP
57AC_PROG_MKDIR_P
58AC_PROG_LN_S
59AC_PROG_SED
3ce4fad8 60AC_PROG_GREP
f975e971 61AC_PROG_AWK
e9da3678 62
47be870b 63AC_PROG_CC_C99
47be870b 64
3e214785 65AC_PATH_PROG([M4], [m4])
fe1fed02 66AC_PATH_PROG([XSLTPROC], [xsltproc])
92ec4495 67
86b2e20a
LP
68AC_PATH_PROG([QUOTAON], [quotaon], [/usr/sbin/quotaon])
69AC_PATH_PROG([QUOTACHECK], [quotacheck], [/usr/sbin/quotacheck])
b51fc639 70
86b2e20a
LP
71AC_PATH_PROG([SETCAP], [setcap], [/usr/sbin/setcap])
72
c1c02e07 73AC_PATH_PROG([KILL], [kill], [/usr/bin/kill])
96ede260 74
edeb68c5
TG
75AC_PATH_PROG([KMOD], [kmod], [/usr/bin/kmod])
76
78013564
ZJS
77AC_PATH_PROG([KEXEC], [kexec], [/usr/sbin/kexec])
78
80a5cbac 79# gtkdocize greps for '^GTK_DOC_CHECK', so it needs to be on its own line
b37250d6
ZJS
80m4_ifdef([GTK_DOC_CHECK], [
81GTK_DOC_CHECK([1.18],[--flavour no-tmpl])],
6581f00f
ZJS
82 [AM_CONDITIONAL([ENABLE_GTK_DOC], [false])
83 enable_gtk_doc=no])
92ec4495 84
fe1fed02
ZJS
85AS_IF([test "x$enable_gtk_doc" = "xyes" -a "x$XSLTPROC" = x], [
86 AC_MSG_ERROR([*** GTK doc requested but xsltproc not found])
87])
88
6e92b23f 89m4_ifdef([GOBJECT_INTROSPECTION_CHECK], [
0eaeca1f 90GOBJECT_INTROSPECTION_CHECK([1.31.1])
d66ee73a
ZJS
91], [
92 AM_CONDITIONAL([HAVE_INTROSPECTION], [false])
93 enable_introspection=no])
3e214785 94
ac714a78
MJ
95AC_CHECK_TOOL(STRINGS, strings)
96AC_CHECK_TOOL(GPERF, gperf)
b62cfcea
MB
97if test -z "$GPERF" ; then
98 AC_MSG_ERROR([*** gperf not found])
99fi
9a60da28 100
732bfe09
ZJS
101# ------------------------------------------------------------------------------
102address_sanitizer_cflags=
103address_sanitizer_cppflags=
104address_sanitizer_ldflags=
105AC_ARG_ENABLE(address-sanitizer, AS_HELP_STRING([--enable-address-sanitizer], [enable -fsanitize=address]))
106AS_IF([test "x$enable_address_sanitizer" = "xyes"], [
107 CC_CHECK_FLAG_APPEND([with_as_cflags], [CFLAGS], [-fsanitize=address])
108 AS_IF([test -z "$with_as_cflags"],
109 [AC_MSG_ERROR([*** -fsanitize=address is not supported])])
110 address_sanitizer_cflags="$with_as_cflags -fno-omit-frame-pointer -DVALGRIND=1"
111 address_sanitizer_cppflags="-DVALGRIND=1"
112 address_sanitizer_ldflags="-Wc,-fsanitize=address"
113 ])
114
eb2e280f 115CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
be1a67d9 116 -pipe \
d1ab0ca0 117 -Wall \
d1ab0ca0 118 -Wextra \
27765dfc 119 -Wno-inline \
d1ab0ca0 120 -Wundef \
780040dc 121 "-Wformat=2 -Wformat-security -Wformat-nonliteral" \
d1ab0ca0
LP
122 -Wlogical-op \
123 -Wsign-compare \
d1ab0ca0 124 -Wmissing-include-dirs \
d1ab0ca0
LP
125 -Wold-style-definition \
126 -Wpointer-arith \
127 -Winit-self \
03930e48 128 -Wdeclaration-after-statement \
d1ab0ca0
LP
129 -Wfloat-equal \
130 -Wmissing-prototypes \
131 -Wstrict-prototypes \
132 -Wredundant-decls \
133 -Wmissing-declarations \
134 -Wmissing-noreturn \
135 -Wshadow \
136 -Wendif-labels \
137 -Wcast-align \
138 -Wstrict-aliasing=2 \
139 -Wwrite-strings \
be1a67d9
LP
140 -Wno-long-long \
141 -Wno-overlength-strings \
d1ab0ca0 142 -Wno-unused-parameter \
be1a67d9 143 -Wno-missing-field-initializers \
8745297f 144 -Wno-unused-result \
d200735e 145 -Werror=overflow \
213298fb 146 -Wdate-time \
be1a67d9 147 -ffast-math \
d1ab0ca0
LP
148 -fno-common \
149 -fdiagnostics-show-option \
9f64229f 150 -fdiagnostics-color \
9b85fc6a
GSB
151 -fno-strict-aliasing \
152 -fvisibility=hidden \
153 -ffunction-sections \
5a45a936 154 -fdata-sections \
c1663b9d
LP
155 -fstack-protector \
156 --param=ssp-buffer-size=4])
b850b06e
KS
157AS_CASE([$CFLAGS], [*-O[[12345\ ]]*],
158 [CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
159 -flto])],
160 [AC_MSG_RESULT([skipping -flto, optimization not enabled])])
732bfe09 161AC_SUBST([OUR_CFLAGS], "$with_cflags $address_sanitizer_cflags")
5a45a936 162
03a170c0 163AS_CASE([$CFLAGS], [*-O[[12345\ ]]*],
a6c0b31d
ZJS
164 [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
165 -Wp,-D_FORTIFY_SOURCE=2])],
166 [AC_MSG_RESULT([skipping -D_FORTIFY_SOURCE, optimization not enabled])])
732bfe09 167AC_SUBST([OUR_CPPFLAGS], "$with_cppflags $address_sanitizer_cppflags")
9e7adc3a
LDM
168
169CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\
9b85fc6a 170 -Wl,--as-needed \
9d2d0fe1 171 -Wl,--no-undefined \
5a45a936
LP
172 -Wl,--gc-sections \
173 -Wl,-z,relro \
174 -Wl,-z,now])
732bfe09 175AC_SUBST([OUR_LDFLAGS], "$with_ldflags $address_sanitizer_ldflags")
47be870b 176
c937e0d5
ZJS
177# ------------------------------------------------------------------------------
178# we use python to build the man page index, and for systemd-python
179have_python=no
c937e0d5
ZJS
180AC_ARG_WITH([python],
181 [AS_HELP_STRING([--without-python], [Disable building the man page index and systemd-python (default: test)])])
182
183AS_IF([test "x$with_python" != "xno"], [
184 AM_PATH_PYTHON(,, [:])
185 AS_IF([test "$PYTHON" != :], [have_python=yes])
186])
187AM_CONDITIONAL([HAVE_PYTHON], [test "x$have_python" = "xyes"])
188AS_IF([test "x$PYTHON_BINARY" = "x"],
189 [AS_IF([test "x$have_python" = "xyes"],
25ee45f9 190 [PYTHON_BINARY="$(which "$PYTHON")"],
c937e0d5
ZJS
191 [PYTHON_BINARY=/usr/bin/python])])
192AC_ARG_VAR(PYTHON_BINARY, [Python binary used to launch installed scripts])
193
1864b0e3
ZJS
194AS_IF([test "x$have_python" != "xyes" -a "x$enable_python_devel" = "xyes"],
195 [AC_MSG_ERROR([*** python-devel support requires --with-python])])
196
a6c0b31d
ZJS
197have_python_devel=no
198AC_ARG_ENABLE(python_devel, AS_HELP_STRING([--disable-python-devel], [Do not build python modules]))
1864b0e3 199AS_IF([test "x$have_python" = "xyes" -a "x$enable_python_devel" != "xno"], [
a6c0b31d
ZJS
200 PKG_CHECK_MODULES([PYTHON_DEVEL], [python-${PYTHON_VERSION}],
201 [have_python_devel=yes],
202 [PKG_CHECK_MODULES([PYTHON_DEVEL], [python],
203 [have_python_devel=yes],
204 [have_python_devel=no])])
205 AS_IF([test "x$have_python_devel" = xno -a "x$enable_python_devel" = xyes],
206 [AC_MSG_ERROR([*** python-devel support requested but libraries not found])])
f2ec0646 207 AC_PATH_PROGS(SPHINX_BUILD, sphinx-build-${PYTHON_VERSION} sphinx-build)
c937e0d5
ZJS
208])
209AM_CONDITIONAL([HAVE_PYTHON_DEVEL], [test "$have_python_devel" = "yes"])
210
211# ------------------------------------------------------------------------------
212
afea26ad 213AC_SEARCH_LIBS([dlsym], [dl], [], [AC_MSG_ERROR([*** Dynamic linking loader library not found])])
7959ff99 214AC_CHECK_HEADERS([sys/capability.h], [], [AC_MSG_ERROR([*** POSIX caps headers not found])])
4b357e15 215AC_CHECK_HEADERS([linux/btrfs.h], [], [])
7959ff99
KS
216
217# unconditionally pull-in librt with old glibc versions
218AC_SEARCH_LIBS([clock_gettime], [rt], [], [])
85f19d82
MB
219
220save_LIBS="$LIBS"
221LIBS=
47be870b 222AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
85f19d82 223CAP_LIBS="$LIBS"
7959ff99
KS
224AC_SUBST(CAP_LIBS)
225
226LIBS=
fba1ea06
SL
227AC_SEARCH_LIBS([mq_open], [rt], [], [AC_MSG_ERROR([*** POSIX RT library not found])])
228RT_LIBS="$LIBS"
229AC_SUBST(RT_LIBS)
85f19d82 230LIBS="$save_LIBS"
47be870b 231
9388e99e 232AC_CHECK_FUNCS([fanotify_init fanotify_mark])
4db17f29 233AC_CHECK_FUNCS([__secure_getenv secure_getenv])
9388e99e 234AC_CHECK_DECLS([gettid, pivot_root, name_to_handle_at], [], [], [[#include <sys/types.h>
a8348796 235#include <unistd.h>
9388e99e
MO
236#include <sys/mount.h>
237#include <fcntl.h>]])
a8348796 238
b237ef2c 239# This makes sure pkg.m4 is available.
a9b5b032 240m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
d1ab0ca0 241
22703094
KS
242# ------------------------------------------------------------------------------
243PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.3.2], have_dbus=yes, have_dbus=no])
244AS_IF([test "$have_dbus" = "yes"], [ AC_DEFINE(HAVE_DBUS, [1], [Define if dbus-1 is available]) ])
245AM_CONDITIONAL(HAVE_DBUS, [test "$have_dbus" = "yes"])
4b357e15 246
6aea6d10
TA
247# ------------------------------------------------------------------------------
248have_coverage=no
249AC_ARG_ENABLE(coverage, AS_HELP_STRING([--enable-coverage], [enable test coverage]))
250if test "x$enable_coverage" = "xyes" ; then
251 AC_CHECK_PROG(lcov_found, [lcov], [yes], [no])
252 if test "x$lcov_found" = xno ; then
253 AC_MSG_ERROR([*** lcov support requested but the program was not found])
254 else
255 lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`"
256 lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`"
257 if test "$lcov_version_major" -eq 1 -a "$lcov_version_minor" -lt 10; then
258 AC_MSG_ERROR([*** lcov version is too old. 1.10 required])
259 else
260 have_coverage=yes
261 CC_CHECK_FLAGS_APPEND([with_coverage_cflags], [CFLAGS], [\
262 -fprofile-arcs \
263 -ftest-coverage])
264 AC_SUBST([OUR_CFLAGS], "$with_cflags $with_coverage_cflags")
265 fi
266 fi
267fi
268AM_CONDITIONAL(ENABLE_COVERAGE, [test "$have_coverage" = "yes"])
269
e3043162
TG
270# ------------------------------------------------------------------------------
271have_kmod=no
272AC_ARG_ENABLE(kmod, AS_HELP_STRING([--disable-kmod], [disable loadable modules support]))
273if test "x$enable_kmod" != "xno"; then
e2ca86cf
DR
274 PKG_CHECK_EXISTS([ libkmod ], have_kmod=yes, have_kmod=no)
275 if test "x$have_kmod" = "xyes"; then
a18535d9 276 PKG_CHECK_MODULES(KMOD, [ libkmod >= 15 ],
e2ca86cf 277 [AC_DEFINE(HAVE_KMOD, 1, [Define if kmod is available])],
70d83209 278 AC_MSG_ERROR([*** kmod version >= 15 not found]))
e2ca86cf 279 fi
e3043162 280 if test "x$have_kmod" = xno -a "x$enable_kmod" = xyes; then
c4955740 281 AC_MSG_ERROR([*** kmod support requested, but libraries not found])
e3043162
TG
282 fi
283fi
284AM_CONDITIONAL(HAVE_KMOD, [test "$have_kmod" = "yes"])
f553b3b1
AO
285
286# ------------------------------------------------------------------------------
287have_blkid=no
288AC_ARG_ENABLE(blkid, AS_HELP_STRING([--disable-blkid], [disable blkid support]))
289if test "x$enable_blkid" != "xno"; then
290 PKG_CHECK_MODULES(BLKID, [ blkid >= 2.20 ],
291 [AC_DEFINE(HAVE_BLKID, 1, [Define if blkid is available]) have_blkid=yes], have_blkid=no)
292 if test "x$have_blkid" = xno -a "x$enable_blkid" = xyes; then
293 AC_MSG_ERROR([*** blkid support requested but libraries not found])
294 fi
295fi
296AM_CONDITIONAL(HAVE_BLKID, [test "$have_blkid" = "yes"])
728beb28 297
3e214785 298# ------------------------------------------------------------------------------
81611586
RS
299have_ima=yes
300AC_ARG_ENABLE([ima], AS_HELP_STRING([--disable-ima],[Disable optional IMA support]),
301 [case "${enableval}" in
302 yes) have_ima=yes ;;
303 no) have_ima=no ;;
304 *) AC_MSG_ERROR(bad value ${enableval} for --disable-ima) ;;
305 esac],
306 [have_ima=yes])
307
308if test "x${have_ima}" != xno ; then
309 AC_DEFINE(HAVE_IMA, 1, [Define if IMA is available])
310fi
311
77e68fa2
LP
312# ------------------------------------------------------------------------------
313have_chkconfig=yes
314AC_ARG_ENABLE([chkconfig], AS_HELP_STRING([--disable-chkconfig],[Disable optional chkconfig support]),
315 [case "${enableval}" in
316 yes) have_chkconfig=yes ;;
317 no) have_chkconfig=no ;;
318 *) AC_MSG_ERROR(bad value ${enableval} for --disable-chkconfig) ;;
319 esac],
320 [AC_PATH_PROG(CHKCONFIG, chkconfig)
321 if test -z "$CHKCONFIG"; then
322 have_chkconfig=no
323 else
324 have_chkconfig=yes
325 fi])
326
327if test "x${have_chkconfig}" != xno ; then
328 AC_DEFINE(HAVE_CHKCONFIG, 1, [Define if CHKCONFIG is available])
329fi
330
3e214785 331# ------------------------------------------------------------------------------
591622d7
LP
332have_selinux=no
333AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
334if test "x$enable_selinux" != "xno"; then
3f8cc098 335 PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9],
591622d7 336 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available]) have_selinux=yes], have_selinux=no)
591622d7
LP
337 if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
338 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
339 fi
56cf987f 340fi
591622d7 341AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
45df1f2c
CR
342
343AC_ARG_WITH(debug-shell,
344 AS_HELP_STRING([--with-debug-shell=PATH],
345 [Path to debug shell binary]),
346 [SUSHELL="$withval"],[
347 AS_IF([test "x${have_selinux}" != "xno"], [SUSHELL="/sbin/sushell"] , [SUSHELL="/bin/sh"])])
348
5ec6b15b 349AC_SUBST(SUSHELL)
56cf987f 350
45df1f2c
CR
351AC_ARG_WITH([debug-tty],
352 AS_HELP_STRING([--with-debug-tty=PATH],
353 [Specify the tty device for debug shell]),
354 [DEBUGTTY="$withval"],
355 [DEBUGTTY=/dev/tty9])
356
357AC_SUBST(DEBUGTTY)
358
3e214785 359# ------------------------------------------------------------------------------
807e17f0
LP
360have_xz=no
361AC_ARG_ENABLE(xz, AS_HELP_STRING([--disable-xz], [Disable optional XZ support]))
362if test "x$enable_xz" != "xno"; then
363 PKG_CHECK_MODULES(XZ, [ liblzma ],
364 [AC_DEFINE(HAVE_XZ, 1, [Define if XZ is available]) have_xz=yes], have_xz=no)
807e17f0
LP
365 if test "x$have_xz" = xno -a "x$enable_xz" = xyes; then
366 AC_MSG_ERROR([*** Xz support requested but libraries not found])
367 fi
368fi
369AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"])
370
3e214785 371# ------------------------------------------------------------------------------
0213c3f8
LP
372AC_ARG_ENABLE([tcpwrap],
373 AS_HELP_STRING([--disable-tcpwrap],[Disable optional TCP wrappers support]),
374 [case "${enableval}" in
5b6319dc
LP
375 yes) have_tcpwrap=yes ;;
376 no) have_tcpwrap=no ;;
0213c3f8
LP
377 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
378 esac],
5b6319dc 379 [have_tcpwrap=auto])
0213c3f8 380
5b6319dc 381if test "x${have_tcpwrap}" != xno ; then
0213c3f8
LP
382 ACX_LIBWRAP
383 if test "x${LIBWRAP_LIBS}" = x ; then
5b6319dc
LP
384 if test "x$have_tcpwrap" = xyes ; then
385 AC_MSG_ERROR([*** TCP wrappers support not found.])
0213c3f8 386 fi
812cce32 387 have_tcpwrap=no
0213c3f8 388 else
5b6319dc 389 have_tcpwrap=yes
0213c3f8
LP
390 fi
391else
5b6319dc 392 LIBWRAP_LIBS=
0213c3f8 393fi
0213c3f8
LP
394AC_SUBST(LIBWRAP_LIBS)
395
3e214785 396# ------------------------------------------------------------------------------
5b6319dc
LP
397AC_ARG_ENABLE([pam],
398 AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
399 [case "${enableval}" in
400 yes) have_pam=yes ;;
401 no) have_pam=no ;;
402 *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
403 esac],
404 [have_pam=auto])
405
406if test "x${have_pam}" != xno ; then
407 AC_CHECK_HEADERS(
408 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
409 [have_pam=yes],
410 [if test "x$have_pam" = xyes ; then
411 AC_MSG_ERROR([*** PAM headers not found.])
412 fi])
413
414 AC_CHECK_LIB(
415 [pam],
416 [pam_syslog],
417 [have_pam=yes],
418 [if test "x$have_pam" = xyes ; then
419 AC_MSG_ERROR([*** libpam not found.])
420 fi])
421
422 if test "x$have_pam" = xyes ; then
423 PAM_LIBS="-lpam -lpam_misc"
424 AC_DEFINE(HAVE_PAM, 1, [PAM available])
812cce32
LP
425 else
426 have_pam=no
5b6319dc
LP
427 fi
428else
429 PAM_LIBS=
430fi
431AC_SUBST(PAM_LIBS)
432AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
433
3e214785 434# ------------------------------------------------------------------------------
5eda94dd
LP
435AC_ARG_ENABLE([acl],
436 AS_HELP_STRING([--disable-acl],[Disable optional ACL support]),
437 [case "${enableval}" in
438 yes) have_acl=yes ;;
439 no) have_acl=no ;;
440 *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;;
441 esac],
442 [have_acl=auto])
443
444if test "x${have_acl}" != xno ; then
445 AC_CHECK_HEADERS(
446 [sys/acl.h acl/libacl.h],
447 [have_acl=yes],
448 [if test "x$have_acl" = xyes ; then
449 AC_MSG_ERROR([*** ACL headers not found.])
450 fi])
451
452 AC_CHECK_LIB(
453 [acl],
454 [acl_get_file],
455 [have_acl=yes],
456 [if test "x$have_acl" = xyes ; then
457 AC_MSG_ERROR([*** libacl not found.])
458 fi])
459
460 if test "x$have_acl" = xyes ; then
461 ACL_LIBS="-lacl"
462 AC_DEFINE(HAVE_ACL, 1, [ACL available])
463 else
464 have_acl=no
465 fi
466else
467 ACL_LIBS=
468fi
469AC_SUBST(ACL_LIBS)
470AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno])
471
fb0951b0
LP
472# ------------------------------------------------------------------------------
473AC_ARG_ENABLE([xattr],
474 AS_HELP_STRING([--disable-xattr],[Disable optional XATTR support]),
475 [case "${enableval}" in
476 yes) have_xattr=yes ;;
477 no) have_xattr=no ;;
478 *) AC_MSG_ERROR(bad value ${enableval} for --disable-xattr) ;;
479 esac],
480 [have_xattr=auto])
481
482if test "x${have_xattr}" != xno ; then
483 AC_CHECK_HEADERS(
484 [attr/xattr.h],
485 [have_xattr=yes],
486 [if test "x$have_xattr" = xyes ; then
487 AC_MSG_ERROR([*** XATTR headers not found.])
488 fi])
489
490 AC_CHECK_LIB(
491 [attr],
492 [fsetxattr],
493 [have_xattr=yes],
494 [if test "x$have_xattr" = xyes ; then
495 AC_MSG_ERROR([*** libattr not found.])
496 fi])
497
498 if test "x$have_xattr" = xyes ; then
499 XATTR_LIBS="-lattr"
500 AC_DEFINE(HAVE_XATTR, 1, [XATTR available])
501 else
502 have_xattr=no
503 fi
504else
505 XATTR_LIBS=
506fi
507AC_SUBST(XATTR_LIBS)
508AM_CONDITIONAL([HAVE_XATTR], [test "x$have_xattr" != xno])
509
2b3e18de
KL
510# ------------------------------------------------------------------------------
511AC_ARG_ENABLE([smack], AS_HELP_STRING([--disable-smack],[Disable optional SMACK support]),
512 [case "${enableval}" in
513 yes) have_smack=yes ;;
514 no) have_smack=no ;;
515 *) AC_MSG_ERROR(bad value ${enableval} for --disable-smack) ;;
516 esac],
517 [have_smack=auto])
518
519if test "x${have_xattr}" = xno; then
520 if test "x${have_smack}" = xyes; then
521 AC_MSG_ERROR(SMACK requires xattr support)
522 else
523 have_smack=no
524 fi
525else
526 if test "x${have_smack}" = xauto; then
527 have_smack=yes
528 fi
529fi
530
8b197c3a
AK
531AC_ARG_WITH(smack-run-label,
532AS_HELP_STRING([--with-smack-run-label=STRING],
533 [run systemd --system with a specific SMACK label]),
534 [AC_DEFINE_UNQUOTED(SMACK_RUN_LABEL, ["$withval"], [Run with a smack label])],
535 [])
536
2b3e18de
KL
537if test "x${have_smack}" = xyes ; then
538 AC_DEFINE(HAVE_SMACK, 1, [Define if SMACK is available])
539fi
540
7560fffc 541# ------------------------------------------------------------------------------
feb12d3e 542AC_ARG_ENABLE([gcrypt],
7560fffc
LP
543 AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]),
544 [case "${enableval}" in
545 yes) have_gcrypt=yes ;;
546 no) have_gcrypt=no ;;
547 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gcrypt) ;;
548 esac],
549 [have_gcrypt=auto])
550
551if test "x${have_gcrypt}" != xno ; then
552 AM_PATH_LIBGCRYPT(
553 [1.4.5],
554 [have_gcrypt=yes],
555 [if test "x$have_gcrypt" = xyes ; then
556 AC_MSG_ERROR([*** GCRYPT headers not found.])
557 fi])
558
559 if test "x$have_gcrypt" = xyes ; then
560 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
561 GCRYPT_CFLAGS="$LIBGCRYPT_CFLAGS"
562 AC_DEFINE(HAVE_GCRYPT, 1, [GCRYPT available])
563 else
564 have_gcrypt=no
565 fi
566else
567 GCRYPT_LIBS=
568 GCRYPT_CFLAGS=
569fi
570AC_SUBST(GCRYPT_LIBS)
571AC_SUBST(GCRYPT_CFLAGS)
572AM_CONDITIONAL([HAVE_GCRYPT], [test "x$have_gcrypt" != xno])
573
3e214785 574# ------------------------------------------------------------------------------
4927fcae
LP
575AC_ARG_ENABLE([audit],
576 AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]),
577 [case "${enableval}" in
578 yes) have_audit=yes ;;
579 no) have_audit=no ;;
580 *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;;
581 esac],
582 [have_audit=auto])
583
584if test "x${have_audit}" != xno ; then
585 AC_CHECK_HEADERS(
586 [libaudit.h],
587 [have_audit=yes],
588 [if test "x$have_audit" = xyes ; then
589 AC_MSG_ERROR([*** AUDIT headers not found.])
590 fi])
591
592 AC_CHECK_LIB(
593 [audit],
594 [audit_open],
595 [have_audit=yes],
596 [if test "x$have_audit" = xyes ; then
597 AC_MSG_ERROR([*** libaudit not found.])
598 fi])
599
600 if test "x$have_audit" = xyes ; then
601 AUDIT_LIBS="-laudit"
602 AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available])
603 else
604 have_audit=no
605 fi
606else
607 AUDIT_LIBS=
608fi
609AC_SUBST(AUDIT_LIBS)
610
3e214785 611# ------------------------------------------------------------------------------
7f4e0805
LP
612have_libcryptsetup=no
613AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
614if test "x$enable_libcryptsetup" != "xno"; then
8cf3ca80 615 PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup >= 1.6.0 ],
7f4e0805 616 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
7f4e0805 617 if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
591622d7 618 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
7f4e0805
LP
619 fi
620fi
621AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
622
f6a971bc
LP
623# ------------------------------------------------------------------------------
624have_qrencode=no
625AC_ARG_ENABLE(qrencode, AS_HELP_STRING([--disable-qrencode], [disable qrencode support]))
626if test "x$enable_qrencode" != "xno"; then
627 PKG_CHECK_MODULES(QRENCODE, [ libqrencode ],
628 [AC_DEFINE(HAVE_QRENCODE, 1, [Define if qrencode is available]) have_qrencode=yes], have_qrencode=no)
629 if test "x$have_qrencode" = xno -a "x$enable_qrencode" = xyes; then
630 AC_MSG_ERROR([*** qrencode support requested but libraries not found])
631 fi
632fi
633AM_CONDITIONAL(HAVE_QRENCODE, [test "$have_qrencode" = "yes"])
634
7b17a7d7
LP
635# ------------------------------------------------------------------------------
636have_microhttpd=no
637AC_ARG_ENABLE(microhttpd, AS_HELP_STRING([--disable-microhttpd], [disable microhttpd support]))
638if test "x$enable_microhttpd" != "xno"; then
59bb9d9a 639 PKG_CHECK_MODULES(MICROHTTPD, [libmicrohttpd >= 0.9.5],
7b17a7d7
LP
640 [AC_DEFINE(HAVE_MICROHTTPD, 1, [Define if microhttpd is available]) have_microhttpd=yes], have_microhttpd=no)
641 if test "x$have_microhttpd" = xno -a "x$enable_microhttpd" = xyes; then
642 AC_MSG_ERROR([*** microhttpd support requested but libraries not found])
643 fi
644fi
645AM_CONDITIONAL(HAVE_MICROHTTPD, [test "$have_microhttpd" = "yes"])
646
3e214785 647# ------------------------------------------------------------------------------
27669061
MV
648have_binfmt=no
649AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
650if test "x$enable_binfmt" != "xno"; then
be31376e 651 have_binfmt=yes
27669061
MV
652fi
653AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
654
3e214785 655# ------------------------------------------------------------------------------
e5e83e83
LP
656have_vconsole=no
657AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool]))
658if test "x$enable_vconsole" != "xno"; then
be31376e 659 have_vconsole=yes
e5e83e83
LP
660fi
661AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"])
662
3e214785 663# ------------------------------------------------------------------------------
e5e83e83
LP
664have_readahead=no
665AC_ARG_ENABLE(readahead, AS_HELP_STRING([--disable-readahead], [disable readahead tools]))
666if test "x$enable_readahead" != "xno"; then
be31376e 667 have_readahead=yes
e5e83e83
LP
668fi
669AM_CONDITIONAL(ENABLE_READAHEAD, [test "$have_readahead" = "yes"])
670
83fdc450
AK
671# ------------------------------------------------------------------------------
672have_bootchart=no
673AC_ARG_ENABLE(bootchart, AS_HELP_STRING([--disable-bootchart], [disable bootchart tool]))
674if test "x$enable_bootchart" != "xno"; then
675 have_bootchart=yes
676fi
677AM_CONDITIONAL(ENABLE_BOOTCHART, [test "$have_bootchart" = "yes"])
678
3e214785 679# ------------------------------------------------------------------------------
4de85612
LP
680have_quotacheck=no
681AC_ARG_ENABLE(quotacheck, AS_HELP_STRING([--disable-quotacheck], [disable quotacheck tools]))
682if test "x$enable_quotacheck" != "xno"; then
be31376e 683 have_quotacheck=yes
4de85612
LP
684fi
685AM_CONDITIONAL(ENABLE_QUOTACHECK, [test "$have_quotacheck" = "yes"])
686
6351163b
UTL
687# ------------------------------------------------------------------------------
688have_tmpfiles=no
689AC_ARG_ENABLE(tmpfiles, AS_HELP_STRING([--disable-tmpfiles], [disable tmpfiles support]))
690if test "x$enable_tmpfiles" != "xno"; then
691 have_tmpfiles=yes
692fi
693AM_CONDITIONAL(ENABLE_TMPFILES, [test "$have_tmpfiles" = "yes"])
694
3e214785 695# ------------------------------------------------------------------------------
4de85612
LP
696have_randomseed=no
697AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools]))
698if test "x$enable_randomseed" != "xno"; then
be31376e 699 have_randomseed=yes
4de85612
LP
700fi
701AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"])
702
3731acf1
LP
703# ------------------------------------------------------------------------------
704have_backlight=no
705AC_ARG_ENABLE(backlight, AS_HELP_STRING([--disable-backlight], [disable backlight tools]))
706if test "x$enable_backlight" != "xno"; then
707 have_backlight=yes
708fi
709AM_CONDITIONAL(ENABLE_BACKLIGHT, [test "$have_backlight" = "yes"])
710
3990f247
LP
711# ------------------------------------------------------------------------------
712have_rfkill=no
713AC_ARG_ENABLE(rfkill, AS_HELP_STRING([--disable-rfkill], [disable rfkill tools]))
714if test "x$enable_rfkill" != "xno"; then
715 have_rfkill=yes
716fi
717AM_CONDITIONAL(ENABLE_RFKILL, [test "$have_rfkill" = "yes"])
718
3e214785 719# ------------------------------------------------------------------------------
2a018e83
KS
720have_logind=no
721AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon]))
722if test "x$enable_logind" != "xno"; then
be31376e 723 have_logind=yes
2a018e83
KS
724fi
725AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"])
4c80c73c 726AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ])
2a018e83 727
1ee306e1
LP
728# ------------------------------------------------------------------------------
729have_machined=no
730AC_ARG_ENABLE(machined, AS_HELP_STRING([--disable-machined], [disable machine daemon]))
731if test "x$enable_machined" != "xno"; then
732 have_machined=yes
733fi
734AM_CONDITIONAL(ENABLE_MACHINED, [test "$have_machined" = "yes"])
735AS_IF([test "$have_machined" = "yes"], [ AC_DEFINE(HAVE_MACHINED, [1], [Machined support available]) ])
736
3e214785 737# ------------------------------------------------------------------------------
b2e9fb99
MV
738have_hostnamed=no
739AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon]))
740if test "x$enable_hostnamed" != "xno"; then
be31376e 741 have_hostnamed=yes
b2e9fb99
MV
742fi
743AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"])
744
3e214785 745# ------------------------------------------------------------------------------
f47cd184
MV
746have_timedated=no
747AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon]))
748if test "x$enable_timedated" != "xno"; then
be31376e 749 have_timedated=yes
f47cd184
MV
750fi
751AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
752
3e214785 753# ------------------------------------------------------------------------------
4cd1eaa5
MV
754have_localed=no
755AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))
756if test "x$enable_localed" != "xno"; then
be31376e 757 have_localed=yes
4cd1eaa5
MV
758fi
759AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"])
760
3e214785 761# ------------------------------------------------------------------------------
f5e04665
LP
762have_coredump=no
763AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook]))
764if test "x$enable_coredump" != "xno"; then
be31376e 765 have_coredump=yes
f5e04665
LP
766fi
767AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"])
768
46ba8aae
LP
769# ------------------------------------------------------------------------------
770have_polkit=no
771AC_ARG_ENABLE(polkit, AS_HELP_STRING([--disable-polkit], [disable PolicyKit support]))
772if test "x$enable_polkit" != "xno"; then
773 AC_DEFINE(ENABLE_POLKIT, 1, [Define if PolicyKit support is to be enabled])
774 have_polkit=yes
775fi
776AM_CONDITIONAL(ENABLE_POLKIT, [test "x$have_polkit" = "xyes"])
777
3c9317d2
CW
778# ------------------------------------------------------------------------------
779AC_ARG_ENABLE(networkd, AS_HELP_STRING([--disable-networkd], [disable networkd]))
780if test "x$enable_networkd" != "xno"; then
781 AC_DEFINE(ENABLE_NETWORKD, 1, [Define if networkd support is to be enabled])
782 have_networkd=yes
783fi
784AM_CONDITIONAL(ENABLE_NETWORKD, [test "x$have_networkd" = "xyes"])
785
b872e9a0
LP
786# ------------------------------------------------------------------------------
787have_efi=no
788AC_ARG_ENABLE(efi, AS_HELP_STRING([--disable-efi], [disable EFI support]))
789if test "x$enable_efi" != "xno"; then
790 AC_DEFINE(ENABLE_EFI, 1, [Define if EFI support is to be enabled])
791 have_efi=yes
792fi
793AM_CONDITIONAL(ENABLE_EFI, [test "x$have_efi" = "xyes"])
794
bd441fa2
ZJS
795# ------------------------------------------------------------------------------
796have_multi_seat_x=no
797AC_ARG_ENABLE(multi_seat_x, AS_HELP_STRING([--disable-multi-seat-x], [do not build multi-seat-x]))
798if test "x$enable_multi_seat_x" != "xno"; then
799 have_multi_seat_x=yes
800fi
801AM_CONDITIONAL(ENABLE_MULTI_SEAT_X, [test "$have_multi_seat_x" = "yes"])
802
626851be
LP
803# ------------------------------------------------------------------------------
804have_kdbus=no
c97a6dbc 805AC_ARG_ENABLE(kdbus, AS_HELP_STRING([--enable-kdbus], [do connect to kdbus by default]))
626851be
LP
806if test "x$enable_kdbus" == "xyes"; then
807 AC_DEFINE(ENABLE_KDBUS, 1, [Define if kdbus support is to be enabled])
808 have_kdbus=yes
809fi
810AM_CONDITIONAL(ENABLE_KDBUS, [test "$have_kdbus" = "yes"])
811
b1c4ca25
LP
812# ------------------------------------------------------------------------------
813AC_ARG_WITH(rc-local-script-path-start,
814 AS_HELP_STRING([--with-rc-local-script-path-start=PATH],
815 [Path to /etc/rc.local]),
816 [RC_LOCAL_SCRIPT_PATH_START="$withval"],
817 [RC_LOCAL_SCRIPT_PATH_START="/etc/rc.local"])
818
819AC_ARG_WITH(rc-local-script-path-stop,
820 AS_HELP_STRING([--with-rc-local-script-path-stop=PATH],
bc270841 821 [Path to /usr/sbin/halt.local]),
b1c4ca25 822 [RC_LOCAL_SCRIPT_PATH_STOP="$withval"],
bc270841 823 [RC_LOCAL_SCRIPT_PATH_STOP="/usr/sbin/halt.local"])
b1c4ca25
LP
824
825AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_START, ["$RC_LOCAL_SCRIPT_PATH_START"], [Path of /etc/rc.local script])
bc270841 826AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_STOP, ["$RC_LOCAL_SCRIPT_PATH_STOP"], [Path of /usr/sbin/halt.local script])
b1c4ca25
LP
827
828AC_SUBST(RC_LOCAL_SCRIPT_PATH_START)
829AC_SUBST(RC_LOCAL_SCRIPT_PATH_STOP)
830
a382332e
LP
831# ------------------------------------------------------------------------------
832AC_ARG_WITH(kbd-loadkeys,
833 AS_HELP_STRING([--with-kbd-loadkeys=PATH],
834 [Path to loadkeys]),
835 [KBD_LOADKEYS="$withval"],
836 [KBD_LOADKEYS="/usr/bin/loadkeys"])
837
838AC_ARG_WITH(kbd-setfont,
839 AS_HELP_STRING([--with-kbd-setfont=PATH],
840 [Path to setfont]),
841 [KBD_SETFONT="$withval"],
842 [KBD_SETFONT="/usr/bin/setfont"])
843
844AC_DEFINE_UNQUOTED(KBD_LOADKEYS, ["$KBD_LOADKEYS"], [Path of loadkeys])
845AC_DEFINE_UNQUOTED(KBD_SETFONT, ["$KBD_SETFONT"], [Path of setfont])
846
847AC_SUBST(KBD_LOADKEYS)
848AC_SUBST(KBD_SETFONT)
849
4ad61fd1
CR
850AC_ARG_WITH(telinit,
851 AS_HELP_STRING([--with-telinit=PATH],
852 [Path to telinit]),
853 [TELINIT="$withval"],
abaaabf4 854 [TELINIT="/lib/sysvinit/telinit"])
4ad61fd1
CR
855
856AC_DEFINE_UNQUOTED(TELINIT, ["$TELINIT"], [Path to telinit])
857
858AC_SUBST(TELINIT)
859
54b434b1 860AC_CHECK_HEADERS_ONCE([valgrind/memcheck.h valgrind/valgrind.h])
7211f918 861
d562955e
TG
862# ------------------------------------------------------------------------------
863have_myhostname=no
f8c5a581 864AC_ARG_ENABLE(myhostname, AS_HELP_STRING([--disable-myhostname], [disable nss-myhostname support]))
d562955e
TG
865if test "x$enable_myhostname" != "xno"; then
866 AC_HEADER_STDC
a3b6fafe 867 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
868
869 AC_C_CONST
870 AC_TYPE_SIZE_T
871 AC_HEADER_TIME
872
873 AC_FUNC_MALLOC
874 AC_FUNC_SELECT_ARGTYPES
875 AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn])
876
877 have_myhostname=yes
878fi
879AM_CONDITIONAL(HAVE_MYHOSTNAME, [test "$have_myhostname" = "yes"])
880
3e214785
KS
881# ------------------------------------------------------------------------------
882AC_ARG_WITH(firmware-path,
883 AS_HELP_STRING([--with-firmware-path=DIR[[[:DIR[...]]]]],
a3bd8447
TG
884 [Firmware search path (default="")]),
885 [], [with_firmware_path=""])
3e214785
KS
886OLD_IFS=$IFS
887IFS=:
888for i in $with_firmware_path; do
889 if test "x${FIRMWARE_PATH}" = "x"; then
890 FIRMWARE_PATH="\\\"${i}/\\\""
891 else
892 FIRMWARE_PATH="${FIRMWARE_PATH}, \\\"${i}/\\\""
893 fi
894done
895IFS=$OLD_IFS
a3bd8447 896AC_SUBST(FIRMWARE_PATH)
d8d4bee7 897AS_IF([test "x${FIRMWARE_PATH}" != "x"], [ AC_DEFINE(HAVE_FIRMWARE, 1, [Define if FIRMWARE is available]) ])
a3bd8447 898AM_CONDITIONAL(ENABLE_FIRMWARE, [test "x${FIRMWARE_PATH}" != "x"])
3e214785
KS
899
900# ------------------------------------------------------------------------------
901AC_ARG_ENABLE([gudev],
902 AS_HELP_STRING([--disable-gudev], [disable Gobject libudev support @<:@default=enabled@:>@]),
903 [], [enable_gudev=yes])
de1c301e 904AS_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 905AM_CONDITIONAL([ENABLE_GUDEV], [test "x$enable_gudev" = "xyes"])
de1c301e
LP
906AS_IF([test "x$enable_gudev" = "xyes"], [ AC_DEFINE(HAVE_GLIB, 1, [Define if glib is available]) ])
907
3e214785 908# ------------------------------------------------------------------------------
75db9a77 909have_manpages=no
4c2b0e4e 910AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
fe1fed02
ZJS
911AS_IF([test "x$enable_manpages" != xno], [
912 AS_IF([test "x$enable_manpages" = xyes -a "x$XSLTPROC" = x], [
913 AC_MSG_ERROR([*** Manpages requested but xsltproc not found])
914 ])
915 AS_IF([test "x$XSLTPROC" != x], [have_manpages=yes])
916])
917AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
75db9a77 918
3e214785 919# ------------------------------------------------------------------------------
d1ab0ca0 920
34eff652
LP
921# Location of the init scripts as mandated by LSB
922SYSTEM_SYSVINIT_PATH=/etc/init.d
f1dd0c3f 923SYSTEM_SYSVRCND_PATH=/etc/rc.d
f975e971 924M4_DEFINES=
12e84679 925
136337ff 926AC_ARG_WITH([sysvinit-path],
be31376e 927 [AS_HELP_STRING([--with-sysvinit-path=PATH],
bc270841 928 [Specify the path to where the SysV init scripts are located])],
be31376e
KS
929 [SYSTEM_SYSVINIT_PATH="$withval"],
930 [])
136337ff 931
dee4c244
LP
932AC_ARG_WITH([sysvrcnd-path],
933 [AS_HELP_STRING([--with-sysvrcnd-path=PATH],
bc270841 934 [Specify the path to the base directory for the SysV rcN.d directories])],
136337ff
TFH
935 [SYSTEM_SYSVRCND_PATH="$withval"],
936 [])
937
07459bb6
FF
938if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
939 AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.])
940 SYSTEM_SYSV_COMPAT="yes"
f975e971 941 M4_DEFINES="$M4_DEFINES -DHAVE_SYSV_COMPAT"
07459bb6 942elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
dee4c244 943 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
944else
945 SYSTEM_SYSV_COMPAT="no"
946fi
947
bc270841
LP
948AC_SUBST(SYSTEM_SYSVINIT_PATH)
949AC_SUBST(SYSTEM_SYSVRCND_PATH)
950AC_SUBST(M4_DEFINES)
951
952AM_CONDITIONAL(HAVE_SYSV_COMPAT, test "$SYSTEM_SYSV_COMPAT" = "yes")
953
bef2733f 954AC_ARG_WITH([tty-gid],
a05ea46d 955 [AS_HELP_STRING([--with-tty-gid=GID],
bef2733f
LP
956 [Specify the numeric GID of the 'tty' group])],
957 [AC_DEFINE_UNQUOTED(TTY_GID, [$withval], [GID of the 'tty' group])],
958 [])
959
d2d12cd1
LP
960AC_ARG_WITH([dbuspolicydir],
961 AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
962 [],
25ee45f9 963 [with_dbuspolicydir=$($PKG_CONFIG --variable=sysconfdir dbus-1)/dbus-1/system.d])
d122948d 964
d2d12cd1
LP
965AC_ARG_WITH([dbussessionservicedir],
966 AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
967 [],
25ee45f9 968 [with_dbussessionservicedir=$($PKG_CONFIG --variable=session_bus_services_dir dbus-1)])
d122948d 969
d2d12cd1
LP
970AC_ARG_WITH([dbussystemservicedir],
971 AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
972 [],
03c14914 973 [with_dbussystemservicedir=$(readlink -m $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../system-services)])
d122948d 974
d2d12cd1
LP
975AC_ARG_WITH([dbusinterfacedir],
976 AS_HELP_STRING([--with-dbusinterfacedir=DIR], [D-Bus interface directory]),
977 [],
03c14914 978 [with_dbusinterfacedir=$(readlink -m $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../interfaces)])
d122948d 979
db059f1b
MB
980AC_ARG_WITH([bashcompletiondir],
981 AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
982 [],
25ee45f9
MB
983 [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
984 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
db059f1b
MB
985 ] , [
986 with_bashcompletiondir=${datadir}/bash-completion/completions
987 ])])
988
4f87c47b
WG
989AC_ARG_WITH([zshcompletiondir],
990 AS_HELP_STRING([--with-zshcompletiondir=DIR], [Zsh completions directory]),
991 [], [with_zshcompletiondir=${datadir}/zsh/site-functions])
992
b8079ae1
KS
993AC_ARG_WITH([rootprefix],
994 AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
39ad55a9 995 [], [with_rootprefix=${ac_default_prefix}])
d2d12cd1 996
ae446765
KS
997AC_ARG_WITH([rootlibdir],
998 AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
999 [],
1000 [with_rootlibdir=${libdir}])
1001
9d3203b4 1002AC_ARG_WITH([pamlibdir],
b0cca7d8 1003 AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]),
9d3203b4
KS
1004 [],
1005 [with_pamlibdir=${with_rootlibdir}/security])
1006
5c390a4a
ZJS
1007AC_ARG_WITH([pamconfdir],
1008 AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration]),
1009 [],
1010 [with_pamconfdir=${sysconfdir}/pam.d])
1011
bc9bdbba
MG
1012AC_ARG_ENABLE([split-usr],
1013 AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]),
1014 [],
1015 [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [
1016 enable_split_usr=yes
1017 ], [
1018 enable_split_usr=no
1019 ])])
1020
1021AS_IF([test "x${enable_split_usr}" = "xyes"], [
2c6db6fb 1022 AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr])
bc9bdbba 1023])
2c6db6fb 1024
6fc00209
ZJS
1025# Work around intltoolize and gtk-doc problems in VPATH builds
1026AM_CONDITIONAL([ENABLE_GTK_DOC_TESTS], [test "x$0" = "x./configure"],
1027 [Define to do gtk-doc tests])
1028AS_IF([test "x$0" != "x./configure"], [
1029 AC_SUBST([INTLTOOL_UPDATE], [/bin/true])
1030])
1031
cee22bd3
HGB
1032AC_ARG_ENABLE(tests,
1033 [AC_HELP_STRING([--disable-tests], [disable tests])],
1034 enable_tests=$enableval, enable_tests=yes)
1035AM_CONDITIONAL(ENABLE_TESTS, [test x$enable_tests = xyes])
1036
d2d12cd1
LP
1037AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
1038AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
1039AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
1040AC_SUBST([dbusinterfacedir], [$with_dbusinterfacedir])
db059f1b 1041AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
4f87c47b 1042AC_SUBST([zshcompletiondir], [$with_zshcompletiondir])
8c6db833 1043AC_SUBST([pamlibdir], [$with_pamlibdir])
5c390a4a 1044AC_SUBST([pamconfdir], [$with_pamconfdir])
b8079ae1 1045AC_SUBST([rootprefix], [$with_rootprefix])
ae446765 1046AC_SUBST([rootlibdir], [$with_rootlibdir])
8c4a3079 1047
3e214785
KS
1048AC_CONFIG_FILES([
1049 Makefile po/Makefile.in
bb061708
KS
1050 docs/libudev/Makefile
1051 docs/libudev/version.xml
1052 docs/gudev/Makefile
1053 docs/gudev/version.xml
3e214785
KS
1054])
1055
a45a909f 1056AC_OUTPUT
ae446765 1057AC_MSG_RESULT([
0571e011
LP
1058 $PACKAGE_NAME $VERSION
1059
7f4e0805 1060 libcryptsetup: ${have_libcryptsetup}
5b6319dc
LP
1061 tcpwrap: ${have_tcpwrap}
1062 PAM: ${have_pam}
12716238 1063 AUDIT: ${have_audit}
81611586 1064 IMA: ${have_ima}
12716238 1065 SELinux: ${have_selinux}
2b3e18de 1066 SMACK: ${have_smack}
807e17f0 1067 XZ: ${have_xz}
5eda94dd 1068 ACL: ${have_acl}
fb0951b0 1069 XATTR: ${have_xattr}
7560fffc 1070 GCRYPT: ${have_gcrypt}
f6a971bc 1071 QRENCODE: ${have_qrencode}
7b17a7d7 1072 MICROHTTPD: ${have_microhttpd}
77e68fa2 1073 CHKCONFIG: ${have_chkconfig}
27669061 1074 binfmt: ${have_binfmt}
e5e83e83
LP
1075 vconsole: ${have_vconsole}
1076 readahead: ${have_readahead}
83fdc450 1077 bootchart: ${have_bootchart}
4de85612 1078 quotacheck: ${have_quotacheck}
6351163b 1079 tmpfiles: ${have_tmpfiles}
4de85612 1080 randomseed: ${have_randomseed}
3731acf1 1081 backlight: ${have_backlight}
3990f247 1082 rfkill: ${have_rfkill}
2a018e83 1083 logind: ${have_logind}
1ee306e1 1084 machined: ${have_machined}
b2e9fb99 1085 hostnamed: ${have_hostnamed}
f47cd184 1086 timedated: ${have_timedated}
4cd1eaa5 1087 localed: ${have_localed}
f5e04665 1088 coredump: ${have_coredump}
46ba8aae 1089 polkit: ${have_polkit}
b872e9a0 1090 efi: ${have_efi}
e3043162 1091 kmod: ${have_kmod}
f553b3b1 1092 blkid: ${have_blkid}
d562955e 1093 nss-myhostname: ${have_myhostname}
3e214785
KS
1094 gudev: ${enable_gudev}
1095 gintrospection: ${enable_introspection}
bd441fa2 1096 multi-seat-x: ${have_multi_seat_x}
626851be 1097 kdbus: ${have_kdbus}
8d7e170a
LP
1098 Python: ${have_python}
1099 Python Headers: ${have_python_devel}
2f4da3e6
ZJS
1100 man pages: ${have_manpages}
1101 gtk-doc: ${enable_gtk_doc}
6aea6d10 1102 test coverage: ${have_coverage}
2f4da3e6
ZJS
1103 Split /usr: ${enable_split_usr}
1104 SysV compatibility: ${SYSTEM_SYSV_COMPAT}
3e214785 1105
8c4a3079 1106 prefix: ${prefix}
b8079ae1 1107 rootprefix: ${with_rootprefix}
3e214785
KS
1108 sysconf dir: ${sysconfdir}
1109 datarootdir: ${datarootdir}
1110 includedir: ${includedir}
1111 include_prefix: ${INCLUDE_PREFIX}
ae446765
KS
1112 lib dir: ${libdir}
1113 rootlib dir: ${with_rootlibdir}
2f4da3e6
ZJS
1114 SysV init scripts: ${SYSTEM_SYSVINIT_PATH}
1115 SysV rc?.d directories: ${SYSTEM_SYSVRCND_PATH}
1116 Build Python: ${PYTHON}
1117 Installation Python: ${PYTHON_BINARY}
f2ec0646 1118 sphinx binary: ${SPHINX_BUILD}
2f4da3e6 1119 firmware path: ${FIRMWARE_PATH}
2c6db6fb 1120 PAM modules dir: ${with_pamlibdir}
5c390a4a 1121 PAM configuration dir: ${with_pamconfdir}
2c6db6fb
LP
1122 D-Bus policy dir: ${with_dbuspolicydir}
1123 D-Bus session dir: ${with_dbussessionservicedir}
1124 D-Bus system dir: ${with_dbussystemservicedir}
1125 D-Bus interfaces dir: ${with_dbusinterfacedir}
db059f1b 1126 Bash completions dir: ${with_bashcompletiondir}
4f87c47b 1127 Zsh completions dir: ${with_zshcompletiondir}
b1c4ca25
LP
1128 Extra start script: ${RC_LOCAL_SCRIPT_PATH_START}
1129 Extra stop script: ${RC_LOCAL_SCRIPT_PATH_STOP}
45df1f2c 1130 Debug shell: ${SUSHELL} @ ${DEBUGTTY}
66be6554 1131
5a45a936 1132 CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
1f048a6b 1133 CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
5a45a936 1134 LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
a6c0b31d
ZJS
1135 PYTHON_CFLAGS: ${PYTHON_DEVEL_CFLAGS}
1136 PYTHON_LIBS: ${PYTHON_DEVEL_LIBS}
ae446765 1137])