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