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