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