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