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