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