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