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