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