2 # This file is part of systemd.
4 # Copyright 2010-2012 Lennart Poettering
5 # Copyright 2010-2012 Kay Sievers
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.
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.
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/>.
24 [http://bugs.freedesktop.org/enter_bug.cgi?product=systemd],
26 [http://www.freedesktop.org/wiki/Software/systemd])
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])
33 AC_USE_SYSTEM_EXTENSIONS
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 parallel-tests])
38 AM_SILENT_RULES([yes])
40 AC_DEFINE_UNQUOTED([CANONICAL_HOST], "$host", [Canonical host string.])
42 LT_INIT([disable-static])
44 AS_IF([test "x$enable_static" = "xyes"], [AC_MSG_ERROR([--enable-static is not supported by systemd])])
45 AS_IF([test "x$enable_largefile" = "xno"], [AC_MSG_ERROR([--disable-largefile is not supported by systemd])])
47 SET_ARCH(X86_64, x86_64*)
51 # i18n stuff for the PolicyKit policy files, heck whether intltool can be found, disable NLS otherwise
52 AC_CHECK_PROG(intltool_found, [intltool-merge], [yes], [no])
53 AS_IF([test x"$intltool_found" != xyes],
54 [AS_IF([test x"$enable_nls" = xyes],
55 [AC_MSG_ERROR([--enable-nls requested but intltool not found])],
56 [AS_IF([test x"$enable_nls" != xno],
57 [AC_MSG_WARN([*** Disabling NLS support because intltool was not found])
63 AS_IF([test x"$enable_nls" != xno -o "x$enable_polkit" != xno], [
64 # intltoolize greps for '^(AC|IT)_PROG_INTLTOOL', so it needs to be on its own line
65 IT_PROG_INTLTOOL([0.40.0])
68 AS_IF([test -z "$INTLTOOL_POLICY_RULE"], [
69 # If intltool is not available, provide a dummy rule to fail generation of %.policy files with a meaningful error message
70 INTLTOOL_POLICY_RULE='%.policy: %.policy.in ; @echo " ITMRG " $@ && echo "*** intltool support required to build target $@" && false'
71 AC_SUBST(INTLTOOL_POLICY_RULE)
74 GETTEXT_PACKAGE=systemd
75 AC_SUBST(GETTEXT_PACKAGE)
76 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [systemd])
86 AC_PATH_PROG([M4], [m4])
87 AC_PATH_PROG([XSLTPROC], [xsltproc])
89 AC_PATH_PROG([QUOTAON], [quotaon], [/usr/sbin/quotaon], [$PATH:/usr/sbin:/sbin])
90 AC_PATH_PROG([QUOTACHECK], [quotacheck], [/usr/sbin/quotacheck], [$PATH:/usr/sbin:/sbin])
92 AC_PATH_PROG([SETCAP], [setcap], [/usr/sbin/setcap], [$PATH:/usr/sbin:/sbin])
94 AC_PATH_PROG([KILL], [kill], [/usr/bin/kill], [$PATH:/usr/sbin:/sbin])
96 AC_PATH_PROG([KMOD], [kmod], [/usr/bin/kmod], [$PATH:/usr/sbin:/sbin])
98 AC_PATH_PROG([KEXEC], [kexec], [/usr/sbin/kexec], [$PATH:/usr/sbin:/sbin])
100 AC_PATH_PROG([SULOGIN], [sulogin], [/usr/sbin/sulogin], [$PATH:/usr/sbin:/sbin])
102 AS_IF([! ln --relative --help > /dev/null 2>&1], [AC_MSG_ERROR([*** ln doesn't support --relative ***])])
106 # gtkdocize greps for '^GTK_DOC_CHECK', so it needs to be on its own line
107 m4_ifdef([GTK_DOC_CHECK], [
108 GTK_DOC_CHECK([1.18],[--flavour no-tmpl])],
109 [AM_CONDITIONAL([ENABLE_GTK_DOC], [false])
112 AS_IF([test "x$enable_gtk_doc" = "xyes" -a "x$XSLTPROC" = x], [
113 AC_MSG_ERROR([*** GTK doc requested but xsltproc not found])
116 m4_ifdef([GOBJECT_INTROSPECTION_CHECK], [
117 GOBJECT_INTROSPECTION_CHECK([1.31.1])
119 AM_CONDITIONAL([HAVE_INTROSPECTION], [false])
120 enable_introspection=no])
122 AC_CHECK_TOOL(STRINGS, strings)
123 AC_CHECK_TOOL(GPERF, gperf)
124 if test -z "$GPERF" ; then
125 AC_MSG_ERROR([*** gperf not found])
128 # ------------------------------------------------------------------------------
129 address_sanitizer_cflags=
130 address_sanitizer_cppflags=
131 address_sanitizer_ldflags=
132 AC_ARG_ENABLE(address-sanitizer, AS_HELP_STRING([--enable-address-sanitizer], [enable -fsanitize=address]))
133 AS_IF([test "x$enable_address_sanitizer" = "xyes"], [
134 CC_CHECK_FLAG_APPEND([with_as_cflags], [CFLAGS], [-fsanitize=address])
135 AS_IF([test -z "$with_as_cflags"],
136 [AC_MSG_ERROR([*** -fsanitize=address is not supported])])
137 address_sanitizer_cflags="$with_as_cflags -fno-omit-frame-pointer -DVALGRIND=1"
138 address_sanitizer_cppflags="-DVALGRIND=1"
139 address_sanitizer_ldflags="-Wc,-fsanitize=address"
142 undefined_sanitizer_cflags=
143 undefined_sanitizer_cppflags=
144 undefined_sanitizer_ldflags=
145 AC_ARG_ENABLE(undefined-sanitizer, AS_HELP_STRING([--enable-undefined-sanitizer], [enable -fsanitize=undefined]))
146 AS_IF([test "x$enable_undefined_sanitizer" = "xyes"], [
147 CC_CHECK_FLAG_APPEND([with_us_cflags], [CFLAGS], [-fsanitize=undefined])
148 AS_IF([test -z "$with_us_cflags"],
149 [AC_MSG_ERROR([*** -fsanitize=undefined is not supported])])
150 undefined_sanitizer_cflags="$with_us_cflags -fno-omit-frame-pointer -DVALGRIND=1"
151 undefined_sanitizer_cppflags="-DVALGRIND=1"
152 undefined_sanitizer_ldflags="-Wc,-fsanitize=undefined"
155 sanitizer_cflags="$address_sanitizer_cflags $undefined_sanitizer_cflags"
156 sanitizer_cppflags="$address_sanitizer_cppflags $undefined_sanitizer_cppflags"
157 sanitizer_ldflags="$address_sanitizer_ldflags $undefined_sanitizer_ldflags"
159 CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
165 "-Wformat=2 -Wformat-security -Wformat-nonliteral" \
168 -Wmissing-include-dirs \
169 -Wold-style-definition \
172 -Wdeclaration-after-statement \
174 -Wsuggest-attribute=noreturn \
175 -Wmissing-prototypes \
176 -Wstrict-prototypes \
178 -Wmissing-declarations \
182 -Wstrict-aliasing=2 \
185 -Wno-overlength-strings \
186 -Wno-unused-parameter \
187 -Wno-missing-field-initializers \
194 -fdiagnostics-show-option \
195 -fno-strict-aliasing \
196 -fvisibility=hidden \
197 -ffunction-sections \
200 -fstack-protector-strong \
202 --param=ssp-buffer-size=4])
204 AS_CASE([$CC], [*clang*],
205 [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
206 -Wno-typedef-redefinition \
207 -Wno-gnu-variable-sized-type-not-at-end \
210 AS_CASE([$CFLAGS], [*-O[[12345\ ]]*],
211 [CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
212 -flto -ffat-lto-objects])],
213 [AC_MSG_RESULT([skipping -flto, optimization not enabled])])
214 AC_SUBST([OUR_CFLAGS], "$with_cflags $sanitizer_cflags")
216 AS_CASE([$CFLAGS], [*-O[[12345\ ]]*],
217 [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
218 -Wp,-D_FORTIFY_SOURCE=2])],
219 [AC_MSG_RESULT([skipping -D_FORTIFY_SOURCE, optimization not enabled])])
220 AC_SUBST([OUR_CPPFLAGS], "$with_cppflags $sanitizer_cppflags")
222 CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\
230 AC_SUBST([OUR_LDFLAGS], "$with_ldflags $sanitizer_ldflags")
232 AC_CHECK_SIZEOF(pid_t)
233 AC_CHECK_SIZEOF(uid_t)
234 AC_CHECK_SIZEOF(gid_t)
235 AC_CHECK_SIZEOF(time_t)
236 AC_CHECK_SIZEOF(dev_t)
237 AC_CHECK_SIZEOF(rlim_t,,[
238 #include <sys/time.h>
239 #include <sys/resource.h>
242 # ------------------------------------------------------------------------------
243 # we use python to build the man page index, and for systemd-python
245 AC_ARG_WITH([python],
246 [AS_HELP_STRING([--without-python], [Disable building the man page index and systemd-python (default: test)])])
249 AS_IF([test "x$with_python" != "xno"], [
250 AM_PATH_PYTHON(,, [:])
251 AS_IF([test "x$PYTHON" != "x:"], [
252 AC_MSG_CHECKING([for python lxml module])
253 AS_IF(["$PYTHON" -c 'import lxml' 2>/dev/null], [have_lxml=yes])
254 AC_MSG_RESULT([$have_lxml])
255 AS_IF([test "x$have_lxml" = "xyes"], [have_python=yes],
256 [AC_MSG_WARN([*** python support requires python-lxml module installed])])
259 AS_IF([test "$have_python" != "yes"], [
260 AS_IF([test "$with_python" = "yes"],
261 [AC_MSG_ERROR([*** python support requested but python support not found])])
262 AS_IF([test "$with_python" != "no"],
263 [AC_MSG_WARN([*** python support not found, some documentation cannot be built])])
266 AM_CONDITIONAL([HAVE_PYTHON], [test "x$have_python" = "xyes"])
267 AS_IF([test "x$PYTHON_BINARY" = "x"],
268 [AS_IF([test "x$have_python" = "xyes"],
269 [PYTHON_BINARY="$(which "$PYTHON")"],
270 [PYTHON_BINARY=/usr/bin/python])])
271 AC_ARG_VAR(PYTHON_BINARY, [Python binary used to launch installed scripts])
273 AS_IF([test "x$have_python" != "xyes" -a "x$enable_python_devel" = "xyes"],
274 [AC_MSG_ERROR([*** python-devel support requires --with-python])])
277 AC_ARG_ENABLE(python_devel, AS_HELP_STRING([--disable-python-devel], [Do not build python modules]))
278 AS_IF([test "x$have_python" = "xyes" -a "x$enable_python_devel" != "xno"], [
279 PKG_CHECK_MODULES([PYTHON_DEVEL], [python-${PYTHON_VERSION}],
280 [have_python_devel=yes],
281 [PKG_CHECK_MODULES([PYTHON_DEVEL], [python],
282 [have_python_devel=yes],
283 [have_python_devel=no])])
284 AS_IF([test "x$have_python_devel" = xno -a "x$enable_python_devel" = xyes],
285 [AC_MSG_ERROR([*** python-devel support requested but libraries not found])])
286 AC_PATH_PROGS(SPHINX_BUILD, sphinx-build-${PYTHON_VERSION} sphinx-build)
288 AM_CONDITIONAL([HAVE_PYTHON_DEVEL], [test "$have_python_devel" = "yes"])
290 # ------------------------------------------------------------------------------
292 AC_SEARCH_LIBS([dlsym], [dl], [], [AC_MSG_ERROR([*** Dynamic linking loader library not found])])
293 AC_CHECK_HEADERS([sys/capability.h], [], [AC_MSG_ERROR([*** POSIX caps headers not found])])
294 AC_CHECK_HEADERS([linux/btrfs.h], [], [])
295 AC_CHECK_HEADERS([linux/memfd.h], [], [])
297 # unconditionally pull-in librt with old glibc versions
298 AC_SEARCH_LIBS([clock_gettime], [rt], [], [])
302 AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
307 AC_SEARCH_LIBS([mq_open], [rt], [], [AC_MSG_ERROR([*** POSIX RT library not found])])
312 AC_CHECK_FUNCS([memfd_create])
313 AC_CHECK_FUNCS([__secure_getenv secure_getenv])
314 AC_CHECK_DECLS([gettid, pivot_root, name_to_handle_at, setns, getrandom, renameat2, kcmp, LO_FLAGS_PARTSCAN],
316 #include <sys/types.h>
318 #include <sys/mount.h>
321 #include <linux/loop.h>
322 #include <linux/random.h>
325 AC_CHECK_DECLS([IFLA_INET6_ADDR_GEN_MODE,
333 IFLA_IPTUN_6RD_RELAY_PREFIXLEN,
334 IFLA_BRIDGE_VLAN_INFO,
335 IFLA_BRPORT_UNICAST_FLOOD],
337 #include <inttypes.h>
338 #include <netinet/in.h>
339 #include <netinet/ether.h>
340 #include <linux/rtnetlink.h>
342 #include <linux/ip.h>
343 #include <linux/if_tunnel.h>
344 #include <linux/if_link.h>
345 #include <linux/if_bridge.h>
348 # This makes sure pkg.m4 is available.
349 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
351 # ------------------------------------------------------------------------------
353 AC_ARG_ENABLE(dbus, AS_HELP_STRING([--disable-dbus], [disable usage of dbus-1 in tests]))
354 AS_IF([test "x$enable_dbus" != "xno"], [
355 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.3.2],
356 [AC_DEFINE(HAVE_DBUS, 1, [Define if dbus-1 library is available]) have_dbus=yes],
358 AS_IF([test "x$have_dbus" = "xno" -a "x$enable_dbus" = "xyes"],
359 [AC_MSG_ERROR([*** dbus-1 support requested but libraries not found])])])
360 AM_CONDITIONAL(HAVE_DBUS, [test "$have_dbus" = "yes"])
362 # ------------------------------------------------------------------------------
364 AC_ARG_ENABLE([utmp], AS_HELP_STRING([--disable-utmp], [disable utmp/wtmp log handling]),
365 AS_CASE("x${enableval}",
366 [xyes], [have_utmp=yes],
367 [xno], [have_utmp=no],
368 AC_MSG_ERROR(bad value ${enableval} for --enable-utmp)))
369 AS_IF([test "x$have_utmp" = "xyes"], [AC_DEFINE(HAVE_UTMP, 1, [Define if utmp/wtmp support is enabled])])
370 AM_CONDITIONAL([HAVE_UTMP], [test "x$have_utmp" = "xyes"])
372 # ------------------------------------------------------------------------------
374 AC_ARG_ENABLE([compat_libs], AS_HELP_STRING([--enable-compat-libs],[Enable creation of compatibility libraries]),
375 [case "${enableval}" in
376 yes) have_compat_libs=yes ;;
377 no) have_compat_libs=no ;;
378 *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-libs) ;;
380 [have_compat_libs=no])
381 AM_CONDITIONAL([ENABLE_COMPAT_LIBS], [test "$have_compat_libs" = "yes"])
383 # ------------------------------------------------------------------------------
385 AC_ARG_ENABLE(coverage, AS_HELP_STRING([--enable-coverage], [enable test coverage]))
386 if test "x$enable_coverage" = "xyes" ; then
387 AC_CHECK_PROG(lcov_found, [lcov], [yes], [no])
388 if test "x$lcov_found" = xno ; then
389 AC_MSG_ERROR([*** lcov support requested but the program was not found])
391 lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`"
392 lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`"
393 if test "$lcov_version_major" -eq 1 -a "$lcov_version_minor" -lt 10; then
394 AC_MSG_ERROR([*** lcov version is too old. 1.10 required])
397 CC_CHECK_FLAGS_APPEND([with_coverage_cflags], [CFLAGS], [\
400 AC_SUBST([OUR_CFLAGS], "$with_cflags $with_coverage_cflags")
404 AM_CONDITIONAL(ENABLE_COVERAGE, [test "$have_coverage" = "yes"])
406 # ------------------------------------------------------------------------------
408 AC_ARG_ENABLE(kmod, AS_HELP_STRING([--disable-kmod], [disable loadable modules support]))
409 if test "x$enable_kmod" != "xno"; then
410 PKG_CHECK_EXISTS([ libkmod ], have_kmod=yes, have_kmod=no)
411 if test "x$have_kmod" = "xyes"; then
412 PKG_CHECK_MODULES(KMOD, [ libkmod >= 15 ],
413 [AC_DEFINE(HAVE_KMOD, 1, [Define if kmod is available])],
414 AC_MSG_ERROR([*** kmod version >= 15 not found]))
416 if test "x$have_kmod" = xno -a "x$enable_kmod" = xyes; then
417 AC_MSG_ERROR([*** kmod support requested, but libraries not found])
420 AM_CONDITIONAL(HAVE_KMOD, [test "$have_kmod" = "yes"])
422 # ------------------------------------------------------------------------------
424 AC_ARG_ENABLE(xkbcommon, AS_HELP_STRING([--disable-xkbcommon], [disable xkbcommon keymap support]))
425 if test "x$enable_xkbcommon" != "xno"; then
426 PKG_CHECK_MODULES(XKBCOMMON, [ xkbcommon >= 0.3.0 ],
427 [AC_DEFINE(HAVE_XKBCOMMON, 1, [Define if libxkbcommon is available]) have_xkbcommon=yes], have_xkbcommon=no)
428 if test "x$have_xkbcommon" = xno -a "x$enable_xkbcommon" = xyes; then
429 AC_MSG_ERROR([*** xkbcommon support requested but libraries not found])
432 AM_CONDITIONAL(HAVE_XKBCOMMON, [test "$have_xkbcommon" = "yes"])
434 # ------------------------------------------------------------------------------
436 AC_ARG_ENABLE(blkid, AS_HELP_STRING([--disable-blkid], [disable blkid support]))
437 if test "x$enable_blkid" != "xno"; then
438 PKG_CHECK_MODULES(BLKID, [ blkid >= 2.24 ],
439 [AC_DEFINE(HAVE_BLKID, 1, [Define if blkid is available]) have_blkid=yes], have_blkid=no)
440 if test "x$have_blkid" = xno -a "x$enable_blkid" = xyes; then
441 AC_MSG_ERROR([*** blkid support requested but libraries not found])
444 AM_CONDITIONAL(HAVE_BLKID, [test "$have_blkid" = "yes"])
446 # ------------------------------------------------------------------------------
448 PKG_CHECK_MODULES(MOUNT, [ mount >= 2.20 ],
449 [AC_DEFINE(HAVE_LIBMOUNT, 1, [Define if libmount is available]) have_libmount=yes], have_libmount=no)
450 if test "x$have_libmount" = xno; then
451 AC_MSG_ERROR([*** libmount support required but libraries not found])
453 AM_CONDITIONAL(HAVE_LIBMOUNT, [test "$have_libmount" = "yes"])
455 # ------------------------------------------------------------------------------
457 AC_ARG_ENABLE(seccomp, AS_HELP_STRING([--disable-seccomp], [Disable optional SECCOMP support]))
458 if test "x$enable_seccomp" != "xno"; then
459 PKG_CHECK_MODULES(SECCOMP, [libseccomp >= 1.0.0],
460 [AC_DEFINE(HAVE_SECCOMP, 1, [Define if seccomp is available])
462 M4_DEFINES="$M4_DEFINES -DHAVE_SECCOMP"],
464 if test "x$have_seccomp" = "xno" -a "x$enable_seccomp" = "xyes"; then
465 AC_MSG_ERROR([*** seccomp support requested but libraries not found])
468 AM_CONDITIONAL(HAVE_SECCOMP, [test "$have_seccomp" = "yes"])
470 # ------------------------------------------------------------------------------
472 AC_ARG_ENABLE([ima], AS_HELP_STRING([--disable-ima],[Disable optional IMA support]),
473 [case "${enableval}" in
476 *) AC_MSG_ERROR(bad value ${enableval} for --disable-ima) ;;
480 if test "x${have_ima}" != xno ; then
481 AC_DEFINE(HAVE_IMA, 1, [Define if IMA is available])
484 # ------------------------------------------------------------------------------
486 AC_ARG_ENABLE([chkconfig], AS_HELP_STRING([--disable-chkconfig],[Disable optional chkconfig support]),
487 [case "${enableval}" in
488 yes) have_chkconfig=yes ;;
489 no) have_chkconfig=no ;;
490 *) AC_MSG_ERROR(bad value ${enableval} for --disable-chkconfig) ;;
492 [AC_PATH_PROG(CHKCONFIG, chkconfig)
493 if test -z "$CHKCONFIG"; then
499 if test "x${have_chkconfig}" != xno ; then
500 AC_DEFINE(HAVE_CHKCONFIG, 1, [Define if CHKCONFIG is available])
503 # ------------------------------------------------------------------------------
505 AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
506 if test "x$enable_selinux" != "xno"; then
507 PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9],
508 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available])
510 M4_DEFINES="$M4_DEFINES -DHAVE_SELINUX"],
512 if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
513 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
516 AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
519 AC_ARG_ENABLE(apparmor, AS_HELP_STRING([--disable-apparmor], [Disable optional AppArmor support]))
520 if test "x$enable_apparmor" != "xno"; then
521 PKG_CHECK_MODULES([APPARMOR], [libapparmor],
522 [AC_DEFINE(HAVE_APPARMOR, 1, [Define if AppArmor is available])
524 M4_DEFINES="$M4_DEFINES -DHAVE_APPARMOR"],
526 if test "x$have_apparmor" = xno -a "x$enable_apparmor" = xyes; then
527 AC_MSG_ERROR([*** AppArmor support requested but libraries not found])
530 AM_CONDITIONAL(HAVE_APPARMOR, [test "$have_apparmor" = "yes"])
533 AC_ARG_WITH(debug-shell,
534 AS_HELP_STRING([--with-debug-shell=PATH],
535 [Path to debug shell binary]),
536 [SUSHELL="$withval"],[
537 AS_IF([test "x${have_selinux}" != "xno"], [SUSHELL="/sbin/sushell"] , [SUSHELL="/bin/sh"])])
541 AC_ARG_WITH([debug-tty],
542 AS_HELP_STRING([--with-debug-tty=PATH],
543 [Specify the tty device for debug shell]),
544 [DEBUGTTY="$withval"],
545 [DEBUGTTY=/dev/tty9])
549 AC_ARG_WITH([certificate-root],
550 AS_HELP_STRING([--with-certificate-root=PATH],
551 [Specify the prefix for TLS certificates [/etc/ssl]]),
552 [CERTIFICATEROOT="$withval"],
553 [CERTIFICATEROOT="/etc/ssl"])
555 AC_SUBST(CERTIFICATEROOT)
557 # ------------------------------------------------------------------------------
559 AC_ARG_ENABLE(xz, AS_HELP_STRING([--disable-xz], [Disable optional XZ support]))
560 if test "x$enable_xz" != "xno"; then
561 PKG_CHECK_MODULES(XZ, [ liblzma ],
562 [AC_DEFINE(HAVE_XZ, 1, [Define if XZ is available]) have_xz=yes], have_xz=no)
563 if test "x$have_xz" = xno -a "x$enable_xz" = xyes; then
564 AC_MSG_ERROR([*** XZ support requested but libraries not found])
567 AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"])
569 # ------------------------------------------------------------------------------
571 AC_ARG_ENABLE(zlib, AS_HELP_STRING([--disable-zlib], [Disable optional ZLIB support]))
572 if test "x$enable_zlib" != "xno"; then
573 PKG_CHECK_MODULES(ZLIB, [ zlib ],
574 [AC_DEFINE(HAVE_ZLIB, 1, [Define if ZLIB is available]) have_zlib=yes], have_zlib=no)
575 if test "x$have_zlib" = xno -a "x$enable_zlib" = xyes; then
576 AC_MSG_ERROR([*** ZLIB support requested but libraries not found])
579 AM_CONDITIONAL(HAVE_ZLIB, [test "$have_zlib" = "yes"])
581 # ------------------------------------------------------------------------------
583 AC_ARG_ENABLE(bzip2, AS_HELP_STRING([--enable-bzip2], [Disable optional BZIP2 support]))
584 AS_IF([test "x$enable_bzip2" != "xno"], [
585 AC_CHECK_HEADERS(bzlib.h,
586 [AC_DEFINE(HAVE_BZIP2, 1, [Define in BZIP2 is available])
588 [AS_IF([test "x$have_bzip2" = xyes], [AC_MSG_ERROR([*** BZIP2 support requested but headers not found])])
591 AM_CONDITIONAL(HAVE_BZIP2, [test "$have_bzip2" = "yes"])
593 # ------------------------------------------------------------------------------
595 AC_ARG_ENABLE(lz4, AS_HELP_STRING([--enable-lz4], [Enable optional LZ4 support]))
596 AS_IF([test "x$enable_lz4" = "xyes"], [
597 AC_CHECK_HEADERS(lz4.h,
598 [AC_DEFINE(HAVE_LZ4, 1, [Define in LZ4 is available]) have_lz4=yes],
599 [AC_MSG_ERROR([*** LZ4 support requested but headers not found])])
601 AM_CONDITIONAL(HAVE_LZ4, [test "$have_lz4" = "yes"])
603 AM_CONDITIONAL(HAVE_COMPRESSION, [test "$have_xz" = "yes" -o "$have_lz4" = "yes"])
605 # ------------------------------------------------------------------------------
607 AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
608 [case "${enableval}" in
611 *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
615 if test "x${have_pam}" != xno ; then
617 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
619 [if test "x$have_pam" = xyes ; then
620 AC_MSG_ERROR([*** PAM headers not found.])
627 [if test "x$have_pam" = xyes ; then
628 AC_MSG_ERROR([*** libpam not found.])
631 if test "x$have_pam" = xyes ; then
632 PAM_LIBS="-lpam -lpam_misc"
633 AC_DEFINE(HAVE_PAM, 1, [PAM available])
634 M4_DEFINES="$M4_DEFINES -DHAVE_PAM"
642 AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
644 # ------------------------------------------------------------------------------
646 AS_HELP_STRING([--disable-acl],[Disable optional ACL support]),
647 [case "${enableval}" in
650 *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;;
654 if test "x${have_acl}" != xno ; then
656 [sys/acl.h acl/libacl.h],
658 [if test "x$have_acl" = xyes ; then
659 AC_MSG_ERROR([*** ACL headers not found.])
666 [if test "x$have_acl" = xyes ; then
667 AC_MSG_ERROR([*** libacl not found.])
670 if test "x$have_acl" = xyes ; then
672 AC_DEFINE(HAVE_ACL, 1, [ACL available])
673 M4_DEFINES="$M4_DEFINES -DHAVE_ACL"
681 AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno])
683 # ------------------------------------------------------------------------------
684 AC_ARG_ENABLE([smack], AS_HELP_STRING([--disable-smack],[Disable optional SMACK support]),
685 [case "${enableval}" in
686 yes) have_smack=yes ;;
688 *) AC_MSG_ERROR(bad value ${enableval} for --disable-smack) ;;
692 if test "x${have_smack}" = xauto; then
693 M4_DEFINES="$M4_DEFINES -DHAVE_SMACK"
697 AC_ARG_WITH(smack-run-label,
698 AS_HELP_STRING([--with-smack-run-label=STRING],
699 [run systemd --system with a specific SMACK label]),
700 [AC_DEFINE_UNQUOTED(SMACK_RUN_LABEL, ["$withval"], [Run with a smack label])],
703 if test "x${have_smack}" = xyes ; then
704 AC_DEFINE(HAVE_SMACK, 1, [Define if SMACK is available])
707 AM_CONDITIONAL([HAVE_SMACK], [test "x$have_smack" = "xyes"])
709 # ------------------------------------------------------------------------------
710 AC_ARG_ENABLE([gcrypt],
711 AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]),
712 [case "${enableval}" in
713 yes) have_gcrypt=yes ;;
714 no) have_gcrypt=no ;;
715 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gcrypt) ;;
719 if test "x${have_gcrypt}" != xno ; then
723 [if test "x$have_gcrypt" = xyes ; then
724 AC_MSG_ERROR([*** GCRYPT headers not found.])
727 if test "x$have_gcrypt" = xyes ; then
728 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
729 GCRYPT_CFLAGS="$LIBGCRYPT_CFLAGS"
730 AC_DEFINE(HAVE_GCRYPT, 1, [GCRYPT available])
738 AC_SUBST(GCRYPT_LIBS)
739 AC_SUBST(GCRYPT_CFLAGS)
740 AM_CONDITIONAL([HAVE_GCRYPT], [test "x$have_gcrypt" != xno])
742 # ------------------------------------------------------------------------------
743 AC_ARG_ENABLE([audit],
744 AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]),
745 [case "${enableval}" in
746 yes) have_audit=yes ;;
748 *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;;
752 if test "x${have_audit}" != xno ; then
756 [if test "x$have_audit" = xyes ; then
757 AC_MSG_ERROR([*** AUDIT headers not found.])
764 [if test "x$have_audit" = xyes ; then
765 AC_MSG_ERROR([*** libaudit not found.])
768 if test "x$have_audit" = xyes ; then
770 AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available])
779 # ------------------------------------------------------------------------------
780 AC_ARG_ENABLE([elfutils],
781 AS_HELP_STRING([--disable-elfutils],[Disable optional ELFUTILS support]),
782 [case "${enableval}" in
783 yes) have_elfutils=yes ;;
784 no) have_elfutils=no ;;
785 *) AC_MSG_ERROR(bad value ${enableval} for --disable-elfutils) ;;
787 [have_elfutils=auto])
789 if test "x${have_elfutils}" != xno ; then
791 [elfutils/libdwfl.h],
793 [if test "x$have_elfutils" = xyes ; then
794 AC_MSG_ERROR([*** ELFUTILS headers not found.])
801 [if test "x$have_elfutils" = xyes ; then
802 AC_MSG_ERROR([*** ELFUTILS libs not found.])
807 [dwfl_core_file_attach],
809 [if test "x$have_elfutils" = xyes ; then
810 AC_MSG_ERROR([*** ELFUTILS >= 158 is required.])
813 if test "x$have_elfutils" = xyes ; then
814 ELFUTILS_LIBS="-lelf -ldw"
815 AC_DEFINE(HAVE_ELFUTILS, 1, [ELFUTILS available])
822 AC_SUBST(ELFUTILS_LIBS)
823 AM_CONDITIONAL(HAVE_ELFUTILS, [test "$have_elfutils" = "yes"])
825 # ------------------------------------------------------------------------------
826 have_libcryptsetup=no
827 AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
828 if test "x$enable_libcryptsetup" != "xno"; then
829 PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup >= 1.6.0 ],
830 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
831 if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
832 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
835 AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
837 # ------------------------------------------------------------------------------
839 AC_ARG_ENABLE(qrencode, AS_HELP_STRING([--disable-qrencode], [disable qrencode support]))
840 if test "x$enable_qrencode" != "xno"; then
841 PKG_CHECK_MODULES(QRENCODE, [ libqrencode ],
842 [AC_DEFINE(HAVE_QRENCODE, 1, [Define if qrencode is available]) have_qrencode=yes], have_qrencode=no)
843 if test "x$have_qrencode" = xno -a "x$enable_qrencode" = xyes; then
844 AC_MSG_ERROR([*** qrencode support requested but libraries not found])
847 AM_CONDITIONAL(HAVE_QRENCODE, [test "$have_qrencode" = "yes"])
849 # ------------------------------------------------------------------------------
851 AC_ARG_ENABLE(microhttpd, AS_HELP_STRING([--disable-microhttpd], [disable microhttpd support]))
852 if test "x$enable_microhttpd" != "xno"; then
853 PKG_CHECK_MODULES(MICROHTTPD, [libmicrohttpd >= 0.9.33],
854 [AC_DEFINE(HAVE_MICROHTTPD, 1, [Define if microhttpd is available]) have_microhttpd=yes], have_microhttpd=no)
855 if test "x$have_microhttpd" = xno -a "x$enable_microhttpd" = xyes; then
856 AC_MSG_ERROR([*** microhttpd support requested but libraries not found])
859 AM_CONDITIONAL(HAVE_MICROHTTPD, [test "$have_microhttpd" = "yes"])
861 # ------------------------------------------------------------------------------
863 AC_ARG_ENABLE(gnutls, AS_HELP_STRING([--disable-gnutls], [disable gnutls support]))
864 if test "x$enable_gnutls" != "xno"; then
865 PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.1.4],
866 [AC_DEFINE(HAVE_GNUTLS, 1, [Define if gnutls is available]) have_gnutls=yes], have_gnutls=no)
867 if test "x$have_gnutls" = xno -a "x$enable_gnutls" = xyes; then
868 AC_MSG_ERROR([*** gnutls support requested but libraries not found])
871 AM_CONDITIONAL(HAVE_GNUTLS, [test "$have_gnutls" = "yes"])
873 # ------------------------------------------------------------------------------
875 AC_ARG_ENABLE(libcurl, AS_HELP_STRING([--disable-libcurl], [disable libcurl support]))
876 if test "x$enable_libcurl" != "xno"; then
877 PKG_CHECK_MODULES(LIBCURL, [libcurl],
878 [AC_DEFINE(HAVE_LIBCURL, 1, [Define if libcurl is available]) have_libcurl=yes], have_libcurl=no)
879 if test "x$have_libcurl" = xno -a "x$enable_libcurl" = xyes; then
880 AC_MSG_ERROR([*** libcurl support requested but libraries not found])
883 AM_CONDITIONAL(HAVE_LIBCURL, [test "$have_libcurl" = "yes"])
885 # ------------------------------------------------------------------------------
887 AC_ARG_ENABLE(libidn, AS_HELP_STRING([--disable-libidn], [Disable optional LIBIDN support]))
888 if test "x$enable_libidn" != "xno"; then
889 PKG_CHECK_MODULES(LIBIDN, [libidn],
890 [AC_DEFINE(HAVE_LIBIDN, 1, [Define if libidn is available])
892 M4_DEFINES="$M4_DEFINES -DHAVE_LIBIDN"],
894 if test "x$have_libidn" = "xno" -a "x$enable_libidn" = "xyes"; then
895 AC_MSG_ERROR([*** libidn support requested but libraries not found])
898 AM_CONDITIONAL(HAVE_LIBIDN, [test "$have_libidn" = "yes"])
900 # ------------------------------------------------------------------------------
902 AC_ARG_ENABLE(libiptc, AS_HELP_STRING([--disable-libiptc], [Disable optional LIBIPTC support]))
903 if test "x$enable_libiptc" != "xno"; then
904 PKG_CHECK_MODULES(LIBIPTC, [libiptc],
905 [AC_DEFINE(HAVE_LIBIPTC, 1, [Define if libiptc is available])
907 M4_DEFINES="$M4_DEFINES -DHAVE_LIBIPTC"],
909 if test "x$have_libiptc" = "xno" -a "x$enable_libiptc" = "xyes"; then
910 AC_MSG_ERROR([*** libiptc support requested but libraries not found])
913 AM_CONDITIONAL(HAVE_LIBIPTC, [test "$have_libiptc" = "yes"])
915 # ------------------------------------------------------------------------------
917 AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
918 if test "x$enable_binfmt" != "xno"; then
921 AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
923 # ------------------------------------------------------------------------------
925 AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool]))
926 if test "x$enable_vconsole" != "xno"; then
929 AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"])
931 # ------------------------------------------------------------------------------
933 AC_ARG_ENABLE(bootchart, AS_HELP_STRING([--disable-bootchart], [disable bootchart tool]))
934 if test "x$enable_bootchart" != "xno"; then
937 AM_CONDITIONAL(ENABLE_BOOTCHART, [test "$have_bootchart" = "yes"])
939 # ------------------------------------------------------------------------------
941 AC_ARG_ENABLE(quotacheck, AS_HELP_STRING([--disable-quotacheck], [disable quotacheck tools]))
942 if test "x$enable_quotacheck" != "xno"; then
945 AM_CONDITIONAL(ENABLE_QUOTACHECK, [test "$have_quotacheck" = "yes"])
947 # ------------------------------------------------------------------------------
949 AC_ARG_ENABLE(tmpfiles, AS_HELP_STRING([--disable-tmpfiles], [disable tmpfiles support]))
950 if test "x$enable_tmpfiles" != "xno"; then
953 AM_CONDITIONAL(ENABLE_TMPFILES, [test "$have_tmpfiles" = "yes"])
955 # ------------------------------------------------------------------------------
957 AC_ARG_ENABLE(sysusers, AS_HELP_STRING([--disable-sysusers], [disable sysusers support]))
958 if test "x$enable_sysusers" != "xno"; then
961 AM_CONDITIONAL(ENABLE_SYSUSERS, [test "$have_sysusers" = "yes"])
963 # ------------------------------------------------------------------------------
965 AC_ARG_ENABLE(firstboot, AS_HELP_STRING([--disable-firstboot], [disable firstboot support]))
966 if test "x$enable_firstboot" != "xno"; then
969 AM_CONDITIONAL(ENABLE_FIRSTBOOT, [test "$have_firstboot" = "yes"])
971 # ------------------------------------------------------------------------------
973 AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools]))
974 if test "x$enable_randomseed" != "xno"; then
977 AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"])
979 # ------------------------------------------------------------------------------
981 AC_ARG_ENABLE(backlight, AS_HELP_STRING([--disable-backlight], [disable backlight tools]))
982 if test "x$enable_backlight" != "xno"; then
985 AM_CONDITIONAL(ENABLE_BACKLIGHT, [test "$have_backlight" = "yes"])
987 # ------------------------------------------------------------------------------
989 AC_ARG_ENABLE(rfkill, AS_HELP_STRING([--disable-rfkill], [disable rfkill tools]))
990 if test "x$enable_rfkill" != "xno"; then
993 AM_CONDITIONAL(ENABLE_RFKILL, [test "$have_rfkill" = "yes"])
995 # ------------------------------------------------------------------------------
997 AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon]))
998 if test "x$enable_logind" != "xno"; then
1001 AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"])
1002 AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ])
1004 # ------------------------------------------------------------------------------
1006 AC_ARG_ENABLE(machined, AS_HELP_STRING([--disable-machined], [disable machine daemon]))
1007 if test "x$enable_machined" != "xno"; then
1010 AM_CONDITIONAL(ENABLE_MACHINED, [test "$have_machined" = "yes"])
1011 AS_IF([test "$have_machined" = "yes"], [ AC_DEFINE(HAVE_MACHINED, [1], [Machined support available]) ])
1013 # ------------------------------------------------------------------------------
1015 AC_ARG_ENABLE(importd, AS_HELP_STRING([--disable-importd], [disable import daemon]))
1016 if test "x$enable_importd" != "xno"; then
1019 AM_CONDITIONAL(ENABLE_IMPORTD, [test "$have_importd" = "yes"])
1020 AS_IF([test "$have_importd" = "yes"], [ AC_DEFINE(HAVE_IMPORTD, [1], [Importd support available]) ])
1022 # ------------------------------------------------------------------------------
1024 AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon]))
1025 if test "x$enable_hostnamed" != "xno"; then
1028 AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"])
1030 # ------------------------------------------------------------------------------
1032 AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon]))
1033 if test "x$enable_timedated" != "xno"; then
1036 AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
1038 # ------------------------------------------------------------------------------
1040 AC_ARG_ENABLE(timesyncd, AS_HELP_STRING([--disable-timesyncd], [disable timesync daemon]))
1041 if test "x$enable_timesyncd" != "xno"; then
1043 M4_DEFINES="$M4_DEFINES -DENABLE_TIMESYNCD"
1045 AM_CONDITIONAL(ENABLE_TIMESYNCD, [test "$have_timesyncd" = "yes"])
1047 AC_ARG_WITH(ntp-servers,
1048 AS_HELP_STRING([--with-ntp-servers=NTPSERVERS],
1049 [Space-separated list of default NTP servers]),
1050 [NTP_SERVERS="$withval"],
1051 [NTP_SERVERS="time1.google.com time2.google.com time3.google.com time4.google.com"])
1053 AC_DEFINE_UNQUOTED(NTP_SERVERS, ["$NTP_SERVERS"], [Default NTP Servers])
1054 AC_SUBST(NTP_SERVERS)
1056 AC_ARG_WITH(time-epoch,
1057 AS_HELP_STRING([--with-time-epoch=SECONDS],
1058 [Time epoch for time clients]),
1059 [TIME_EPOCH="$withval"],
1060 [TIME_EPOCH="`stat -c %Y ${srcdir}/NEWS 2>/dev/null || echo 0`"])
1062 AC_DEFINE_UNQUOTED(TIME_EPOCH, [$TIME_EPOCH], [Time Epoch])
1064 # ------------------------------------------------------------------------------
1065 AC_ARG_WITH(system-uid-max,
1066 AS_HELP_STRING([--with-system-uid-max=UID]
1067 [Maximum UID for system users]),
1068 [SYSTEM_UID_MAX="$withval"],
1069 [SYSTEM_UID_MAX="`awk 'BEGIN { uid=999 } /^\s*SYS_UID_MAX\s+/ { uid=$2 } END { print uid }' /etc/login.defs 2>/dev/null || echo 999`"])
1071 AC_DEFINE_UNQUOTED(SYSTEM_UID_MAX, [$SYSTEM_UID_MAX], [Maximum System UID])
1072 AC_SUBST(SYSTEM_UID_MAX)
1074 # ------------------------------------------------------------------------------
1075 AC_ARG_WITH(system-gid-max,
1076 AS_HELP_STRING([--with-system-gid-max=GID]
1077 [Maximum GID for system groups]),
1078 [SYSTEM_GID_MAX="$withval"],
1079 [SYSTEM_GID_MAX="`awk 'BEGIN { gid=999 } /^\s*SYS_GID_MAX\s+/ { gid=$2 } END { print gid }' /etc/login.defs 2>/dev/null || echo 999`"])
1081 AC_DEFINE_UNQUOTED(SYSTEM_GID_MAX, [$SYSTEM_GID_MAX], [Maximum System GID])
1082 AC_SUBST(SYSTEM_GID_MAX)
1084 # ------------------------------------------------------------------------------
1086 AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))
1087 if test "x$enable_localed" != "xno"; then
1090 AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"])
1092 # ------------------------------------------------------------------------------
1094 AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook]))
1095 if test "x$enable_coredump" != "xno"; then
1098 AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"])
1100 # ------------------------------------------------------------------------------
1102 AC_ARG_ENABLE(polkit, AS_HELP_STRING([--disable-polkit], [disable PolicyKit support]))
1103 if test "x$enable_polkit" != "xno"; then
1104 AC_DEFINE(ENABLE_POLKIT, 1, [Define if PolicyKit support is to be enabled])
1107 AM_CONDITIONAL(ENABLE_POLKIT, [test "x$have_polkit" = "xyes"])
1109 # ------------------------------------------------------------------------------
1111 AC_ARG_ENABLE(resolved, AS_HELP_STRING([--disable-resolved], [disable resolve daemon]))
1112 if test "x$enable_resolved" != "xno"; then
1114 M4_DEFINES="$M4_DEFINES -DENABLE_RESOLVED"
1116 AM_CONDITIONAL(ENABLE_RESOLVED, [test "$have_resolved" = "yes"])
1118 AC_ARG_WITH(dns-servers,
1119 AS_HELP_STRING([--with-dns-servers=DNSSERVERS],
1120 [Space-separated list of default DNS servers]),
1121 [DNS_SERVERS="$withval"],
1122 [DNS_SERVERS="8.8.8.8 8.8.4.4 2001:4860:4860::8888 2001:4860:4860::8844"])
1124 AC_DEFINE_UNQUOTED(DNS_SERVERS, ["$DNS_SERVERS"], [Default DNS Servers])
1125 AC_SUBST(DNS_SERVERS)
1127 # ------------------------------------------------------------------------------
1129 AC_ARG_ENABLE(networkd, AS_HELP_STRING([--disable-networkd], [disable networkd]))
1130 AS_IF([test "x$enable_networkd" != "xno"], [
1131 AC_DEFINE(ENABLE_NETWORKD, 1, [Define if networkd support is to be enabled])
1133 M4_DEFINES="$M4_DEFINES -DENABLE_NETWORKD"
1135 AM_CONDITIONAL(ENABLE_NETWORKD, [test "x$have_networkd" = "xyes"])
1137 # ------------------------------------------------------------------------------
1139 AC_ARG_ENABLE(efi, AS_HELP_STRING([--disable-efi], [disable EFI support]))
1140 if test "x$enable_efi" != "xno"; then
1141 AC_DEFINE(ENABLE_EFI, 1, [Define if EFI support is to be enabled])
1144 AM_CONDITIONAL(ENABLE_EFI, [test "x$have_efi" = "xyes"])
1146 # ------------------------------------------------------------------------------
1150 EFI_ARCH=`echo $host | sed "s/\(-\).*$//"`
1152 AM_COND_IF(ARCH_IA32, [
1154 EFI_MACHINE_TYPE_NAME=ia32])
1156 AM_COND_IF(ARCH_X86_64, [
1157 EFI_MACHINE_TYPE_NAME=x64])
1159 AC_SUBST([EFI_ARCH])
1160 AC_SUBST([EFI_MACHINE_TYPE_NAME])
1163 AC_ARG_ENABLE(gnuefi, AS_HELP_STRING([--enable-gnuefi], [Disable optional gnuefi support]))
1164 AS_IF([test "x$enable_gnuefi" != "xno"], [
1165 AC_CHECK_HEADERS(efi/${EFI_ARCH}/efibind.h,
1166 [AC_DEFINE(HAVE_GNUEFI, 1, [Define if gnuefi is available])
1168 [AS_IF([test "x$have_gnuefi" = xyes], [AC_MSG_ERROR([*** gnuefi support requested but headers not found])])
1171 AM_CONDITIONAL(HAVE_GNUEFI, [test "$have_gnuefi" = "yes"])
1173 if test "x$enable_gnuefi" != "xno"; then
1174 efiroot=$(echo $(cd /usr/lib/$(gcc -print-multi-os-directory); pwd))
1176 EFI_LIB_DIR="$efiroot"
1177 AC_ARG_WITH(efi-libdir,
1178 AS_HELP_STRING([--with-efi-libdir=PATH], [Path to efi lib directory]),
1179 [EFI_LIB_DIR="$withval"], [EFI_LIB_DIR="$efiroot"]
1181 AC_SUBST([EFI_LIB_DIR])
1183 AC_ARG_WITH(efi-ldsdir,
1184 AS_HELP_STRING([--with-efi-ldsdir=PATH], [Path to efi lds directory]),
1185 [EFI_LDS_DIR="$withval"],
1187 for EFI_LDS_DIR in "${efiroot}/gnuefi" "${efiroot}"; do
1188 for lds in ${EFI_LDS_DIR}/elf_${EFI_ARCH}_efi.lds; do
1189 test -f ${lds} && break 2
1194 AC_SUBST([EFI_LDS_DIR])
1196 AC_ARG_WITH(efi-includedir,
1197 AS_HELP_STRING([--with-efi-includedir=PATH], [Path to efi include directory]),
1198 [EFI_INC_DIR="$withval"], [EFI_INC_DIR="/usr/include"]
1200 AC_SUBST([EFI_INC_DIR])
1203 # ------------------------------------------------------------------------------
1204 AC_ARG_WITH(unifont,
1205 AS_HELP_STRING([--with-unifont=PATH],
1206 [Path to unifont.hex]),
1207 [UNIFONT="$withval"],
1208 [UNIFONT="/usr/share/unifont/unifont.hex"])
1213 AC_ARG_ENABLE(terminal, AS_HELP_STRING([--enable-terminal], [enable terminal support]))
1214 if test "x$enable_terminal" = "xyes"; then
1215 PKG_CHECK_MODULES([TERMINAL], [ libevdev >= 1.2 xkbcommon >= 0.5 libdrm >= 2.4], [have_terminal=yes])
1216 AC_CHECK_FILE($UNIFONT, [have_unifont=yes])
1217 AS_IF([test "x$have_terminal" != xyes -o "x$have_unifont" != "xyes" -a "x$enable_terminal" = xyes],
1218 [AC_MSG_ERROR([*** terminal support requested but required dependencies not available])],
1219 [test "x$have_terminal" = xyes -a "x$have_unifont" = "xyes"],
1220 [AC_DEFINE(ENABLE_TERMINAL, 1, [Define if terminal support is to be enabled])])
1222 AM_CONDITIONAL(ENABLE_TERMINAL, [test "x$have_terminal" = "xyes" -a "x$have_unifont" = "xyes"])
1224 # ------------------------------------------------------------------------------
1226 AC_ARG_ENABLE(kdbus, AS_HELP_STRING([--enable-kdbus], [do connect to kdbus by default]))
1227 if test "x$enable_kdbus" = "xyes"; then
1228 AC_DEFINE(ENABLE_KDBUS, 1, [Define if kdbus support is to be enabled])
1230 M4_DEFINES="$M4_DEFINES -DENABLE_KDBUS"
1232 AM_CONDITIONAL(ENABLE_KDBUS, [test "$have_kdbus" = "yes"])
1234 # ------------------------------------------------------------------------------
1235 AC_ARG_WITH(rc-local-script-path-start,
1236 AS_HELP_STRING([--with-rc-local-script-path-start=PATH],
1237 [Path to /etc/rc.local]),
1238 [RC_LOCAL_SCRIPT_PATH_START="$withval"],
1239 [RC_LOCAL_SCRIPT_PATH_START="/etc/rc.local"])
1241 AC_ARG_WITH(rc-local-script-path-stop,
1242 AS_HELP_STRING([--with-rc-local-script-path-stop=PATH],
1243 [Path to /usr/sbin/halt.local]),
1244 [RC_LOCAL_SCRIPT_PATH_STOP="$withval"],
1245 [RC_LOCAL_SCRIPT_PATH_STOP="/usr/sbin/halt.local"])
1247 AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_START, ["$RC_LOCAL_SCRIPT_PATH_START"], [Path of /etc/rc.local script])
1248 AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_STOP, ["$RC_LOCAL_SCRIPT_PATH_STOP"], [Path of /usr/sbin/halt.local script])
1250 AC_SUBST(RC_LOCAL_SCRIPT_PATH_START)
1251 AC_SUBST(RC_LOCAL_SCRIPT_PATH_STOP)
1253 # ------------------------------------------------------------------------------
1254 AC_ARG_WITH(kbd-loadkeys,
1255 AS_HELP_STRING([--with-kbd-loadkeys=PATH],
1256 [Path to loadkeys]),
1257 [KBD_LOADKEYS="$withval"],
1258 [KBD_LOADKEYS="/usr/bin/loadkeys"])
1260 AC_ARG_WITH(kbd-setfont,
1261 AS_HELP_STRING([--with-kbd-setfont=PATH],
1263 [KBD_SETFONT="$withval"],
1264 [KBD_SETFONT="/usr/bin/setfont"])
1266 AC_DEFINE_UNQUOTED(KBD_LOADKEYS, ["$KBD_LOADKEYS"], [Path of loadkeys])
1267 AC_DEFINE_UNQUOTED(KBD_SETFONT, ["$KBD_SETFONT"], [Path of setfont])
1269 AC_SUBST(KBD_LOADKEYS)
1270 AC_SUBST(KBD_SETFONT)
1272 AC_ARG_WITH(telinit,
1273 AS_HELP_STRING([--with-telinit=PATH],
1275 [TELINIT="$withval"],
1276 [TELINIT="/lib/sysvinit/telinit"])
1278 AC_DEFINE_UNQUOTED(TELINIT, ["$TELINIT"], [Path to telinit])
1282 AC_CHECK_HEADERS_ONCE([valgrind/memcheck.h valgrind/valgrind.h])
1284 # ------------------------------------------------------------------------------
1286 AC_ARG_ENABLE(myhostname, AS_HELP_STRING([--disable-myhostname], [disable nss-myhostname support]))
1287 if test "x$enable_myhostname" != "xno"; then
1289 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])
1296 AC_FUNC_SELECT_ARGTYPES
1297 AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn])
1301 AM_CONDITIONAL(HAVE_MYHOSTNAME, [test "$have_myhostname" = "yes"])
1303 # ------------------------------------------------------------------------------
1304 AC_ARG_ENABLE([gudev],
1305 AS_HELP_STRING([--disable-gudev], [disable Gobject libudev support @<:@default=enabled@:>@]),
1306 [], [enable_gudev=yes])
1307 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]) ])
1308 AM_CONDITIONAL([ENABLE_GUDEV], [test "x$enable_gudev" = "xyes"])
1309 AS_IF([test "x$enable_gudev" = "xyes"], [ AC_DEFINE(HAVE_GLIB, 1, [Define if glib is available]) ])
1311 # ------------------------------------------------------------------------------
1312 AC_ARG_ENABLE(hwdb, [AC_HELP_STRING([--disable-hwdb], [disable hardware database support])],
1313 enable_hwdb=$enableval, enable_hwdb=yes)
1314 AM_CONDITIONAL(ENABLE_HWDB, [test x$enable_hwdb = xyes])
1316 # ------------------------------------------------------------------------------
1318 AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
1319 AS_IF([test "x$enable_manpages" != xno], [have_manpages=yes])
1320 AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
1322 # ------------------------------------------------------------------------------
1323 AC_ARG_ENABLE(hibernate,
1324 [AC_HELP_STRING([--disable-hibernate], [disable hibernation support])],
1325 enable_hibernate=$enableval, enable_hibernate=yes)
1326 AM_CONDITIONAL(ENABLE_HIBERNATE, [test x$enable_hibernate = xyes])
1328 # ------------------------------------------------------------------------------
1329 AC_ARG_ENABLE(ldconfig,
1330 [AC_HELP_STRING([--disable-ldconfig], [disable ldconfig])],
1331 enable_ldconfig=$enableval, enable_ldconfig=yes)
1332 AM_CONDITIONAL(ENABLE_LDCONFIG, [test x$enable_ldconfig = xyes])
1334 # ------------------------------------------------------------------------------
1335 # Location of the init scripts as mandated by LSB
1336 SYSTEM_SYSVINIT_PATH=/etc/init.d
1337 SYSTEM_SYSVRCND_PATH=/etc/rc.d
1339 AC_ARG_WITH([sysvinit-path],
1340 [AS_HELP_STRING([--with-sysvinit-path=PATH],
1341 [Specify the path to where the SysV init scripts are located])],
1342 [SYSTEM_SYSVINIT_PATH="$withval"],
1345 AC_ARG_WITH([sysvrcnd-path],
1346 [AS_HELP_STRING([--with-sysvrcnd-path=PATH],
1347 [Specify the path to the base directory for the SysV rcN.d directories])],
1348 [SYSTEM_SYSVRCND_PATH="$withval"],
1351 if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
1352 AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.])
1353 SYSTEM_SYSV_COMPAT="yes"
1354 M4_DEFINES="$M4_DEFINES -DHAVE_SYSV_COMPAT"
1355 elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
1356 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.])
1358 SYSTEM_SYSV_COMPAT="no"
1361 AC_SUBST(SYSTEM_SYSVINIT_PATH)
1362 AC_SUBST(SYSTEM_SYSVRCND_PATH)
1363 AC_SUBST(M4_DEFINES)
1365 AM_CONDITIONAL(HAVE_SYSV_COMPAT, test "$SYSTEM_SYSV_COMPAT" = "yes")
1367 AC_ARG_WITH([tty-gid],
1368 [AS_HELP_STRING([--with-tty-gid=GID],
1369 [Specify the numeric GID of the 'tty' group])],
1370 [TTY_GID="$withval"],
1373 AC_DEFINE_UNQUOTED(TTY_GID, [$TTY_GID], [GID of the 'tty' group])
1376 AC_ARG_WITH([dbuspolicydir],
1377 AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
1379 [with_dbuspolicydir=${sysconfdir}/dbus-1/system.d])
1381 AC_ARG_WITH([dbussessionservicedir],
1382 AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
1384 [with_dbussessionservicedir=${datadir}/dbus-1/services])
1386 AC_ARG_WITH([dbussystemservicedir],
1387 AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
1389 [with_dbussystemservicedir=${datadir}/dbus-1/system-services])
1391 AC_ARG_WITH([bashcompletiondir],
1392 AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
1394 [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
1395 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
1397 with_bashcompletiondir=${datadir}/bash-completion/completions
1400 AC_ARG_WITH([zshcompletiondir],
1401 AS_HELP_STRING([--with-zshcompletiondir=DIR], [Zsh completions directory]),
1402 [], [with_zshcompletiondir=${datadir}/zsh/site-functions])
1404 AC_ARG_WITH([rootprefix],
1405 AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
1406 [], [with_rootprefix=${ac_default_prefix}])
1408 AC_ARG_WITH([rootlibdir],
1409 AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
1411 [with_rootlibdir=${libdir}])
1413 AC_ARG_WITH([pamlibdir],
1414 AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]),
1416 [with_pamlibdir=${with_rootlibdir}/security])
1418 AC_ARG_WITH([pamconfdir],
1419 AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration]),
1421 [with_pamconfdir=${sysconfdir}/pam.d])
1423 AC_ARG_ENABLE([split-usr],
1424 AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]),
1426 [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [
1427 enable_split_usr=yes
1432 AC_ARG_WITH([dkr-index-url],
1433 [AS_HELP_STRING([--dkr-index-url=URL], [Specify the default index URL to use for image downloads])],
1434 [DEFAULT_DKR_INDEX_URL="\"$withval\""],
1435 [DEFAULT_DKR_INDEX_URL="NULL"])
1437 AC_DEFINE_UNQUOTED(DEFAULT_DKR_INDEX_URL, [$DEFAULT_DKR_INDEX_URL], [Default index URL to use for image downloads])
1438 AC_SUBST(DEFAULT_DKR_INDEX_URL)
1440 AS_IF([test "x${enable_split_usr}" = "xyes"], [
1441 AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr])
1444 # Work around intltoolize and gtk-doc problems in VPATH builds
1445 AM_CONDITIONAL([ENABLE_GTK_DOC_TESTS], [test "x$0" = "x./configure"],
1446 [Define to do gtk-doc tests])
1447 AS_IF([test "x$0" != "x./configure"], [
1448 AC_SUBST([INTLTOOL_UPDATE], [/bin/true])
1451 # QEMU and OVMF UEFI firmware
1452 AS_IF([test x"$cross_compiling" = "xyes"], [], [
1453 AC_PATH_PROG([QEMU], [qemu-system-x86_64])
1454 AC_CHECK_FILE([/usr/share/qemu/bios-ovmf.bin], [QEMU_BIOS=/usr/share/qemu/bios-ovmf.bin])
1455 AC_CHECK_FILE([/usr/share/qemu-ovmf/bios.bin], [QEMU_BIOS=/usr/share/qemu-ovmf/bios.bin])
1456 AC_SUBST([QEMU_BIOS])
1459 AC_ARG_ENABLE(tests,
1460 [AC_HELP_STRING([--disable-tests], [disable tests])],
1461 enable_tests=$enableval, enable_tests=yes)
1462 AM_CONDITIONAL(ENABLE_TESTS, [test x$enable_tests = xyes])
1464 AC_ARG_ENABLE(debug,
1465 [AC_HELP_STRING([--enable-debug@<:@=LIST@:>@], [enable extra debugging (hashmap,mmap-cache)])],
1466 [if test "x$enableval" = "xyes"; then
1467 enableval="hashmap,mmap-cache"
1470 IFS="$IFS$PATH_SEPARATOR,"
1471 for name in $enableval; do
1474 enable_debug_hashmap=yes
1477 enable_debug_mmap_cache=yes
1481 IFS="$saved_ifs"],[])
1484 AS_IF([test x$enable_debug_hashmap = xyes], [
1485 AC_DEFINE(ENABLE_DEBUG_HASHMAP, 1, [Define if hashmap debugging is to be enabled])
1486 enable_debug="hashmap $enable_debug"
1488 AS_IF([test x$enable_debug_mmap_cache = xyes], [
1489 AC_DEFINE(ENABLE_DEBUG_MMAP_CACHE, 1, [Define if mmap cache debugging is to be enabled])
1490 enable_debug="mmap-cache $enable_debug"
1492 test -z "$enable_debug" && enable_debug="none"
1494 AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
1495 AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
1496 AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
1497 AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
1498 AC_SUBST([zshcompletiondir], [$with_zshcompletiondir])
1499 AC_SUBST([pamlibdir], [$with_pamlibdir])
1500 AC_SUBST([pamconfdir], [$with_pamconfdir])
1501 AC_SUBST([rootprefix], [$with_rootprefix])
1502 AC_SUBST([rootlibdir], [$with_rootlibdir])
1505 Makefile po/Makefile.in
1506 docs/libudev/Makefile
1507 docs/libudev/version.xml
1509 docs/gudev/version.xml
1514 $PACKAGE_NAME $VERSION
1516 libcryptsetup: ${have_libcryptsetup}
1518 AUDIT: ${have_audit}
1520 AppArmor: ${have_apparmor}
1521 SELinux: ${have_selinux}
1522 SECCOMP: ${have_seccomp}
1523 SMACK: ${have_smack}
1527 BZIP2: ${have_bzip2}
1529 GCRYPT: ${have_gcrypt}
1530 QRENCODE: ${have_qrencode}
1531 MICROHTTPD: ${have_microhttpd}
1532 CHKCONFIG: ${have_chkconfig}
1533 GNUTLS: ${have_gnutls}
1534 libcurl: ${have_libcurl}
1535 libidn: ${have_libidn}
1536 libiptc: ${have_libiptc}
1537 ELFUTILS: ${have_elfutils}
1538 binfmt: ${have_binfmt}
1539 vconsole: ${have_vconsole}
1540 bootchart: ${have_bootchart}
1541 quotacheck: ${have_quotacheck}
1542 tmpfiles: ${have_tmpfiles}
1543 sysusers: ${have_sysusers}
1544 firstboot: ${have_firstboot}
1545 randomseed: ${have_randomseed}
1546 backlight: ${have_backlight}
1547 rfkill: ${have_rfkill}
1548 logind: ${have_logind}
1549 machined: ${have_machined}
1550 importd: ${have_importd}
1551 hostnamed: ${have_hostnamed}
1552 timedated: ${have_timedated}
1553 timesyncd: ${have_timesyncd}
1554 default NTP servers: ${NTP_SERVERS}
1555 time epoch: ${TIME_EPOCH}
1556 localed: ${have_localed}
1557 networkd: ${have_networkd}
1558 resolved: ${have_resolved}
1559 default DNS servers: ${DNS_SERVERS}
1560 coredump: ${have_coredump}
1561 polkit: ${have_polkit}
1563 gnuefi: ${have_gnuefi}
1564 efi arch: ${EFI_ARCH}
1565 EFI machine type: ${EFI_MACHINE_TYPE_NAME}
1567 EFI libdir: ${EFI_LIB_DIR}
1568 EFI ldsdir: ${EFI_LDS_DIR}
1569 EFI includedir: ${EFI_INC_DIR}
1571 xkbcommon: ${have_xkbcommon}
1572 blkid: ${have_blkid}
1573 libmount: ${have_libmount}
1575 nss-myhostname: ${have_myhostname}
1576 gudev: ${enable_gudev}
1577 hwdb: ${enable_hwdb}
1578 gintrospection: ${enable_introspection}
1579 terminal: ${have_terminal}
1580 kdbus: ${have_kdbus}
1581 Python: ${have_python}
1582 Python Headers: ${have_python_devel}
1583 man pages: ${have_manpages}
1584 gtk-doc: ${enable_gtk_doc}
1585 test coverage: ${have_coverage}
1586 Split /usr: ${enable_split_usr}
1587 SysV compatibility: ${SYSTEM_SYSV_COMPAT}
1588 compatibility libraries: ${have_compat_libs}
1589 utmp/wtmp support: ${have_utmp}
1590 ldconfig support: ${enable_ldconfig}
1591 hibernate support: ${enable_hibernate}
1592 extra debugging: ${enable_debug}
1595 rootprefix: ${with_rootprefix}
1596 sysconf dir: ${sysconfdir}
1597 datarootdir: ${datarootdir}
1598 includedir: ${includedir}
1599 include_prefix: ${INCLUDE_PREFIX}
1601 rootlib dir: ${with_rootlibdir}
1602 SysV init scripts: ${SYSTEM_SYSVINIT_PATH}
1603 SysV rc?.d directories: ${SYSTEM_SYSVRCND_PATH}
1604 Build Python: ${PYTHON}
1605 Installation Python: ${PYTHON_BINARY}
1606 sphinx binary: ${SPHINX_BUILD}
1607 PAM modules dir: ${with_pamlibdir}
1608 PAM configuration dir: ${with_pamconfdir}
1609 D-Bus policy dir: ${with_dbuspolicydir}
1610 D-Bus session dir: ${with_dbussessionservicedir}
1611 D-Bus system dir: ${with_dbussystemservicedir}
1612 Bash completions dir: ${with_bashcompletiondir}
1613 Zsh completions dir: ${with_zshcompletiondir}
1614 Extra start script: ${RC_LOCAL_SCRIPT_PATH_START}
1615 Extra stop script: ${RC_LOCAL_SCRIPT_PATH_STOP}
1616 Debug shell: ${SUSHELL} @ ${DEBUGTTY}
1618 Maximum System UID: ${SYSTEM_UID_MAX}
1619 Maximum System GID: ${SYSTEM_GID_MAX}
1620 Certificate root: ${CERTIFICATEROOT}
1621 Default dkr Index ${DEFAULT_DKR_INDEX_URL}
1623 CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
1624 CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
1625 LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
1626 PYTHON_CFLAGS: ${PYTHON_DEVEL_CFLAGS}
1627 PYTHON_LIBS: ${PYTHON_DEVEL_LIBS}