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