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