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