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