chiark / gitweb /
resolved: support for TCP DNS queries
[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         [215],
24         [http://bugs.freedesktop.org/enter_bug.cgi?product=systemd],
25         [systemd],
26         [http://www.freedesktop.org/wiki/Software/systemd])
27
28 AC_CONFIG_SRCDIR([src/core/main.c])
29 AC_CONFIG_MACRO_DIR([m4])
30 AC_CONFIG_HEADERS([config.h])
31 AC_CONFIG_AUX_DIR([build-aux])
32
33 AC_USE_SYSTEM_EXTENSIONS
34 AC_SYS_LARGEFILE
35 AC_PREFIX_DEFAULT([/usr])
36 AM_MAINTAINER_MODE([enable])
37 AM_INIT_AUTOMAKE([foreign 1.11 -Wall -Wno-portability silent-rules tar-pax no-dist-gzip dist-xz subdir-objects])
38 AM_SILENT_RULES([yes])
39 AC_CANONICAL_HOST
40 AC_DEFINE_UNQUOTED([CANONICAL_HOST], "$host", [Canonical host string.])
41 AS_IF([test "x$host_cpu" = "xmips" || test "x$host_cpu" = "xmipsel" ||
42        test "x$host_cpu" = "xmips64" || test "x$host_cpu" = "xmips64el"],
43       [AC_DEFINE(ARCH_MIPS, [], [Whether on mips arch])])
44
45 LT_PREREQ(2.2)
46 LT_INIT([disable-static])
47
48 AS_IF([test "x$enable_static" = "xyes"], [AC_MSG_ERROR([--enable-static is not supported by systemd])])
49 AS_IF([test "x$enable_largefile" = "xno"], [AC_MSG_ERROR([--disable-largefile is not supported by systemd])])
50
51 # i18n stuff for the PolicyKit policy files
52
53 # Check whether intltool can be found, disable NLS otherwise
54 AC_CHECK_PROG(intltool_found, [intltool-merge], [yes], [no])
55 AS_IF([test x"$intltool_found" != xyes],
56       [AS_IF([test x"$enable_nls" = xyes],
57              [AC_MSG_ERROR([--enable-nls requested but intltool not found])],
58              [AS_IF([test x"$enable_nls" != xno],
59                     [AC_MSG_WARN([*** Disabling NLS support because intltool was not found])
60                      enable_nls=no])
61              ])
62       ])
63
64 AM_NLS
65 AS_IF([test x"$enable_nls" != xno], [
66     # intltoolize greps for '^(AC|IT)_PROG_INTLTOOL', so it needs to be on its own line
67 IT_PROG_INTLTOOL([0.40.0])
68 ])
69
70 AS_IF([test -z "$INTLTOOL_POLICY_RULE"], [
71     # If intltool is not available, provide a dummy rule to fail generation of %.policy files with a meaningful error message
72     INTLTOOL_POLICY_RULE='%.policy: %.policy.in ; @echo "  ITMRG   " $@ && echo "*** intltool support required to build target $@" && false'
73     AC_SUBST(INTLTOOL_POLICY_RULE)
74 ])
75
76 GETTEXT_PACKAGE=systemd
77 AC_SUBST(GETTEXT_PACKAGE)
78
79 AC_PROG_MKDIR_P
80 AC_PROG_LN_S
81 AC_PROG_SED
82 AC_PROG_GREP
83 AC_PROG_AWK
84
85 AC_PROG_CC_C99
86
87 AC_PATH_PROG([M4], [m4])
88 AC_PATH_PROG([XSLTPROC], [xsltproc])
89
90 AC_PATH_PROG([QUOTAON], [quotaon], [/usr/sbin/quotaon], [$PATH:/usr/sbin:/sbin])
91 AC_PATH_PROG([QUOTACHECK], [quotacheck], [/usr/sbin/quotacheck], [$PATH:/usr/sbin:/sbin])
92
93 AC_PATH_PROG([KILL], [kill], [/usr/bin/kill], [$PATH:/usr/sbin:/sbin])
94
95 AC_PATH_PROG([KMOD], [kmod], [/usr/bin/kmod], [$PATH:/usr/sbin:/sbin])
96
97 AC_PATH_PROG([KEXEC], [kexec], [/usr/sbin/kexec], [$PATH:/usr/sbin:/sbin])
98
99 AS_IF([! ln --relative --help > /dev/null 2>&1], [AC_MSG_ERROR([*** ln doesn't support --relative ***])])
100
101 M4_DEFINES=
102
103 # gtkdocize greps for '^GTK_DOC_CHECK', so it needs to be on its own line
104 m4_ifdef([GTK_DOC_CHECK], [
105 GTK_DOC_CHECK([1.18],[--flavour no-tmpl])],
106          [AM_CONDITIONAL([ENABLE_GTK_DOC], [false])
107           enable_gtk_doc=no])
108
109 AS_IF([test "x$enable_gtk_doc" = "xyes" -a "x$XSLTPROC" = x], [
110         AC_MSG_ERROR([*** GTK doc requested but xsltproc not found])
111 ])
112
113 m4_ifdef([GOBJECT_INTROSPECTION_CHECK], [
114 GOBJECT_INTROSPECTION_CHECK([1.31.1])
115 ], [
116    AM_CONDITIONAL([HAVE_INTROSPECTION], [false])
117    enable_introspection=no])
118
119 AC_CHECK_TOOL(STRINGS, strings)
120 AC_CHECK_TOOL(GPERF, gperf)
121 if test -z "$GPERF" ; then
122         AC_MSG_ERROR([*** gperf not found])
123 fi
124
125 # ------------------------------------------------------------------------------
126 address_sanitizer_cflags=
127 address_sanitizer_cppflags=
128 address_sanitizer_ldflags=
129 AC_ARG_ENABLE(address-sanitizer, AS_HELP_STRING([--enable-address-sanitizer], [enable -fsanitize=address]))
130 AS_IF([test "x$enable_address_sanitizer" = "xyes"], [
131             CC_CHECK_FLAG_APPEND([with_as_cflags], [CFLAGS], [-fsanitize=address])
132             AS_IF([test -z "$with_as_cflags"],
133                   [AC_MSG_ERROR([*** -fsanitize=address is not supported])])
134             address_sanitizer_cflags="$with_as_cflags -fno-omit-frame-pointer -DVALGRIND=1"
135             address_sanitizer_cppflags="-DVALGRIND=1"
136             address_sanitizer_ldflags="-Wc,-fsanitize=address"
137       ])
138
139 undefined_sanitizer_cflags=
140 undefined_sanitizer_cppflags=
141 undefined_sanitizer_ldflags=
142 AC_ARG_ENABLE(undefined-sanitizer, AS_HELP_STRING([--enable-undefined-sanitizer], [enable -fsanitize=undefined]))
143 AS_IF([test "x$enable_undefined_sanitizer" = "xyes"], [
144             CC_CHECK_FLAG_APPEND([with_us_cflags], [CFLAGS], [-fsanitize=undefined])
145             AS_IF([test -z "$with_us_cflags"],
146                   [AC_MSG_ERROR([*** -fsanitize=undefined is not supported])])
147             undefined_sanitizer_cflags="$with_us_cflags -fno-omit-frame-pointer -DVALGRIND=1"
148             undefined_sanitizer_cppflags="-DVALGRIND=1"
149             undefined_sanitizer_ldflags="-Wc,-fsanitize=undefined"
150       ])
151
152 sanitizer_cflags="$address_sanitizer_cflags $undefined_sanitizer_cflags"
153 sanitizer_cppflags="$address_sanitizer_cppflags $undefined_sanitizer_cppflags"
154 sanitizer_ldflags="$address_sanitizer_ldflags $undefined_sanitizer_ldflags"
155
156 CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
157         -pipe \
158         -Wall \
159         -Wextra \
160         -Wno-inline \
161         -Wundef \
162         "-Wformat=2 -Wformat-security -Wformat-nonliteral" \
163         -Wlogical-op \
164         -Wsign-compare \
165         -Wmissing-include-dirs \
166         -Wold-style-definition \
167         -Wpointer-arith \
168         -Winit-self \
169         -Wdeclaration-after-statement \
170         -Wfloat-equal \
171         -Wsuggest-attribute=noreturn \
172         -Wmissing-prototypes \
173         -Wstrict-prototypes \
174         -Wredundant-decls \
175         -Wmissing-declarations \
176         -Wmissing-noreturn \
177         -Wshadow \
178         -Wendif-labels \
179         -Wstrict-aliasing=2 \
180         -Wwrite-strings \
181         -Wno-long-long \
182         -Wno-overlength-strings \
183         -Wno-unused-parameter \
184         -Wno-missing-field-initializers \
185         -Wno-unused-result \
186         -Werror=overflow \
187         -Wdate-time \
188         -Wnested-externs \
189         -ffast-math \
190         -fno-common \
191         -fdiagnostics-show-option \
192         -fdiagnostics-color \
193         -fno-strict-aliasing \
194         -fvisibility=hidden \
195         -ffunction-sections \
196         -fdata-sections \
197         -fstack-protector \
198         -fstack-protector-strong \
199         -fPIE \
200         --param=ssp-buffer-size=4])
201 AS_CASE([$CFLAGS], [*-O[[12345\ ]]*],
202         [CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
203                -flto -ffat-lto-objects])],
204         [AC_MSG_RESULT([skipping -flto, optimization not enabled])])
205 AC_SUBST([OUR_CFLAGS], "$with_cflags $sanitizer_cflags")
206
207 AS_CASE([$CFLAGS], [*-O[[12345\ ]]*],
208         [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
209                -Wp,-D_FORTIFY_SOURCE=2])],
210         [AC_MSG_RESULT([skipping -D_FORTIFY_SOURCE, optimization not enabled])])
211 AC_SUBST([OUR_CPPFLAGS], "$with_cppflags $sanitizer_cppflags")
212
213 CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\
214         -Wl,--as-needed \
215         -Wl,--no-undefined \
216         -Wl,--gc-sections \
217         -Wl,-z,relro \
218         -Wl,-z,now \
219         -pie \
220         -Wl,-fuse-ld=gold])
221 AC_SUBST([OUR_LDFLAGS], "$with_ldflags $sanitizer_ldflags")
222
223 AC_CHECK_SIZEOF(pid_t)
224 AC_CHECK_SIZEOF(uid_t)
225 AC_CHECK_SIZEOF(gid_t)
226 AC_CHECK_SIZEOF(time_t)
227 AC_CHECK_SIZEOF(rlim_t,,[
228        #include <sys/time.h>
229        #include <sys/resource.h>
230 ])
231
232 # ------------------------------------------------------------------------------
233 # we use python to build the man page index, and for systemd-python
234 have_python=no
235 AC_ARG_WITH([python],
236         [AS_HELP_STRING([--without-python], [Disable building the man page index and systemd-python (default: test)])])
237
238 have_lxml=no
239 AS_IF([test "x$with_python" != "xno"], [
240         AM_PATH_PYTHON(,, [:])
241         AS_IF([test "x$PYTHON" != "x:"], [
242                 AC_MSG_CHECKING([for python lxml module])
243                 AS_IF(["$PYTHON" -c 'import lxml' 2>/dev/null], [have_lxml=yes])
244                 AC_MSG_RESULT([$have_lxml])
245                 AS_IF([test "x$have_lxml" = "xyes"], [have_python=yes],
246                       [AC_MSG_WARN([*** python support requires python-lxml module installed])])
247         ])
248 ])
249 AS_IF([test "$have_python" != "yes"], [
250       AS_IF([test "$with_python" = "yes"],
251             [AC_MSG_ERROR([*** python support requested but python support not found])])
252       AS_IF([test "$with_python" != "no"],
253             [AC_MSG_WARN([*** python support not found, some documentation cannot be built])])
254 ])
255
256 AM_CONDITIONAL([HAVE_PYTHON], [test "x$have_python" = "xyes"])
257 AS_IF([test "x$PYTHON_BINARY" = "x"],
258       [AS_IF([test "x$have_python" = "xyes"],
259              [PYTHON_BINARY="$(which "$PYTHON")"],
260              [PYTHON_BINARY=/usr/bin/python])])
261 AC_ARG_VAR(PYTHON_BINARY, [Python binary used to launch installed scripts])
262
263 AS_IF([test "x$have_python" != "xyes" -a "x$enable_python_devel" = "xyes"],
264       [AC_MSG_ERROR([*** python-devel support requires --with-python])])
265
266 have_python_devel=no
267 AC_ARG_ENABLE(python_devel, AS_HELP_STRING([--disable-python-devel], [Do not build python modules]))
268 AS_IF([test "x$have_python" = "xyes" -a "x$enable_python_devel" != "xno"], [
269       PKG_CHECK_MODULES([PYTHON_DEVEL], [python-${PYTHON_VERSION}],
270             [have_python_devel=yes],
271             [PKG_CHECK_MODULES([PYTHON_DEVEL], [python],
272                   [have_python_devel=yes],
273                   [have_python_devel=no])])
274       AS_IF([test "x$have_python_devel" = xno -a "x$enable_python_devel" = xyes],
275             [AC_MSG_ERROR([*** python-devel support requested but libraries not found])])
276       AC_PATH_PROGS(SPHINX_BUILD, sphinx-build-${PYTHON_VERSION} sphinx-build)
277 ])
278 AM_CONDITIONAL([HAVE_PYTHON_DEVEL], [test "$have_python_devel" = "yes"])
279
280 # ------------------------------------------------------------------------------
281
282 AC_SEARCH_LIBS([dlsym], [dl], [], [AC_MSG_ERROR([*** Dynamic linking loader library not found])])
283 AC_CHECK_HEADERS([sys/capability.h], [], [AC_MSG_ERROR([*** POSIX caps headers not found])])
284 AC_CHECK_HEADERS([linux/btrfs.h], [], [])
285
286 # unconditionally pull-in librt with old glibc versions
287 AC_SEARCH_LIBS([clock_gettime], [rt], [], [])
288
289 save_LIBS="$LIBS"
290 LIBS=
291 AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
292 CAP_LIBS="$LIBS"
293 AC_SUBST(CAP_LIBS)
294
295 LIBS=
296 AC_SEARCH_LIBS([mq_open], [rt], [], [AC_MSG_ERROR([*** POSIX RT library not found])])
297 RT_LIBS="$LIBS"
298 AC_SUBST(RT_LIBS)
299 LIBS="$save_LIBS"
300
301 AC_CHECK_FUNCS([fanotify_init fanotify_mark])
302 AC_CHECK_FUNCS([__secure_getenv secure_getenv])
303 AC_CHECK_DECLS([gettid, pivot_root, name_to_handle_at, setns, LO_FLAGS_PARTSCAN],
304                [], [], [[
305 #include <sys/types.h>
306 #include <unistd.h>
307 #include <sys/mount.h>
308 #include <fcntl.h>
309 #include <sched.h>
310 #include <linux/loop.h>
311 ]])
312
313 AC_CHECK_DECLS([IFLA_PHYS_PORT_ID,
314                 IFLA_BOND_AD_INFO,
315                 IFLA_VLAN_PROTOCOL,
316                 IFLA_VXLAN_LOCAL6,
317                 IFLA_IPTUN_6RD_RELAY_PREFIXLEN,
318                 IFLA_BRIDGE_VLAN_INFO],
319 [], [], [[
320 #include <inttypes.h>
321 #include <netinet/in.h>
322 #include <netinet/ether.h>
323 #include <linux/rtnetlink.h>
324 #include <net/if.h>
325 #include <linux/ip.h>
326 #include <linux/if_tunnel.h>
327 #include <linux/if_link.h>
328 #include <linux/if_bridge.h>
329 ]])
330
331 # This makes sure pkg.m4 is available.
332 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
333
334 # ------------------------------------------------------------------------------
335 have_dbus=no
336 AC_ARG_ENABLE(dbus, AS_HELP_STRING([--disable-dbus], [disable usage of dbus-1 in tests]))
337 AS_IF([test "x$enable_dbus" != "xno"], [
338         PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.3.2],
339                 [AC_DEFINE(HAVE_DBUS, 1, [Define if dbus-1 library is available]) have_dbus=yes],
340                 [have_dbus=no])
341         AS_IF([test "x$have_dbus" = "xno" -a "x$enable_dbus" = "xyes"],
342                 [AC_MSG_ERROR([*** dbus-1 support requested but libraries not found])])])
343 AM_CONDITIONAL(HAVE_DBUS, [test "$have_dbus" = "yes"])
344
345 # ------------------------------------------------------------------------------
346 have_compat_libs=no
347 AC_ARG_ENABLE([compat_libs], AS_HELP_STRING([--enable-compat-libs],[Enable creation of compatibility libraries]),
348                 [case "${enableval}" in
349                         yes) have_compat_libs=yes ;;
350                         no) have_compat_libs=no ;;
351                         *) AC_MSG_ERROR(bad value ${enableval} for --enable-compat-libs) ;;
352                 esac],
353                 [have_compat_libs=no])
354 AM_CONDITIONAL([ENABLE_COMPAT_LIBS], [test "$have_compat_libs" = "yes"])
355
356 # ------------------------------------------------------------------------------
357 have_coverage=no
358 AC_ARG_ENABLE(coverage, AS_HELP_STRING([--enable-coverage], [enable test coverage]))
359 if test "x$enable_coverage" = "xyes" ; then
360         AC_CHECK_PROG(lcov_found, [lcov], [yes], [no])
361         if test "x$lcov_found" = xno ; then
362                 AC_MSG_ERROR([*** lcov support requested but the program was not found])
363         else
364                 lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`"
365                 lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`"
366                 if test "$lcov_version_major" -eq 1 -a "$lcov_version_minor" -lt 10; then
367                         AC_MSG_ERROR([*** lcov version is too old. 1.10 required])
368                 else
369                         have_coverage=yes
370                         CC_CHECK_FLAGS_APPEND([with_coverage_cflags], [CFLAGS], [\
371                         -fprofile-arcs \
372                         -ftest-coverage])
373                         AC_SUBST([OUR_CFLAGS], "$with_cflags $with_coverage_cflags")
374                 fi
375         fi
376 fi
377 AM_CONDITIONAL(ENABLE_COVERAGE, [test "$have_coverage" = "yes"])
378
379 # ------------------------------------------------------------------------------
380 have_kmod=no
381 AC_ARG_ENABLE(kmod, AS_HELP_STRING([--disable-kmod], [disable loadable modules support]))
382 if test "x$enable_kmod" != "xno"; then
383         PKG_CHECK_EXISTS([ libkmod ], have_kmod=yes, have_kmod=no)
384         if test "x$have_kmod" = "xyes"; then
385                 PKG_CHECK_MODULES(KMOD, [ libkmod >= 15 ],
386                         [AC_DEFINE(HAVE_KMOD, 1, [Define if kmod is available])],
387                         AC_MSG_ERROR([*** kmod version >= 15 not found]))
388         fi
389         if test "x$have_kmod" = xno -a "x$enable_kmod" = xyes; then
390                 AC_MSG_ERROR([*** kmod support requested, but libraries not found])
391         fi
392 fi
393 AM_CONDITIONAL(HAVE_KMOD, [test "$have_kmod" = "yes"])
394
395 # ------------------------------------------------------------------------------
396 have_blkid=no
397 AC_ARG_ENABLE(blkid, AS_HELP_STRING([--disable-blkid], [disable blkid support]))
398 if test "x$enable_blkid" != "xno"; then
399         PKG_CHECK_MODULES(BLKID, [ blkid >= 2.20 ],
400                 [AC_DEFINE(HAVE_BLKID, 1, [Define if blkid is available]) have_blkid=yes], have_blkid=no)
401         if test "x$have_blkid" = xno -a "x$enable_blkid" = xyes; then
402                 AC_MSG_ERROR([*** blkid support requested but libraries not found])
403         fi
404 fi
405 AM_CONDITIONAL(HAVE_BLKID, [test "$have_blkid" = "yes"])
406
407 # ------------------------------------------------------------------------------
408 have_seccomp=no
409 AC_ARG_ENABLE(seccomp, AS_HELP_STRING([--disable-seccomp], [Disable optional SECCOMP support]))
410 if test "x$enable_seccomp" != "xno"; then
411         PKG_CHECK_MODULES(SECCOMP, [libseccomp >= 1.0.0],
412                [AC_DEFINE(HAVE_SECCOMP, 1, [Define if seccomp is available])
413                 have_seccomp=yes
414                 M4_DEFINES="$M4_DEFINES -DHAVE_SECCOMP"],
415                [have_seccomp=no])
416         if test "x$have_seccomp" = "xno" -a "x$enable_seccomp" = "xyes"; then
417                 AC_MSG_ERROR([*** seccomp support requested but libraries not found])
418         fi
419 fi
420 AM_CONDITIONAL(HAVE_SECCOMP, [test "$have_seccomp" = "yes"])
421
422 # ------------------------------------------------------------------------------
423 have_ima=yes
424 AC_ARG_ENABLE([ima], AS_HELP_STRING([--disable-ima],[Disable optional IMA support]),
425                 [case "${enableval}" in
426                         yes) have_ima=yes ;;
427                         no) have_ima=no ;;
428                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-ima) ;;
429                 esac],
430                 [have_ima=yes])
431
432 if test "x${have_ima}" != xno ; then
433         AC_DEFINE(HAVE_IMA, 1, [Define if IMA is available])
434 fi
435
436 # ------------------------------------------------------------------------------
437 have_chkconfig=yes
438 AC_ARG_ENABLE([chkconfig], AS_HELP_STRING([--disable-chkconfig],[Disable optional chkconfig support]),
439                 [case "${enableval}" in
440                         yes) have_chkconfig=yes ;;
441                         no) have_chkconfig=no ;;
442                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-chkconfig) ;;
443                 esac],
444                 [AC_PATH_PROG(CHKCONFIG, chkconfig)
445                 if test -z "$CHKCONFIG"; then
446                         have_chkconfig=no
447                 else
448                         have_chkconfig=yes
449                 fi])
450
451 if test "x${have_chkconfig}" != xno ; then
452         AC_DEFINE(HAVE_CHKCONFIG, 1, [Define if CHKCONFIG is available])
453 fi
454
455 # ------------------------------------------------------------------------------
456 have_selinux=no
457 AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
458 if test "x$enable_selinux" != "xno"; then
459         PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9],
460                 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available])
461                  have_selinux=yes
462                  M4_DEFINES="$M4_DEFINES -DHAVE_SELINUX"],
463                 [have_selinux=no])
464         if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
465                 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
466         fi
467 fi
468 AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
469
470 have_apparmor=no
471 AC_ARG_ENABLE(apparmor, AS_HELP_STRING([--disable-apparmor], [Disable optional AppArmor support]))
472 if test "x$enable_apparmor" != "xno"; then
473         PKG_CHECK_MODULES([APPARMOR], [libapparmor],
474                 [AC_DEFINE(HAVE_APPARMOR, 1, [Define if AppArmor is available])
475                  have_apparmor=yes
476                  M4_DEFINES="$M4_DEFINES -DHAVE_APPARMOR"],
477                 [have_apparmor=no])
478         if test "x$have_apparmor" = xno -a "x$enable_apparmor" = xyes; then
479                 AC_MSG_ERROR([*** AppArmor support requested but libraries not found])
480         fi
481 fi
482 AM_CONDITIONAL(HAVE_APPARMOR, [test "$have_apparmor" = "yes"])
483
484
485 AC_ARG_WITH(debug-shell,
486         AS_HELP_STRING([--with-debug-shell=PATH],
487                 [Path to debug shell binary]),
488         [SUSHELL="$withval"],[
489         AS_IF([test "x${have_selinux}" != "xno"], [SUSHELL="/sbin/sushell"] , [SUSHELL="/bin/sh"])])
490
491 AC_SUBST(SUSHELL)
492
493 AC_ARG_WITH([debug-tty],
494         AS_HELP_STRING([--with-debug-tty=PATH],
495                 [Specify the tty device for debug shell]),
496         [DEBUGTTY="$withval"],
497         [DEBUGTTY=/dev/tty9])
498
499 AC_SUBST(DEBUGTTY)
500
501 AC_ARG_WITH([certificate-root],
502         AS_HELP_STRING([--with-certificate-root=PATH],
503                 [Specify the prefix for TLS certificates [/etc/ssl]]),
504         [CERTIFICATEROOT="$withval"],
505         [CERTIFICATEROOT="/etc/ssl"])
506
507 AC_SUBST(CERTIFICATEROOT)
508
509 # ------------------------------------------------------------------------------
510 have_xz=no
511 AC_ARG_ENABLE(xz, AS_HELP_STRING([--disable-xz], [Disable optional XZ support]))
512 if test "x$enable_xz" != "xno"; then
513         PKG_CHECK_MODULES(XZ, [ liblzma ],
514                 [AC_DEFINE(HAVE_XZ, 1, [Define if XZ is available]) have_xz=yes])
515         if test "x$have_xz" = xno -a "x$enable_xz" = xyes; then
516                 AC_MSG_ERROR([*** XZ support requested but libraries not found])
517         fi
518 fi
519 AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"])
520
521 # ------------------------------------------------------------------------------
522 have_lz4=no
523 AC_ARG_ENABLE(lz4, AS_HELP_STRING([--enable-lz4], [Enable optional LZ4 support]))
524 AS_IF([test "x$enable_lz4" == "xyes"], [
525         AC_CHECK_HEADERS(lz4.h,
526                [AC_DEFINE(HAVE_LZ4, 1, [Define in LZ4 is available]) have_lz4=yes],
527                [AC_MSG_ERROR([*** LZ4 support requested but headers not found])])
528 ])
529 AM_CONDITIONAL(HAVE_LZ4, [test "$have_lz4" = "yes"])
530
531 AM_CONDITIONAL(HAVE_COMPRESSION, [test "$have_xz" = "yes" -o "$have_lz4" = "yes"])
532
533 # ------------------------------------------------------------------------------
534 AC_ARG_ENABLE([pam],
535         AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
536                 [case "${enableval}" in
537                         yes) have_pam=yes ;;
538                         no) have_pam=no ;;
539                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
540                 esac],
541                 [have_pam=auto])
542
543 if test "x${have_pam}" != xno ; then
544         AC_CHECK_HEADERS(
545                 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
546                 [have_pam=yes],
547                 [if test "x$have_pam" = xyes ; then
548                         AC_MSG_ERROR([*** PAM headers not found.])
549                 fi])
550
551         AC_CHECK_LIB(
552                 [pam],
553                 [pam_syslog],
554                 [have_pam=yes],
555                 [if test "x$have_pam" = xyes ; then
556                         AC_MSG_ERROR([*** libpam not found.])
557                 fi])
558
559         if test "x$have_pam" = xyes ; then
560                 PAM_LIBS="-lpam -lpam_misc"
561                 AC_DEFINE(HAVE_PAM, 1, [PAM available])
562                 M4_DEFINES="$M4_DEFINES -DHAVE_PAM"
563         else
564                 have_pam=no
565         fi
566 else
567         PAM_LIBS=
568 fi
569 AC_SUBST(PAM_LIBS)
570 AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
571
572 # ------------------------------------------------------------------------------
573 AC_ARG_ENABLE([acl],
574         AS_HELP_STRING([--disable-acl],[Disable optional ACL support]),
575                 [case "${enableval}" in
576                         yes) have_acl=yes ;;
577                         no) have_acl=no ;;
578                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;;
579                 esac],
580                 [have_acl=auto])
581
582 if test "x${have_acl}" != xno ; then
583         AC_CHECK_HEADERS(
584                 [sys/acl.h acl/libacl.h],
585                 [have_acl=yes],
586                 [if test "x$have_acl" = xyes ; then
587                         AC_MSG_ERROR([*** ACL headers not found.])
588                 fi])
589
590         AC_CHECK_LIB(
591                 [acl],
592                 [acl_get_file],
593                 [have_acl=yes],
594                 [if test "x$have_acl" = xyes ; then
595                         AC_MSG_ERROR([*** libacl not found.])
596                 fi])
597
598         if test "x$have_acl" = xyes ; then
599                 ACL_LIBS="-lacl"
600                 AC_DEFINE(HAVE_ACL, 1, [ACL available])
601         else
602                 have_acl=no
603         fi
604 else
605         ACL_LIBS=
606 fi
607 AC_SUBST(ACL_LIBS)
608 AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno])
609
610 # ------------------------------------------------------------------------------
611 AC_ARG_ENABLE([smack], AS_HELP_STRING([--disable-smack],[Disable optional SMACK support]),
612                 [case "${enableval}" in
613                         yes) have_smack=yes ;;
614                         no) have_smack=no ;;
615                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-smack) ;;
616                 esac],
617                 [have_smack=auto])
618
619 if test "x${have_smack}" = xauto; then
620         M4_DEFINES="$M4_DEFINES -DHAVE_SMACK"
621         have_smack=yes
622 fi
623
624 AC_ARG_WITH(smack-run-label,
625 AS_HELP_STRING([--with-smack-run-label=STRING],
626         [run systemd --system with a specific SMACK label]),
627         [AC_DEFINE_UNQUOTED(SMACK_RUN_LABEL, ["$withval"], [Run with a smack label])],
628         [])
629
630 if test "x${have_smack}" = xyes ; then
631         AC_DEFINE(HAVE_SMACK, 1, [Define if SMACK is available])
632 fi
633
634 # ------------------------------------------------------------------------------
635 AC_ARG_ENABLE([gcrypt],
636         AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]),
637                 [case "${enableval}" in
638                         yes) have_gcrypt=yes ;;
639                         no) have_gcrypt=no ;;
640                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-gcrypt) ;;
641                 esac],
642                 [have_gcrypt=auto])
643
644 if test "x${have_gcrypt}" != xno ; then
645         AM_PATH_LIBGCRYPT(
646                 [1.4.5],
647                 [have_gcrypt=yes],
648                 [if test "x$have_gcrypt" = xyes ; then
649                         AC_MSG_ERROR([*** GCRYPT headers not found.])
650                 fi])
651
652         if test "x$have_gcrypt" = xyes ; then
653                 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
654                 GCRYPT_CFLAGS="$LIBGCRYPT_CFLAGS"
655                 AC_DEFINE(HAVE_GCRYPT, 1, [GCRYPT available])
656         else
657                 have_gcrypt=no
658         fi
659 else
660         GCRYPT_LIBS=
661         GCRYPT_CFLAGS=
662 fi
663 AC_SUBST(GCRYPT_LIBS)
664 AC_SUBST(GCRYPT_CFLAGS)
665 AM_CONDITIONAL([HAVE_GCRYPT], [test "x$have_gcrypt" != xno])
666
667 # ------------------------------------------------------------------------------
668 AC_ARG_ENABLE([audit],
669         AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]),
670                 [case "${enableval}" in
671                         yes) have_audit=yes ;;
672                         no) have_audit=no ;;
673                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;;
674                 esac],
675                 [have_audit=auto])
676
677 if test "x${have_audit}" != xno ; then
678         AC_CHECK_HEADERS(
679                 [libaudit.h],
680                 [have_audit=yes],
681                 [if test "x$have_audit" = xyes ; then
682                         AC_MSG_ERROR([*** AUDIT headers not found.])
683                 fi])
684
685         AC_CHECK_LIB(
686                 [audit],
687                 [audit_open],
688                 [have_audit=yes],
689                 [if test "x$have_audit" = xyes ; then
690                         AC_MSG_ERROR([*** libaudit not found.])
691                 fi])
692
693         if test "x$have_audit" = xyes ; then
694                 AUDIT_LIBS="-laudit"
695                 AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available])
696         else
697                 have_audit=no
698         fi
699 else
700         AUDIT_LIBS=
701 fi
702 AC_SUBST(AUDIT_LIBS)
703
704 # ------------------------------------------------------------------------------
705 AC_ARG_ENABLE([elfutils],
706         AS_HELP_STRING([--disable-elfutils],[Disable optional ELFUTILS support]),
707                 [case "${enableval}" in
708                         yes) have_elfutils=yes ;;
709                         no) have_elfutils=no ;;
710                         *) AC_MSG_ERROR(bad value ${enableval} for --disable-elfutils) ;;
711                 esac],
712                 [have_elfutils=auto])
713
714 if test "x${have_elfutils}" != xno ; then
715         AC_CHECK_HEADERS(
716                 [elfutils/libdwfl.h],
717                 [],
718                 [if test "x$have_elfutils" = xyes ; then
719                         AC_MSG_ERROR([*** ELFUTILS headers not found.])
720                 fi])
721
722         AC_CHECK_LIB(
723                 [dw],
724                 [dwfl_begin],
725                 [],
726                 [if test "x$have_elfutils" = xyes ; then
727                         AC_MSG_ERROR([*** ELFUTILS libs not found.])
728                 fi])
729
730         AC_CHECK_LIB(
731                 [dw],
732                 [dwfl_core_file_attach],
733                 [have_elfutils=yes],
734                 [if test "x$have_elfutils" = xyes ; then
735                         AC_MSG_ERROR([*** ELFUTILS >= 158 is required.])
736                 fi])
737
738         if test "x$have_elfutils" = xyes ; then
739                 ELFUTILS_LIBS="-lelf -ldw"
740                 AC_DEFINE(HAVE_ELFUTILS, 1, [ELFUTILS available])
741         else
742                 have_elfutils=no
743         fi
744 else
745         ELFUTILS_LIBS=
746 fi
747 AC_SUBST(ELFUTILS_LIBS)
748 AM_CONDITIONAL(HAVE_ELFUTILS, [test "$have_elfutils" = "yes"])
749
750 # ------------------------------------------------------------------------------
751 have_libcryptsetup=no
752 AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
753 if test "x$enable_libcryptsetup" != "xno"; then
754         PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup >= 1.6.0 ],
755                 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
756         if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
757                 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
758         fi
759 fi
760 AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
761
762 # ------------------------------------------------------------------------------
763 have_qrencode=no
764 AC_ARG_ENABLE(qrencode, AS_HELP_STRING([--disable-qrencode], [disable qrencode support]))
765 if test "x$enable_qrencode" != "xno"; then
766         PKG_CHECK_MODULES(QRENCODE, [ libqrencode ],
767                 [AC_DEFINE(HAVE_QRENCODE, 1, [Define if qrencode is available]) have_qrencode=yes], have_qrencode=no)
768         if test "x$have_qrencode" = xno -a "x$enable_qrencode" = xyes; then
769                 AC_MSG_ERROR([*** qrencode support requested but libraries not found])
770         fi
771 fi
772 AM_CONDITIONAL(HAVE_QRENCODE, [test "$have_qrencode" = "yes"])
773
774 # ------------------------------------------------------------------------------
775 have_microhttpd=no
776 AC_ARG_ENABLE(microhttpd, AS_HELP_STRING([--disable-microhttpd], [disable microhttpd support]))
777 if test "x$enable_microhttpd" != "xno"; then
778         PKG_CHECK_MODULES(MICROHTTPD, [libmicrohttpd >= 0.9.33],
779                 [AC_DEFINE(HAVE_MICROHTTPD, 1, [Define if microhttpd is available]) have_microhttpd=yes], have_microhttpd=no)
780         if test "x$have_microhttpd" = xno -a "x$enable_microhttpd" = xyes; then
781                 AC_MSG_ERROR([*** microhttpd support requested but libraries not found])
782         fi
783 fi
784 AM_CONDITIONAL(HAVE_MICROHTTPD, [test "$have_microhttpd" = "yes"])
785
786 # ------------------------------------------------------------------------------
787 have_gnutls=no
788 AC_ARG_ENABLE(gnutls, AS_HELP_STRING([--disable-gnutls], [disable gnutls support]))
789 if test "x$enable_gnutls" != "xno"; then
790         PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.1.4],
791                 [AC_DEFINE(HAVE_GNUTLS, 1, [Define if gnutls is available]) have_gnutls=yes], have_gnutls=no)
792         if test "x$have_gnutls" = xno -a "x$enable_gnutls" = xyes; then
793                 AC_MSG_ERROR([*** gnutls support requested but libraries not found])
794         fi
795 fi
796 AM_CONDITIONAL(HAVE_GNUTLS, [test "$have_gnutls" = "yes"])
797
798 # ------------------------------------------------------------------------------
799 have_libcurl=no
800 AC_ARG_ENABLE(libcurl, AS_HELP_STRING([--disable-libcurl], [disable libcurl support]))
801 if test "x$enable_libcurl" != "xno"; then
802         PKG_CHECK_MODULES(LIBCURL, [libcurl],
803                 [AC_DEFINE(HAVE_LIBCURL, 1, [Define if libcurl is available]) have_libcurl=yes], have_libcurl=no)
804         if test "x$have_libcurl" = xno -a "x$enable_libcurl" = xyes; then
805                 AC_MSG_ERROR([*** libcurl support requested but libraries not found])
806         fi
807 fi
808 AM_CONDITIONAL(HAVE_LIBCURL, [test "$have_libcurl" = "yes"])
809
810 # ------------------------------------------------------------------------------
811 have_binfmt=no
812 AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
813 if test "x$enable_binfmt" != "xno"; then
814         have_binfmt=yes
815 fi
816 AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
817
818 # ------------------------------------------------------------------------------
819 have_vconsole=no
820 AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool]))
821 if test "x$enable_vconsole" != "xno"; then
822         have_vconsole=yes
823 fi
824 AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"])
825
826 # ------------------------------------------------------------------------------
827 have_readahead=no
828 AC_ARG_ENABLE(readahead, AS_HELP_STRING([--disable-readahead], [disable readahead tools]))
829 if test "x$enable_readahead" != "xno"; then
830         have_readahead=yes
831 fi
832 AM_CONDITIONAL(ENABLE_READAHEAD, [test "$have_readahead" = "yes"])
833
834 # ------------------------------------------------------------------------------
835 have_bootchart=no
836 AC_ARG_ENABLE(bootchart, AS_HELP_STRING([--disable-bootchart], [disable bootchart tool]))
837 if test "x$enable_bootchart" != "xno"; then
838         have_bootchart=yes
839 fi
840 AM_CONDITIONAL(ENABLE_BOOTCHART, [test "$have_bootchart" = "yes"])
841
842 # ------------------------------------------------------------------------------
843 have_quotacheck=no
844 AC_ARG_ENABLE(quotacheck, AS_HELP_STRING([--disable-quotacheck], [disable quotacheck tools]))
845 if test "x$enable_quotacheck" != "xno"; then
846         have_quotacheck=yes
847 fi
848 AM_CONDITIONAL(ENABLE_QUOTACHECK, [test "$have_quotacheck" = "yes"])
849
850 # ------------------------------------------------------------------------------
851 have_tmpfiles=no
852 AC_ARG_ENABLE(tmpfiles, AS_HELP_STRING([--disable-tmpfiles], [disable tmpfiles support]))
853 if test "x$enable_tmpfiles" != "xno"; then
854         have_tmpfiles=yes
855 fi
856 AM_CONDITIONAL(ENABLE_TMPFILES, [test "$have_tmpfiles" = "yes"])
857
858 # ------------------------------------------------------------------------------
859 have_sysusers=no
860 AC_ARG_ENABLE(sysusers, AS_HELP_STRING([--disable-sysusers], [disable sysusers support]))
861 if test "x$enable_sysusers" != "xno"; then
862         have_sysusers=yes
863 fi
864 AM_CONDITIONAL(ENABLE_SYSUSERS, [test "$have_sysusers" = "yes"])
865
866 # ------------------------------------------------------------------------------
867 have_firstboot=no
868 AC_ARG_ENABLE(firstboot, AS_HELP_STRING([--disable-firstboot], [disable firstboot support]))
869 if test "x$enable_firstboot" != "xno"; then
870         have_firstboot=yes
871 fi
872 AM_CONDITIONAL(ENABLE_FIRSTBOOT, [test "$have_firstboot" = "yes"])
873
874 # ------------------------------------------------------------------------------
875 have_randomseed=no
876 AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools]))
877 if test "x$enable_randomseed" != "xno"; then
878         have_randomseed=yes
879 fi
880 AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"])
881
882 # ------------------------------------------------------------------------------
883 have_backlight=no
884 AC_ARG_ENABLE(backlight, AS_HELP_STRING([--disable-backlight], [disable backlight tools]))
885 if test "x$enable_backlight" != "xno"; then
886         have_backlight=yes
887 fi
888 AM_CONDITIONAL(ENABLE_BACKLIGHT, [test "$have_backlight" = "yes"])
889
890 # ------------------------------------------------------------------------------
891 have_rfkill=no
892 AC_ARG_ENABLE(rfkill, AS_HELP_STRING([--disable-rfkill], [disable rfkill tools]))
893 if test "x$enable_rfkill" != "xno"; then
894         have_rfkill=yes
895 fi
896 AM_CONDITIONAL(ENABLE_RFKILL, [test "$have_rfkill" = "yes"])
897
898 # ------------------------------------------------------------------------------
899 have_logind=no
900 AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon]))
901 if test "x$enable_logind" != "xno"; then
902         have_logind=yes
903 fi
904 AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"])
905 AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ])
906
907 # ------------------------------------------------------------------------------
908 have_machined=no
909 AC_ARG_ENABLE(machined, AS_HELP_STRING([--disable-machined], [disable machine daemon]))
910 if test "x$enable_machined" != "xno"; then
911         have_machined=yes
912 fi
913 AM_CONDITIONAL(ENABLE_MACHINED, [test "$have_machined" = "yes"])
914 AS_IF([test "$have_machined" = "yes"], [ AC_DEFINE(HAVE_MACHINED, [1], [Machined support available]) ])
915
916 # ------------------------------------------------------------------------------
917 have_hostnamed=no
918 AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon]))
919 if test "x$enable_hostnamed" != "xno"; then
920         have_hostnamed=yes
921 fi
922 AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"])
923
924 # ------------------------------------------------------------------------------
925 have_timedated=no
926 AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon]))
927 if test "x$enable_timedated" != "xno"; then
928         have_timedated=yes
929 fi
930 AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
931
932 # ------------------------------------------------------------------------------
933 have_timesyncd=no
934 AC_ARG_ENABLE(timesyncd, AS_HELP_STRING([--disable-timesyncd], [disable timesync daemon]))
935 if test "x$enable_timesyncd" != "xno"; then
936         have_timesyncd=yes
937 fi
938 AM_CONDITIONAL(ENABLE_TIMESYNCD, [test "$have_timesyncd" = "yes"])
939
940 AC_ARG_WITH(ntp-servers,
941         AS_HELP_STRING([--with-ntp-servers=NTPSERVERS],
942                 [Space-separated list of default NTP servers]),
943         [NTP_SERVERS="$withval"],
944         [NTP_SERVERS="time1.google.com time2.google.com time3.google.com time4.google.com"])
945
946 AC_DEFINE_UNQUOTED(NTP_SERVERS, ["$NTP_SERVERS"], [Default NTP Servers])
947 AC_SUBST(NTP_SERVERS)
948
949 AC_ARG_WITH(time-epoch,
950         AS_HELP_STRING([--with-time-epoch=SECONDS],
951                 [Time epoch for time clients]),
952         [TIME_EPOCH="$withval"],
953         [TIME_EPOCH="`stat -c %Y ${srcdir}/NEWS 2>/dev/null || echo 0`"])
954
955 AC_DEFINE_UNQUOTED(TIME_EPOCH, [$TIME_EPOCH], [Time Epoch])
956
957 # ------------------------------------------------------------------------------
958 AC_ARG_WITH(system-uid-max,
959         AS_HELP_STRING([--with-system-uid-max=UID]
960                 [Maximum UID for system users]),
961         [SYSTEM_UID_MAX="$withval"],
962         [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`"])
963
964 AC_DEFINE_UNQUOTED(SYSTEM_UID_MAX, [$SYSTEM_UID_MAX], [Maximum System UID])
965 AC_SUBST(SYSTEM_UID_MAX)
966
967 # ------------------------------------------------------------------------------
968 AC_ARG_WITH(system-gid-max,
969         AS_HELP_STRING([--with-system-gid-max=GID]
970                 [Maximum GID for system groups]),
971         [SYSTEM_GID_MAX="$withval"],
972         [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`"])
973
974 AC_DEFINE_UNQUOTED(SYSTEM_GID_MAX, [$SYSTEM_GID_MAX], [Maximum System GID])
975 AC_SUBST(SYSTEM_GID_MAX)
976
977 # ------------------------------------------------------------------------------
978 have_localed=no
979 AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))
980 if test "x$enable_localed" != "xno"; then
981         have_localed=yes
982 fi
983 AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"])
984
985 # ------------------------------------------------------------------------------
986 have_coredump=no
987 AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook]))
988 if test "x$enable_coredump" != "xno"; then
989         have_coredump=yes
990 fi
991 AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"])
992
993 # ------------------------------------------------------------------------------
994 have_polkit=no
995 AC_ARG_ENABLE(polkit, AS_HELP_STRING([--disable-polkit], [disable PolicyKit support]))
996 if test "x$enable_polkit" != "xno"; then
997         AC_DEFINE(ENABLE_POLKIT, 1, [Define if PolicyKit support is to be enabled])
998         have_polkit=yes
999 fi
1000 AM_CONDITIONAL(ENABLE_POLKIT, [test "x$have_polkit" = "xyes"])
1001
1002 # ------------------------------------------------------------------------------
1003 have_resolved=no
1004 AC_ARG_ENABLE(resolved, AS_HELP_STRING([--disable-resolved], [disable resolve daemon]))
1005 if test "x$enable_resolved" != "xno"; then
1006         have_resolved=yes
1007 fi
1008 AM_CONDITIONAL(ENABLE_RESOLVED, [test "$have_resolved" = "yes"])
1009
1010 AC_ARG_WITH(dns-servers,
1011         AS_HELP_STRING([--with-dns-servers=DNSSERVERS],
1012                 [Space-separated list of default DNS servers]),
1013         [DNS_SERVERS="$withval"],
1014         [DNS_SERVERS="8.8.8.8 8.8.4.4 2001:4860:4860::8888 2001:4860:4860::8844"])
1015
1016 AC_DEFINE_UNQUOTED(DNS_SERVERS, ["$DNS_SERVERS"], [Default DNS Servers])
1017 AC_SUBST(DNS_SERVERS)
1018
1019 # ------------------------------------------------------------------------------
1020 have_networkd=no
1021 AC_ARG_ENABLE(networkd, AS_HELP_STRING([--disable-networkd], [disable networkd]))
1022 AS_IF([test "x$enable_networkd" != "xno"], [
1023         AC_DEFINE(ENABLE_NETWORKD, 1, [Define if networkd support is to be enabled])
1024         have_networkd=yes
1025 ])
1026 AM_CONDITIONAL(ENABLE_NETWORKD, [test "x$have_networkd" = "xyes"])
1027
1028 # ------------------------------------------------------------------------------
1029 have_efi=no
1030 AC_ARG_ENABLE(efi, AS_HELP_STRING([--disable-efi], [disable EFI support]))
1031 if test "x$enable_efi" != "xno"; then
1032         AC_DEFINE(ENABLE_EFI, 1, [Define if EFI support is to be enabled])
1033         have_efi=yes
1034 fi
1035 AM_CONDITIONAL(ENABLE_EFI, [test "x$have_efi" = "xyes"])
1036
1037 # ------------------------------------------------------------------------------
1038 have_multi_seat_x=no
1039 AC_ARG_ENABLE(multi_seat_x, AS_HELP_STRING([--disable-multi-seat-x], [do not build multi-seat-x]))
1040 if test "x$enable_multi_seat_x" != "xno"; then
1041         have_multi_seat_x=yes
1042 fi
1043 AM_CONDITIONAL(ENABLE_MULTI_SEAT_X, [test "$have_multi_seat_x" = "yes"])
1044
1045 # ------------------------------------------------------------------------------
1046 have_kdbus=no
1047 AC_ARG_ENABLE(kdbus, AS_HELP_STRING([--enable-kdbus], [do connect to kdbus by default]))
1048 if test "x$enable_kdbus" = "xyes"; then
1049         AC_DEFINE(ENABLE_KDBUS, 1, [Define if kdbus support is to be enabled])
1050         have_kdbus=yes
1051         M4_DEFINES="$M4_DEFINES -DENABLE_KDBUS"
1052 fi
1053 AM_CONDITIONAL(ENABLE_KDBUS, [test "$have_kdbus" = "yes"])
1054
1055 # ------------------------------------------------------------------------------
1056 AC_ARG_WITH(rc-local-script-path-start,
1057         AS_HELP_STRING([--with-rc-local-script-path-start=PATH],
1058                 [Path to /etc/rc.local]),
1059         [RC_LOCAL_SCRIPT_PATH_START="$withval"],
1060         [RC_LOCAL_SCRIPT_PATH_START="/etc/rc.local"])
1061
1062 AC_ARG_WITH(rc-local-script-path-stop,
1063         AS_HELP_STRING([--with-rc-local-script-path-stop=PATH],
1064                 [Path to /usr/sbin/halt.local]),
1065         [RC_LOCAL_SCRIPT_PATH_STOP="$withval"],
1066         [RC_LOCAL_SCRIPT_PATH_STOP="/usr/sbin/halt.local"])
1067
1068 AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_START, ["$RC_LOCAL_SCRIPT_PATH_START"], [Path of /etc/rc.local script])
1069 AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_STOP, ["$RC_LOCAL_SCRIPT_PATH_STOP"], [Path of /usr/sbin/halt.local script])
1070
1071 AC_SUBST(RC_LOCAL_SCRIPT_PATH_START)
1072 AC_SUBST(RC_LOCAL_SCRIPT_PATH_STOP)
1073
1074 # ------------------------------------------------------------------------------
1075 AC_ARG_WITH(kbd-loadkeys,
1076         AS_HELP_STRING([--with-kbd-loadkeys=PATH],
1077                 [Path to loadkeys]),
1078         [KBD_LOADKEYS="$withval"],
1079         [KBD_LOADKEYS="/usr/bin/loadkeys"])
1080
1081 AC_ARG_WITH(kbd-setfont,
1082         AS_HELP_STRING([--with-kbd-setfont=PATH],
1083                 [Path to setfont]),
1084         [KBD_SETFONT="$withval"],
1085         [KBD_SETFONT="/usr/bin/setfont"])
1086
1087 AC_DEFINE_UNQUOTED(KBD_LOADKEYS, ["$KBD_LOADKEYS"], [Path of loadkeys])
1088 AC_DEFINE_UNQUOTED(KBD_SETFONT, ["$KBD_SETFONT"], [Path of setfont])
1089
1090 AC_SUBST(KBD_LOADKEYS)
1091 AC_SUBST(KBD_SETFONT)
1092
1093 AC_ARG_WITH(telinit,
1094         AS_HELP_STRING([--with-telinit=PATH],
1095                 [Path to telinit]),
1096         [TELINIT="$withval"],
1097         [TELINIT="/lib/sysvinit/telinit"])
1098
1099 AC_DEFINE_UNQUOTED(TELINIT, ["$TELINIT"], [Path to telinit])
1100
1101 AC_SUBST(TELINIT)
1102
1103 AC_CHECK_HEADERS_ONCE([valgrind/memcheck.h valgrind/valgrind.h])
1104
1105 # ------------------------------------------------------------------------------
1106 have_myhostname=no
1107 AC_ARG_ENABLE(myhostname, AS_HELP_STRING([--disable-myhostname], [disable nss-myhostname support]))
1108 if test "x$enable_myhostname" != "xno"; then
1109         AC_HEADER_STDC
1110         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])
1111
1112         AC_C_CONST
1113         AC_TYPE_SIZE_T
1114         AC_HEADER_TIME
1115
1116         AC_FUNC_MALLOC
1117         AC_FUNC_SELECT_ARGTYPES
1118         AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn])
1119
1120         have_myhostname=yes
1121 fi
1122 AM_CONDITIONAL(HAVE_MYHOSTNAME, [test "$have_myhostname" = "yes"])
1123
1124 # ------------------------------------------------------------------------------
1125 AC_ARG_WITH(firmware-path,
1126        AS_HELP_STRING([--with-firmware-path=DIR[[[:DIR[...]]]]],
1127           [Firmware search path (default="")]),
1128        [], [with_firmware_path=""])
1129 OLD_IFS=$IFS
1130 IFS=:
1131 for i in $with_firmware_path; do
1132        if test "x${FIRMWARE_PATH}" = "x"; then
1133               FIRMWARE_PATH="\\\"${i}/\\\""
1134        else
1135               FIRMWARE_PATH="${FIRMWARE_PATH}, \\\"${i}/\\\""
1136        fi
1137 done
1138 IFS=$OLD_IFS
1139 AC_SUBST(FIRMWARE_PATH)
1140 AS_IF([test "x${FIRMWARE_PATH}" != "x"], [ AC_DEFINE(HAVE_FIRMWARE, 1, [Define if FIRMWARE is available]) ])
1141 AM_CONDITIONAL(ENABLE_FIRMWARE, [test "x${FIRMWARE_PATH}" != "x"])
1142
1143 # ------------------------------------------------------------------------------
1144 AC_ARG_ENABLE([gudev],
1145        AS_HELP_STRING([--disable-gudev], [disable Gobject libudev support @<:@default=enabled@:>@]),
1146        [], [enable_gudev=yes])
1147 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]) ])
1148 AM_CONDITIONAL([ENABLE_GUDEV], [test "x$enable_gudev" = "xyes"])
1149 AS_IF([test "x$enable_gudev" = "xyes"], [ AC_DEFINE(HAVE_GLIB, 1, [Define if glib is available]) ])
1150
1151 # ------------------------------------------------------------------------------
1152 have_manpages=no
1153 AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
1154 AS_IF([test "x$enable_manpages" != xno], [have_manpages=yes])
1155 AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
1156
1157 # ------------------------------------------------------------------------------
1158
1159 # Location of the init scripts as mandated by LSB
1160 SYSTEM_SYSVINIT_PATH=/etc/init.d
1161 SYSTEM_SYSVRCND_PATH=/etc/rc.d
1162
1163 AC_ARG_WITH([sysvinit-path],
1164         [AS_HELP_STRING([--with-sysvinit-path=PATH],
1165                 [Specify the path to where the SysV init scripts are located])],
1166         [SYSTEM_SYSVINIT_PATH="$withval"],
1167         [])
1168
1169 AC_ARG_WITH([sysvrcnd-path],
1170         [AS_HELP_STRING([--with-sysvrcnd-path=PATH],
1171                 [Specify the path to the base directory for the SysV rcN.d directories])],
1172         [SYSTEM_SYSVRCND_PATH="$withval"],
1173         [])
1174
1175 if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
1176         AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.])
1177         SYSTEM_SYSV_COMPAT="yes"
1178         M4_DEFINES="$M4_DEFINES -DHAVE_SYSV_COMPAT"
1179 elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
1180         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.])
1181 else
1182         SYSTEM_SYSV_COMPAT="no"
1183 fi
1184
1185 AC_SUBST(SYSTEM_SYSVINIT_PATH)
1186 AC_SUBST(SYSTEM_SYSVRCND_PATH)
1187 AC_SUBST(M4_DEFINES)
1188
1189 AM_CONDITIONAL(HAVE_SYSV_COMPAT, test "$SYSTEM_SYSV_COMPAT" = "yes")
1190
1191 AC_ARG_WITH([tty-gid],
1192         [AS_HELP_STRING([--with-tty-gid=GID],
1193                 [Specify the numeric GID of the 'tty' group])],
1194         [TTY_GID="$withval"],
1195         [TTY_GID="5"])
1196
1197 AC_DEFINE_UNQUOTED(TTY_GID, [$TTY_GID], [GID of the 'tty' group])
1198 AC_SUBST(TTY_GID)
1199
1200 AC_ARG_WITH([dbuspolicydir],
1201         AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
1202         [],
1203         [with_dbuspolicydir=$($PKG_CONFIG --variable=sysconfdir dbus-1)/dbus-1/system.d])
1204
1205 AC_ARG_WITH([dbussessionservicedir],
1206         AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
1207         [],
1208         [with_dbussessionservicedir=$($PKG_CONFIG --variable=session_bus_services_dir dbus-1)])
1209
1210 AC_ARG_WITH([dbussystemservicedir],
1211         AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
1212         [],
1213         [with_dbussystemservicedir=$(readlink -m $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../system-services)])
1214
1215 AC_ARG_WITH([dbusinterfacedir],
1216         AS_HELP_STRING([--with-dbusinterfacedir=DIR], [D-Bus interface directory]),
1217         [],
1218         [with_dbusinterfacedir=$(readlink -m $($PKG_CONFIG --variable=session_bus_services_dir dbus-1)/../interfaces)])
1219
1220 AC_ARG_WITH([bashcompletiondir],
1221         AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
1222         [],
1223         [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
1224                 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
1225         ] , [
1226                 with_bashcompletiondir=${datadir}/bash-completion/completions
1227         ])])
1228
1229 AC_ARG_WITH([zshcompletiondir],
1230         AS_HELP_STRING([--with-zshcompletiondir=DIR], [Zsh completions directory]),
1231         [], [with_zshcompletiondir=${datadir}/zsh/site-functions])
1232
1233 AC_ARG_WITH([rootprefix],
1234         AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
1235         [], [with_rootprefix=${ac_default_prefix}])
1236
1237 AC_ARG_WITH([rootlibdir],
1238         AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
1239         [],
1240         [with_rootlibdir=${libdir}])
1241
1242 AC_ARG_WITH([pamlibdir],
1243         AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]),
1244         [],
1245         [with_pamlibdir=${with_rootlibdir}/security])
1246
1247 AC_ARG_WITH([pamconfdir],
1248         AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration]),
1249         [],
1250         [with_pamconfdir=${sysconfdir}/pam.d])
1251
1252 AC_ARG_ENABLE([split-usr],
1253         AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]),
1254         [],
1255         [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [
1256                 enable_split_usr=yes
1257         ], [
1258                 enable_split_usr=no
1259         ])])
1260
1261 AS_IF([test "x${enable_split_usr}" = "xyes"], [
1262         AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr])
1263 ])
1264
1265 # Work around intltoolize and gtk-doc problems in VPATH builds
1266 AM_CONDITIONAL([ENABLE_GTK_DOC_TESTS], [test "x$0" = "x./configure"],
1267                                        [Define to do gtk-doc tests])
1268 AS_IF([test "x$0" != "x./configure"], [
1269         AC_SUBST([INTLTOOL_UPDATE], [/bin/true])
1270 ])
1271
1272 AC_ARG_ENABLE(tests,
1273        [AC_HELP_STRING([--disable-tests], [disable tests])],
1274        enable_tests=$enableval, enable_tests=yes)
1275 AM_CONDITIONAL(ENABLE_TESTS, [test x$enable_tests = xyes])
1276
1277 AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
1278 AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
1279 AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
1280 AC_SUBST([dbusinterfacedir], [$with_dbusinterfacedir])
1281 AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
1282 AC_SUBST([zshcompletiondir], [$with_zshcompletiondir])
1283 AC_SUBST([pamlibdir], [$with_pamlibdir])
1284 AC_SUBST([pamconfdir], [$with_pamconfdir])
1285 AC_SUBST([rootprefix], [$with_rootprefix])
1286 AC_SUBST([rootlibdir], [$with_rootlibdir])
1287
1288 AC_CONFIG_FILES([
1289         Makefile po/Makefile.in
1290         docs/libudev/Makefile
1291         docs/libudev/version.xml
1292         docs/gudev/Makefile
1293         docs/gudev/version.xml
1294 ])
1295
1296 AC_OUTPUT
1297 AC_MSG_RESULT([
1298         $PACKAGE_NAME $VERSION
1299
1300         libcryptsetup:           ${have_libcryptsetup}
1301         PAM:                     ${have_pam}
1302         AUDIT:                   ${have_audit}
1303         IMA:                     ${have_ima}
1304         AppArmor:                ${have_apparmor}
1305         SELinux:                 ${have_selinux}
1306         SECCOMP:                 ${have_seccomp}
1307         SMACK:                   ${have_smack}
1308         XZ:                      ${have_xz}
1309         LZ4:                     ${have_lz4}
1310         ACL:                     ${have_acl}
1311         GCRYPT:                  ${have_gcrypt}
1312         QRENCODE:                ${have_qrencode}
1313         MICROHTTPD:              ${have_microhttpd}
1314         CHKCONFIG:               ${have_chkconfig}
1315         GNUTLS:                  ${have_gnutls}
1316         libcurl:                 ${have_libcurl}
1317         ELFUTILS:                ${have_elfutils}
1318         binfmt:                  ${have_binfmt}
1319         vconsole:                ${have_vconsole}
1320         readahead:               ${have_readahead}
1321         bootchart:               ${have_bootchart}
1322         quotacheck:              ${have_quotacheck}
1323         tmpfiles:                ${have_tmpfiles}
1324         sysusers:                ${have_sysusers}
1325         firstboot:               ${have_firstboot}
1326         randomseed:              ${have_randomseed}
1327         backlight:               ${have_backlight}
1328         rfkill:                  ${have_rfkill}
1329         logind:                  ${have_logind}
1330         machined:                ${have_machined}
1331         hostnamed:               ${have_hostnamed}
1332         timedated:               ${have_timedated}
1333         timesyncd:               ${have_timesyncd}
1334         default NTP servers:     ${NTP_SERVERS}
1335         time epoch:              ${TIME_EPOCH}
1336         localed:                 ${have_localed}
1337         networkd:                ${have_networkd}
1338         resolved:                ${have_resolved}
1339         default DNS servers:     ${DNS_SERVERS}
1340         coredump:                ${have_coredump}
1341         polkit:                  ${have_polkit}
1342         efi:                     ${have_efi}
1343         kmod:                    ${have_kmod}
1344         blkid:                   ${have_blkid}
1345         dbus:                    ${have_dbus}
1346         nss-myhostname:          ${have_myhostname}
1347         gudev:                   ${enable_gudev}
1348         gintrospection:          ${enable_introspection}
1349         multi-seat-x:            ${have_multi_seat_x}
1350         kdbus:                   ${have_kdbus}
1351         Python:                  ${have_python}
1352         Python Headers:          ${have_python_devel}
1353         man pages:               ${have_manpages}
1354         gtk-doc:                 ${enable_gtk_doc}
1355         test coverage:           ${have_coverage}
1356         Split /usr:              ${enable_split_usr}
1357         SysV compatibility:      ${SYSTEM_SYSV_COMPAT}
1358         compatibility libraries: ${have_compat_libs}
1359
1360         prefix:                  ${prefix}
1361         rootprefix:              ${with_rootprefix}
1362         sysconf dir:             ${sysconfdir}
1363         datarootdir:             ${datarootdir}
1364         includedir:              ${includedir}
1365         include_prefix:          ${INCLUDE_PREFIX}
1366         lib dir:                 ${libdir}
1367         rootlib dir:             ${with_rootlibdir}
1368         SysV init scripts:       ${SYSTEM_SYSVINIT_PATH}
1369         SysV rc?.d directories:  ${SYSTEM_SYSVRCND_PATH}
1370         Build Python:            ${PYTHON}
1371         Installation Python:     ${PYTHON_BINARY}
1372         sphinx binary:           ${SPHINX_BUILD}
1373         firmware path:           ${FIRMWARE_PATH}
1374         PAM modules dir:         ${with_pamlibdir}
1375         PAM configuration dir:   ${with_pamconfdir}
1376         D-Bus policy dir:        ${with_dbuspolicydir}
1377         D-Bus session dir:       ${with_dbussessionservicedir}
1378         D-Bus system dir:        ${with_dbussystemservicedir}
1379         D-Bus interfaces dir:    ${with_dbusinterfacedir}
1380         Bash completions dir:    ${with_bashcompletiondir}
1381         Zsh completions dir:     ${with_zshcompletiondir}
1382         Extra start script:      ${RC_LOCAL_SCRIPT_PATH_START}
1383         Extra stop script:       ${RC_LOCAL_SCRIPT_PATH_STOP}
1384         Debug shell:             ${SUSHELL} @ ${DEBUGTTY}
1385         TTY GID:                 ${TTY_GID}
1386         Maximum System UID:      ${SYSTEM_UID_MAX}
1387         Maximum System GID:      ${SYSTEM_GID_MAX}
1388         Certificate root:        ${CERTIFICATEROOT}
1389
1390         CFLAGS:                  ${OUR_CFLAGS} ${CFLAGS}
1391         CPPFLAGS:                ${OUR_CPPFLAGS} ${CPPFLAGS}
1392         LDFLAGS:                 ${OUR_LDFLAGS} ${LDFLAGS}
1393         PYTHON_CFLAGS:           ${PYTHON_DEVEL_CFLAGS}
1394         PYTHON_LIBS:             ${PYTHON_DEVEL_LIBS}
1395 ])