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