]>
Commit | Line | Data |
---|---|---|
fb0951b0 | 1 | # |
47be870b LP |
2 | # This file is part of systemd. |
3 | # | |
3e214785 KS |
4 | # Copyright 2010-2012 Lennart Poettering |
5 | # Copyright 2010-2012 Kay Sievers | |
47be870b LP |
6 | # |
7 | # systemd is free software; you can redistribute it and/or modify it | |
5430f7f2 LP |
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 | |
47be870b LP |
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 | |
5430f7f2 | 15 | # Lesser General Public License for more details. |
47be870b | 16 | # |
5430f7f2 | 17 | # You should have received a copy of the GNU Lesser General Public License |
47be870b LP |
18 | # along with systemd; If not, see <http://www.gnu.org/licenses/>. |
19 | ||
4e949c11 JJ |
20 | AC_PREREQ([2.64]) |
21 | ||
22 | AC_INIT([systemd], | |
38b383d9 | 23 | [231], |
1a435084 | 24 | [http://github.com/systemd/systemd/issues], |
4e949c11 JJ |
25 | [systemd], |
26 | [http://www.freedesktop.org/wiki/Software/systemd]) | |
47be870b | 27 | |
78a825f2 | 28 | AC_CONFIG_SRCDIR([src/core/main.c]) |
47be870b LP |
29 | AC_CONFIG_MACRO_DIR([m4]) |
30 | AC_CONFIG_HEADERS([config.h]) | |
a80db8bd JJ |
31 | AC_CONFIG_AUX_DIR([build-aux]) |
32 | ||
4db6d587 | 33 | AC_USE_SYSTEM_EXTENSIONS |
907dd195 | 34 | AC_SYS_LARGEFILE |
eb7bbee6 | 35 | AC_PREFIX_DEFAULT([/usr]) |
6aad7f2c | 36 | AM_MAINTAINER_MODE([enable]) |
91ca5bf0 | 37 | AM_INIT_AUTOMAKE([foreign 1.11 -Wall -Wno-portability silent-rules tar-pax no-dist-gzip dist-xz subdir-objects parallel-tests]) |
3e214785 | 38 | AM_SILENT_RULES([yes]) |
47be870b | 39 | AC_CANONICAL_HOST |
22be093f | 40 | AC_DEFINE_UNQUOTED([CANONICAL_HOST], "$host", [Canonical host string.]) |
4fecbe59 | 41 | |
0e3b0a95 JAS |
42 | AC_PROG_CC_C99 |
43 | ||
44 | AX_COMPILER_VENDOR | |
45 | AS_IF([test "x$ax_cv_c_compiler_vendor" = "xgnu"], [ | |
46 | AC_CHECK_TOOLS([AR], [gcc-ar ar], [:]) | |
47 | AC_CHECK_TOOLS([NM], [gcc-nm nm], [:]) | |
48 | AC_CHECK_TOOLS([RANLIB], [gcc-ranlib ranlib], [:]) | |
49 | ]) | |
4fecbe59 | 50 | |
3e214785 | 51 | LT_PREREQ(2.2) |
8666abb4 | 52 | LT_INIT([disable-static]) |
47be870b | 53 | |
5e63ce78 | 54 | AS_IF([test "x$enable_static" = "xyes"], [AC_MSG_ERROR([--enable-static is not supported by systemd])]) |
3d585edb | 55 | AS_IF([test "x$enable_largefile" = "xno"], [AC_MSG_ERROR([--disable-largefile is not supported by systemd])]) |
5e63ce78 | 56 | |
0fa2cac4 KS |
57 | SET_ARCH(X86_64, x86_64*) |
58 | SET_ARCH(IA32, i*86*) | |
59 | SET_ARCH(MIPS, mips*) | |
4c6abc93 | 60 | SET_ARCH(AARCH64, aarch64*) |
f15515b5 | 61 | |
0fa2cac4 | 62 | # i18n stuff for the PolicyKit policy files, heck whether intltool can be found, disable NLS otherwise |
f15515b5 FB |
63 | AC_CHECK_PROG(intltool_found, [intltool-merge], [yes], [no]) |
64 | AS_IF([test x"$intltool_found" != xyes], | |
65 | [AS_IF([test x"$enable_nls" = xyes], | |
66 | [AC_MSG_ERROR([--enable-nls requested but intltool not found])], | |
67 | [AS_IF([test x"$enable_nls" != xno], | |
68 | [AC_MSG_WARN([*** Disabling NLS support because intltool was not found]) | |
69 | enable_nls=no]) | |
70 | ]) | |
71 | ]) | |
72 | ||
2f96919b | 73 | AM_NLS |
a59f16ce | 74 | AS_IF([test x"$enable_nls" != xno -o "x$enable_polkit" != xno], [ |
2f96919b | 75 | # intltoolize greps for '^(AC|IT)_PROG_INTLTOOL', so it needs to be on its own line |
1c7dde3e | 76 | IT_PROG_INTLTOOL([0.40.0]) |
2f96919b FB |
77 | ]) |
78 | ||
79 | AS_IF([test -z "$INTLTOOL_POLICY_RULE"], [ | |
80 | # If intltool is not available, provide a dummy rule to fail generation of %.policy files with a meaningful error message | |
81 | INTLTOOL_POLICY_RULE='%.policy: %.policy.in ; @echo " ITMRG " $@ && echo "*** intltool support required to build target $@" && false' | |
82 | AC_SUBST(INTLTOOL_POLICY_RULE) | |
83 | ]) | |
1c7dde3e BN |
84 | |
85 | GETTEXT_PACKAGE=systemd | |
86 | AC_SUBST(GETTEXT_PACKAGE) | |
20f56fdd | 87 | AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [systemd]) |
1c7dde3e | 88 | |
e9da3678 LP |
89 | AC_PROG_MKDIR_P |
90 | AC_PROG_LN_S | |
91 | AC_PROG_SED | |
3ce4fad8 | 92 | AC_PROG_GREP |
f975e971 | 93 | AC_PROG_AWK |
e9da3678 | 94 | |
3e214785 | 95 | AC_PATH_PROG([M4], [m4]) |
92ec4495 | 96 | |
2d0efdf1 SS |
97 | AC_PATH_PROG([QUOTAON], [quotaon], [/usr/sbin/quotaon], [$PATH:/usr/sbin:/sbin]) |
98 | AC_PATH_PROG([QUOTACHECK], [quotacheck], [/usr/sbin/quotacheck], [$PATH:/usr/sbin:/sbin]) | |
b51fc639 | 99 | |
dd5ae4c3 PK |
100 | AC_PATH_PROG([SETCAP], [setcap], [/usr/sbin/setcap], [$PATH:/usr/sbin:/sbin]) |
101 | ||
2d0efdf1 | 102 | AC_PATH_PROG([KILL], [kill], [/usr/bin/kill], [$PATH:/usr/sbin:/sbin]) |
96ede260 | 103 | |
2d0efdf1 | 104 | AC_PATH_PROG([KMOD], [kmod], [/usr/bin/kmod], [$PATH:/usr/sbin:/sbin]) |
edeb68c5 | 105 | |
2d0efdf1 | 106 | AC_PATH_PROG([KEXEC], [kexec], [/usr/sbin/kexec], [$PATH:/usr/sbin:/sbin]) |
78013564 | 107 | |
66b0e0e0 CR |
108 | AC_PATH_PROG([SULOGIN], [sulogin], [/usr/sbin/sulogin], [$PATH:/usr/sbin:/sbin]) |
109 | ||
f00929ad DJL |
110 | AC_PATH_PROG([MOUNT_PATH], [mount], [/usr/bin/mount], [$PATH:/usr/sbin:/sbin]) |
111 | AC_PATH_PROG([UMOUNT_PATH], [umount], [/usr/bin/umount], [$PATH:/usr/sbin:/sbin]) | |
112 | ||
44688352 LP |
113 | AS_IF([! ln --relative --help > /dev/null 2>&1], [AC_MSG_ERROR([*** ln doesn't support --relative ***])]) |
114 | ||
4acbce79 ZJS |
115 | M4_DEFINES= |
116 | ||
c4a77bcb | 117 | AC_CHECK_TOOL(OBJCOPY, objcopy) |
ac714a78 MJ |
118 | AC_CHECK_TOOL(STRINGS, strings) |
119 | AC_CHECK_TOOL(GPERF, gperf) | |
b62cfcea MB |
120 | if test -z "$GPERF" ; then |
121 | AC_MSG_ERROR([*** gperf not found]) | |
122 | fi | |
9a60da28 | 123 | |
732bfe09 ZJS |
124 | # ------------------------------------------------------------------------------ |
125 | address_sanitizer_cflags= | |
126 | address_sanitizer_cppflags= | |
127 | address_sanitizer_ldflags= | |
128 | AC_ARG_ENABLE(address-sanitizer, AS_HELP_STRING([--enable-address-sanitizer], [enable -fsanitize=address])) | |
129 | AS_IF([test "x$enable_address_sanitizer" = "xyes"], [ | |
130 | CC_CHECK_FLAG_APPEND([with_as_cflags], [CFLAGS], [-fsanitize=address]) | |
131 | AS_IF([test -z "$with_as_cflags"], | |
132 | [AC_MSG_ERROR([*** -fsanitize=address is not supported])]) | |
133 | address_sanitizer_cflags="$with_as_cflags -fno-omit-frame-pointer -DVALGRIND=1" | |
134 | address_sanitizer_cppflags="-DVALGRIND=1" | |
135 | address_sanitizer_ldflags="-Wc,-fsanitize=address" | |
136 | ]) | |
137 | ||
ae0ceefc ZJS |
138 | undefined_sanitizer_cflags= |
139 | undefined_sanitizer_cppflags= | |
140 | undefined_sanitizer_ldflags= | |
141 | AC_ARG_ENABLE(undefined-sanitizer, AS_HELP_STRING([--enable-undefined-sanitizer], [enable -fsanitize=undefined])) | |
142 | AS_IF([test "x$enable_undefined_sanitizer" = "xyes"], [ | |
143 | CC_CHECK_FLAG_APPEND([with_us_cflags], [CFLAGS], [-fsanitize=undefined]) | |
144 | AS_IF([test -z "$with_us_cflags"], | |
145 | [AC_MSG_ERROR([*** -fsanitize=undefined is not supported])]) | |
146 | undefined_sanitizer_cflags="$with_us_cflags -fno-omit-frame-pointer -DVALGRIND=1" | |
147 | undefined_sanitizer_cppflags="-DVALGRIND=1" | |
148 | undefined_sanitizer_ldflags="-Wc,-fsanitize=undefined" | |
149 | ]) | |
150 | ||
151 | sanitizer_cflags="$address_sanitizer_cflags $undefined_sanitizer_cflags" | |
152 | sanitizer_cppflags="$address_sanitizer_cppflags $undefined_sanitizer_cppflags" | |
153 | sanitizer_ldflags="$address_sanitizer_ldflags $undefined_sanitizer_ldflags" | |
154 | ||
eb2e280f | 155 | CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\ |
be1a67d9 | 156 | -pipe \ |
d1ab0ca0 | 157 | -Wall \ |
d1ab0ca0 | 158 | -Wextra \ |
d1ab0ca0 | 159 | -Wundef \ |
780040dc | 160 | "-Wformat=2 -Wformat-security -Wformat-nonliteral" \ |
d1ab0ca0 | 161 | -Wlogical-op \ |
d1ab0ca0 | 162 | -Wmissing-include-dirs \ |
d1ab0ca0 LP |
163 | -Wold-style-definition \ |
164 | -Wpointer-arith \ | |
165 | -Winit-self \ | |
03930e48 | 166 | -Wdeclaration-after-statement \ |
d1ab0ca0 | 167 | -Wfloat-equal \ |
693eb9a2 | 168 | -Wsuggest-attribute=noreturn \ |
8dc31a63 DM |
169 | -Werror=missing-prototypes \ |
170 | -Werror=implicit-function-declaration \ | |
171 | -Werror=missing-declarations \ | |
172 | -Werror=return-type \ | |
d1ab0ca0 LP |
173 | -Wstrict-prototypes \ |
174 | -Wredundant-decls \ | |
d1ab0ca0 LP |
175 | -Wmissing-noreturn \ |
176 | -Wshadow \ | |
177 | -Wendif-labels \ | |
d1ab0ca0 LP |
178 | -Wstrict-aliasing=2 \ |
179 | -Wwrite-strings \ | |
180 | -Wno-unused-parameter \ | |
be1a67d9 | 181 | -Wno-missing-field-initializers \ |
f73fb7b7 | 182 | -Wno-unused-result \ |
0a98d661 | 183 | -Wno-format-signedness \ |
d200735e | 184 | -Werror=overflow \ |
213298fb | 185 | -Wdate-time \ |
693eb9a2 | 186 | -Wnested-externs \ |
be1a67d9 | 187 | -ffast-math \ |
d1ab0ca0 LP |
188 | -fno-common \ |
189 | -fdiagnostics-show-option \ | |
9b85fc6a GSB |
190 | -fno-strict-aliasing \ |
191 | -fvisibility=hidden \ | |
c1663b9d | 192 | -fstack-protector \ |
aca33b07 | 193 | -fstack-protector-strong \ |
2a4d1ec1 | 194 | -fPIE \ |
c1663b9d | 195 | --param=ssp-buffer-size=4]) |
4f47bb8c | 196 | |
a01a4517 FB |
197 | CC_CHECK_FLAG_APPEND([with_cflags], [CFLAGS], [-Werror=shadow], [ |
198 | #include <time.h> | |
199 | #include <inttypes.h> | |
200 | typedef uint64_t usec_t; | |
201 | usec_t now(clockid_t clock); | |
202 | int main(void) { | |
203 | struct timespec now; | |
204 | return 0; | |
205 | } | |
206 | ]) | |
207 | ||
4f47bb8c ZJS |
208 | AS_CASE([$CC], [*clang*], |
209 | [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\ | |
65e3a2cf ZJS |
210 | -Wno-typedef-redefinition \ |
211 | -Wno-gnu-variable-sized-type-not-at-end \ | |
212 | ])]) | |
4f47bb8c | 213 | |
4e3382bd DC |
214 | AC_ARG_ENABLE([lto], [AS_HELP_STRING([--disable-lto], [disable -flto])], |
215 | [], [enable_lto=yes]) | |
0289f2fb | 216 | AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*], |
4e3382bd DC |
217 | [AS_IF([test "x$enable_lto" = "xyes"], |
218 | [CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [-flto])], | |
219 | [AC_MSG_RESULT([disabling -flto as requested])])], | |
b850b06e | 220 | [AC_MSG_RESULT([skipping -flto, optimization not enabled])]) |
ae0ceefc | 221 | AC_SUBST([OUR_CFLAGS], "$with_cflags $sanitizer_cflags") |
5a45a936 | 222 | |
0289f2fb | 223 | AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*], |
a6c0b31d ZJS |
224 | [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\ |
225 | -Wp,-D_FORTIFY_SOURCE=2])], | |
226 | [AC_MSG_RESULT([skipping -D_FORTIFY_SOURCE, optimization not enabled])]) | |
ae0ceefc | 227 | AC_SUBST([OUR_CPPFLAGS], "$with_cppflags $sanitizer_cppflags") |
9e7adc3a | 228 | |
2b4919a6 KS |
229 | AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*], |
230 | [CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\ | |
231 | -Wl,--gc-sections])], | |
232 | [AC_MSG_RESULT([skipping --gc-sections, optimization not enabled])]) | |
233 | AC_SUBST([OUR_CFLAGS], "$with_ldflags $sanitizer_cflags") | |
234 | ||
235 | AS_CASE([$CFLAGS], [*-O[[12345sz\ ]]*], | |
236 | [CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\ | |
237 | -ffunction-sections -fdata-sections])], | |
238 | [AC_MSG_RESULT([skipping -ffunction/data-section, optimization not enabled])]) | |
239 | AC_SUBST([OUR_CFLAGS], "$with_cflags $sanitizer_cflags") | |
240 | ||
9e7adc3a | 241 | CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\ |
9b85fc6a | 242 | -Wl,--as-needed \ |
9d2d0fe1 | 243 | -Wl,--no-undefined \ |
5a45a936 | 244 | -Wl,-z,relro \ |
39c4ead2 | 245 | -Wl,-z,now \ |
2a4d1ec1 | 246 | -pie \ |
39c4ead2 | 247 | -Wl,-fuse-ld=gold]) |
ae0ceefc | 248 | AC_SUBST([OUR_LDFLAGS], "$with_ldflags $sanitizer_ldflags") |
47be870b | 249 | |
ccd06097 ZJS |
250 | AC_CHECK_SIZEOF(pid_t) |
251 | AC_CHECK_SIZEOF(uid_t) | |
1c231f56 | 252 | AC_CHECK_SIZEOF(gid_t) |
de0671ee | 253 | AC_CHECK_SIZEOF(time_t) |
de99c9dc | 254 | AC_CHECK_SIZEOF(dev_t) |
7bce046b | 255 | AC_CHECK_SIZEOF(ino_t) |
de0671ee ZJS |
256 | AC_CHECK_SIZEOF(rlim_t,,[ |
257 | #include <sys/time.h> | |
258 | #include <sys/resource.h> | |
259 | ]) | |
ccd06097 | 260 | |
c937e0d5 | 261 | # ------------------------------------------------------------------------------ |
2799e519 | 262 | # we use python to build the man page index |
c937e0d5 | 263 | have_python=no |
c937e0d5 ZJS |
264 | AC_ARG_WITH([python], |
265 | [AS_HELP_STRING([--without-python], [Disable building the man page index and systemd-python (default: test)])]) | |
266 | ||
32dcef3a | 267 | have_lxml=no |
c937e0d5 ZJS |
268 | AS_IF([test "x$with_python" != "xno"], [ |
269 | AM_PATH_PYTHON(,, [:]) | |
be8737ae FB |
270 | AS_IF([test "x$PYTHON" != "x:"], [ |
271 | AC_MSG_CHECKING([for python lxml module]) | |
272 | AS_IF(["$PYTHON" -c 'import lxml' 2>/dev/null], [have_lxml=yes]) | |
273 | AC_MSG_RESULT([$have_lxml]) | |
274 | AS_IF([test "x$have_lxml" = "xyes"], [have_python=yes], | |
275 | [AC_MSG_WARN([*** python support requires python-lxml module installed])]) | |
276 | ]) | |
c937e0d5 | 277 | ]) |
747cf8cd ZJS |
278 | AS_IF([test "$have_python" != "yes"], [ |
279 | AS_IF([test "$with_python" = "yes"], | |
280 | [AC_MSG_ERROR([*** python support requested but python support not found])]) | |
281 | AS_IF([test "$with_python" != "no"], | |
282 | [AC_MSG_WARN([*** python support not found, some documentation cannot be built])]) | |
283 | ]) | |
c937e0d5 | 284 | AM_CONDITIONAL([HAVE_PYTHON], [test "x$have_python" = "xyes"]) |
c937e0d5 ZJS |
285 | |
286 | # ------------------------------------------------------------------------------ | |
287 | ||
7959ff99 | 288 | AC_CHECK_HEADERS([sys/capability.h], [], [AC_MSG_ERROR([*** POSIX caps headers not found])]) |
4b357e15 | 289 | AC_CHECK_HEADERS([linux/btrfs.h], [], []) |
27c64db6 | 290 | AC_CHECK_HEADERS([linux/memfd.h], [], []) |
7959ff99 KS |
291 | |
292 | # unconditionally pull-in librt with old glibc versions | |
293 | AC_SEARCH_LIBS([clock_gettime], [rt], [], []) | |
85f19d82 MB |
294 | |
295 | save_LIBS="$LIBS" | |
296 | LIBS= | |
47be870b | 297 | AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])]) |
85f19d82 | 298 | CAP_LIBS="$LIBS" |
5fd2e228 | 299 | LIBS="$save_LIBS" |
7959ff99 KS |
300 | AC_SUBST(CAP_LIBS) |
301 | ||
4db17f29 | 302 | AC_CHECK_FUNCS([__secure_getenv secure_getenv]) |
1d4b557d ZJS |
303 | AC_CHECK_DECLS([ |
304 | memfd_create, | |
305 | gettid, | |
306 | pivot_root, | |
307 | name_to_handle_at, | |
308 | setns, | |
309 | getrandom, | |
310 | renameat2, | |
311 | kcmp, | |
312 | keyctl, | |
313 | LO_FLAGS_PARTSCAN, | |
314 | copy_file_range], | |
315 | [], [], [[ | |
81577dc2 | 316 | #include <sys/types.h> |
a8348796 | 317 | #include <unistd.h> |
9388e99e | 318 | #include <sys/mount.h> |
3b794314 | 319 | #include <fcntl.h> |
5f381b35 | 320 | #include <sched.h> |
81577dc2 | 321 | #include <linux/loop.h> |
539618a0 | 322 | #include <linux/random.h> |
81577dc2 ZJS |
323 | ]]) |
324 | ||
de085700 LP |
325 | AC_CHECK_TYPES([char16_t, char32_t, key_serial_t], |
326 | [], [], [[ | |
327 | #include <uchar.h> | |
328 | ]]) | |
329 | ||
84dd59b5 | 330 | AC_CHECK_DECLS([IFLA_INET6_ADDR_GEN_MODE, |
f4f5e50a | 331 | IN6_ADDR_GEN_MODE_STABLE_PRIVACY, |
20897a0d | 332 | IFLA_VRF_TABLE, |
84dd59b5 | 333 | IFLA_MACVLAN_FLAGS, |
c4a5ddc9 | 334 | IFLA_IPVLAN_MODE, |
6589d0db | 335 | IFLA_VTI_REMOTE, |
75616a13 | 336 | IFLA_PHYS_PORT_ID, |
81577dc2 ZJS |
337 | IFLA_BOND_AD_INFO, |
338 | IFLA_VLAN_PROTOCOL, | |
583c14fc | 339 | IFLA_VXLAN_REMCSUM_NOPARTIAL, |
56bf3853 | 340 | IFLA_IPTUN_ENCAP_DPORT, |
66f4bc77 | 341 | IFLA_GRE_ENCAP_DPORT, |
8ecec322 | 342 | IFLA_BRIDGE_VLAN_INFO, |
26c34ab4 | 343 | IFLA_BRPORT_PROXYARP, |
38a0245f | 344 | IFLA_BRPORT_LEARNING_SYNC, |
3282493a | 345 | IFLA_BR_VLAN_DEFAULT_PVID, |
34f7b9f9 LP |
346 | NDA_IFINDEX, |
347 | IFA_FLAGS], | |
81577dc2 ZJS |
348 | [], [], [[ |
349 | #include <inttypes.h> | |
350 | #include <netinet/in.h> | |
351 | #include <netinet/ether.h> | |
352 | #include <linux/rtnetlink.h> | |
353 | #include <net/if.h> | |
354 | #include <linux/ip.h> | |
355 | #include <linux/if_tunnel.h> | |
356 | #include <linux/if_link.h> | |
357 | #include <linux/if_bridge.h> | |
34f7b9f9 | 358 | #include <linux/if_addr.h> |
cf1755ba | 359 | #include <linux/neighbour.h> |
81577dc2 | 360 | ]]) |
a8348796 | 361 | |
b237ef2c | 362 | # This makes sure pkg.m4 is available. |
a9b5b032 | 363 | m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config]) |
d1ab0ca0 | 364 | |
22703094 | 365 | # ------------------------------------------------------------------------------ |
ac6b760c ZJS |
366 | have_dbus=no |
367 | AC_ARG_ENABLE(dbus, AS_HELP_STRING([--disable-dbus], [disable usage of dbus-1 in tests])) | |
8114dedc | 368 | AS_IF([test "x$enable_dbus" != "xno"], [ |
ac6b760c ZJS |
369 | PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.3.2], |
370 | [AC_DEFINE(HAVE_DBUS, 1, [Define if dbus-1 library is available]) have_dbus=yes], | |
371 | [have_dbus=no]) | |
372 | AS_IF([test "x$have_dbus" = "xno" -a "x$enable_dbus" = "xyes"], | |
373 | [AC_MSG_ERROR([*** dbus-1 support requested but libraries not found])])]) | |
22703094 | 374 | AM_CONDITIONAL(HAVE_DBUS, [test "$have_dbus" = "yes"]) |
4b357e15 | 375 | |
37161c51 ERB |
376 | # ------------------------------------------------------------------------------ |
377 | have_utmp=yes | |
378 | AC_ARG_ENABLE([utmp], AS_HELP_STRING([--disable-utmp], [disable utmp/wtmp log handling]), | |
379 | AS_CASE("x${enableval}", | |
380 | [xyes], [have_utmp=yes], | |
381 | [xno], [have_utmp=no], | |
382 | AC_MSG_ERROR(bad value ${enableval} for --enable-utmp))) | |
383 | AS_IF([test "x$have_utmp" = "xyes"], [AC_DEFINE(HAVE_UTMP, 1, [Define if utmp/wtmp support is enabled])]) | |
384 | AM_CONDITIONAL([HAVE_UTMP], [test "x$have_utmp" = "xyes"]) | |
385 | ||
6aea6d10 TA |
386 | # ------------------------------------------------------------------------------ |
387 | have_coverage=no | |
388 | AC_ARG_ENABLE(coverage, AS_HELP_STRING([--enable-coverage], [enable test coverage])) | |
389 | if test "x$enable_coverage" = "xyes" ; then | |
390 | AC_CHECK_PROG(lcov_found, [lcov], [yes], [no]) | |
391 | if test "x$lcov_found" = xno ; then | |
392 | AC_MSG_ERROR([*** lcov support requested but the program was not found]) | |
393 | else | |
394 | lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`" | |
395 | lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`" | |
396 | if test "$lcov_version_major" -eq 1 -a "$lcov_version_minor" -lt 10; then | |
397 | AC_MSG_ERROR([*** lcov version is too old. 1.10 required]) | |
398 | else | |
399 | have_coverage=yes | |
400 | CC_CHECK_FLAGS_APPEND([with_coverage_cflags], [CFLAGS], [\ | |
401 | -fprofile-arcs \ | |
402 | -ftest-coverage]) | |
403 | AC_SUBST([OUR_CFLAGS], "$with_cflags $with_coverage_cflags") | |
404 | fi | |
405 | fi | |
406 | fi | |
407 | AM_CONDITIONAL(ENABLE_COVERAGE, [test "$have_coverage" = "yes"]) | |
408 | ||
e3043162 TG |
409 | # ------------------------------------------------------------------------------ |
410 | have_kmod=no | |
411 | AC_ARG_ENABLE(kmod, AS_HELP_STRING([--disable-kmod], [disable loadable modules support])) | |
412 | if test "x$enable_kmod" != "xno"; then | |
e2ca86cf DR |
413 | PKG_CHECK_EXISTS([ libkmod ], have_kmod=yes, have_kmod=no) |
414 | if test "x$have_kmod" = "xyes"; then | |
a18535d9 | 415 | PKG_CHECK_MODULES(KMOD, [ libkmod >= 15 ], |
e2ca86cf | 416 | [AC_DEFINE(HAVE_KMOD, 1, [Define if kmod is available])], |
70d83209 | 417 | AC_MSG_ERROR([*** kmod version >= 15 not found])) |
e2ca86cf | 418 | fi |
e3043162 | 419 | if test "x$have_kmod" = xno -a "x$enable_kmod" = xyes; then |
c4955740 | 420 | AC_MSG_ERROR([*** kmod support requested, but libraries not found]) |
e3043162 TG |
421 | fi |
422 | fi | |
423 | AM_CONDITIONAL(HAVE_KMOD, [test "$have_kmod" = "yes"]) | |
f553b3b1 | 424 | |
d4f5a1f4 DH |
425 | # ------------------------------------------------------------------------------ |
426 | have_xkbcommon=no | |
427 | AC_ARG_ENABLE(xkbcommon, AS_HELP_STRING([--disable-xkbcommon], [disable xkbcommon keymap support])) | |
428 | if test "x$enable_xkbcommon" != "xno"; then | |
429 | PKG_CHECK_MODULES(XKBCOMMON, [ xkbcommon >= 0.3.0 ], | |
430 | [AC_DEFINE(HAVE_XKBCOMMON, 1, [Define if libxkbcommon is available]) have_xkbcommon=yes], have_xkbcommon=no) | |
431 | if test "x$have_xkbcommon" = xno -a "x$enable_xkbcommon" = xyes; then | |
432 | AC_MSG_ERROR([*** xkbcommon support requested but libraries not found]) | |
433 | fi | |
434 | fi | |
435 | AM_CONDITIONAL(HAVE_XKBCOMMON, [test "$have_xkbcommon" = "yes"]) | |
436 | ||
f553b3b1 AO |
437 | # ------------------------------------------------------------------------------ |
438 | have_blkid=no | |
439 | AC_ARG_ENABLE(blkid, AS_HELP_STRING([--disable-blkid], [disable blkid support])) | |
440 | if test "x$enable_blkid" != "xno"; then | |
d47f6ca5 | 441 | PKG_CHECK_MODULES(BLKID, [ blkid >= 2.24 ], |
f553b3b1 AO |
442 | [AC_DEFINE(HAVE_BLKID, 1, [Define if blkid is available]) have_blkid=yes], have_blkid=no) |
443 | if test "x$have_blkid" = xno -a "x$enable_blkid" = xyes; then | |
444 | AC_MSG_ERROR([*** blkid support requested but libraries not found]) | |
445 | fi | |
446 | fi | |
447 | AM_CONDITIONAL(HAVE_BLKID, [test "$have_blkid" = "yes"]) | |
728beb28 | 448 | |
8d3ae2bd CL |
449 | # ------------------------------------------------------------------------------ |
450 | have_libmount=no | |
8218743e | 451 | PKG_CHECK_MODULES(MOUNT, [ mount >= 2.27 ], |
8d3ae2bd CL |
452 | [AC_DEFINE(HAVE_LIBMOUNT, 1, [Define if libmount is available]) have_libmount=yes], have_libmount=no) |
453 | if test "x$have_libmount" = xno; then | |
454 | AC_MSG_ERROR([*** libmount support required but libraries not found]) | |
455 | fi | |
456 | AM_CONDITIONAL(HAVE_LIBMOUNT, [test "$have_libmount" = "yes"]) | |
457 | ||
c0467cf3 RC |
458 | # ------------------------------------------------------------------------------ |
459 | have_seccomp=no | |
460 | AC_ARG_ENABLE(seccomp, AS_HELP_STRING([--disable-seccomp], [Disable optional SECCOMP support])) | |
461 | if test "x$enable_seccomp" != "xno"; then | |
6abfd303 | 462 | PKG_CHECK_MODULES(SECCOMP, [libseccomp >= 2.3.1], |
17df7223 LP |
463 | [AC_DEFINE(HAVE_SECCOMP, 1, [Define if seccomp is available]) |
464 | have_seccomp=yes | |
465 | M4_DEFINES="$M4_DEFINES -DHAVE_SECCOMP"], | |
c0467cf3 RC |
466 | [have_seccomp=no]) |
467 | if test "x$have_seccomp" = "xno" -a "x$enable_seccomp" = "xyes"; then | |
468 | AC_MSG_ERROR([*** seccomp support requested but libraries not found]) | |
469 | fi | |
470 | fi | |
471 | AM_CONDITIONAL(HAVE_SECCOMP, [test "$have_seccomp" = "yes"]) | |
472 | ||
3e214785 | 473 | # ------------------------------------------------------------------------------ |
81611586 RS |
474 | have_ima=yes |
475 | AC_ARG_ENABLE([ima], AS_HELP_STRING([--disable-ima],[Disable optional IMA support]), | |
476 | [case "${enableval}" in | |
477 | yes) have_ima=yes ;; | |
478 | no) have_ima=no ;; | |
479 | *) AC_MSG_ERROR(bad value ${enableval} for --disable-ima) ;; | |
480 | esac], | |
481 | [have_ima=yes]) | |
482 | ||
483 | if test "x${have_ima}" != xno ; then | |
484 | AC_DEFINE(HAVE_IMA, 1, [Define if IMA is available]) | |
485 | fi | |
486 | ||
3e214785 | 487 | # ------------------------------------------------------------------------------ |
591622d7 LP |
488 | have_selinux=no |
489 | AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support])) | |
490 | if test "x$enable_selinux" != "xno"; then | |
3f8cc098 | 491 | PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9], |
6a6751fe LP |
492 | [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available]) |
493 | have_selinux=yes | |
494 | M4_DEFINES="$M4_DEFINES -DHAVE_SELINUX"], | |
495 | [have_selinux=no]) | |
591622d7 LP |
496 | if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then |
497 | AC_MSG_ERROR([*** SELinux support requested but libraries not found]) | |
498 | fi | |
56cf987f | 499 | fi |
591622d7 | 500 | AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"]) |
45df1f2c | 501 | |
eef65bf3 MS |
502 | have_apparmor=no |
503 | AC_ARG_ENABLE(apparmor, AS_HELP_STRING([--disable-apparmor], [Disable optional AppArmor support])) | |
504 | if test "x$enable_apparmor" != "xno"; then | |
505 | PKG_CHECK_MODULES([APPARMOR], [libapparmor], | |
506 | [AC_DEFINE(HAVE_APPARMOR, 1, [Define if AppArmor is available]) | |
507 | have_apparmor=yes | |
508 | M4_DEFINES="$M4_DEFINES -DHAVE_APPARMOR"], | |
509 | [have_apparmor=no]) | |
510 | if test "x$have_apparmor" = xno -a "x$enable_apparmor" = xyes; then | |
511 | AC_MSG_ERROR([*** AppArmor support requested but libraries not found]) | |
512 | fi | |
513 | fi | |
514 | AM_CONDITIONAL(HAVE_APPARMOR, [test "$have_apparmor" = "yes"]) | |
515 | ||
7178cd76 FB |
516 | have_adm_group=no |
517 | AC_ARG_ENABLE(adm-group, AS_HELP_STRING([--disable-adm-group], [disable adm group])) | |
518 | AS_IF([test "x$enable_adm_group" != "xno"], [ | |
519 | AC_DEFINE(ENABLE_ADM_GROUP, 1, [Define if the ACL for adm group should be enabled]) | |
520 | have_adm_group=yes | |
521 | M4_DEFINES="$M4_DEFINES -DENABLE_ADM_GROUP" | |
522 | ]) | |
523 | ||
2a998ffa ZJS |
524 | have_wheel_group=no |
525 | AC_ARG_ENABLE(wheel-group, AS_HELP_STRING([--disable-wheel-group], [disable wheel group])) | |
526 | AS_IF([test "x$enable_wheel_group" != "xno"], [ | |
527 | AC_DEFINE(ENABLE_WHEEL_GROUP, 1, [Define if the ACL for wheel group should be enabled]) | |
528 | have_wheel_group=yes | |
529 | M4_DEFINES="$M4_DEFINES -DENABLE_WHEEL_GROUP" | |
530 | ]) | |
531 | ||
eef65bf3 | 532 | |
45df1f2c CR |
533 | AC_ARG_WITH(debug-shell, |
534 | AS_HELP_STRING([--with-debug-shell=PATH], | |
535 | [Path to debug shell binary]), | |
536 | [SUSHELL="$withval"],[ | |
537 | AS_IF([test "x${have_selinux}" != "xno"], [SUSHELL="/sbin/sushell"] , [SUSHELL="/bin/sh"])]) | |
538 | ||
5ec6b15b | 539 | AC_SUBST(SUSHELL) |
56cf987f | 540 | |
45df1f2c CR |
541 | AC_ARG_WITH([debug-tty], |
542 | AS_HELP_STRING([--with-debug-tty=PATH], | |
543 | [Specify the tty device for debug shell]), | |
544 | [DEBUGTTY="$withval"], | |
545 | [DEBUGTTY=/dev/tty9]) | |
546 | ||
547 | AC_SUBST(DEBUGTTY) | |
548 | ||
ad95fd1d ZJS |
549 | AC_ARG_WITH([certificate-root], |
550 | AS_HELP_STRING([--with-certificate-root=PATH], | |
551 | [Specify the prefix for TLS certificates [/etc/ssl]]), | |
552 | [CERTIFICATEROOT="$withval"], | |
553 | [CERTIFICATEROOT="/etc/ssl"]) | |
554 | ||
555 | AC_SUBST(CERTIFICATEROOT) | |
556 | ||
4b930ded LP |
557 | AC_ARG_WITH([support-url], |
558 | AS_HELP_STRING([--with-support-url=URL], | |
2129011e | 559 | [Specify the support URL to show in catalog entries included in systemd]), |
4b930ded LP |
560 | [SUPPORT_URL="$withval"], |
561 | [SUPPORT_URL=http://lists.freedesktop.org/mailman/listinfo/systemd-devel]) | |
562 | ||
563 | AC_SUBST(SUPPORT_URL) | |
564 | ||
2129011e LP |
565 | AC_ARG_WITH([nobody-user], |
566 | AS_HELP_STRING([--with-nobody-user=NAME], | |
567 | [Specify the name of the nobody user (the one with UID 65534)]), | |
568 | [NOBODY_USER_NAME="$withval"], | |
569 | [NOBODY_USER_NAME=nobody]) | |
570 | ||
571 | AC_SUBST(NOBODY_USER_NAME) | |
572 | AC_DEFINE_UNQUOTED(NOBODY_USER_NAME, ["$NOBODY_USER_NAME"], [The name of the nobody user (the one with UID 65534)]) | |
573 | ||
574 | AC_ARG_WITH([nobody-group], | |
575 | AS_HELP_STRING([--with-nobody-group=NAME], | |
576 | [Specify the name of the nobody group (the one with GID 65534)]), | |
577 | [NOBODY_GROUP_NAME="$withval"], | |
578 | [NOBODY_GROUP_NAME=nobody]) | |
579 | ||
580 | AC_SUBST(NOBODY_GROUP_NAME) | |
581 | AC_DEFINE_UNQUOTED(NOBODY_GROUP_NAME, ["$NOBODY_GROUP_NAME"], [The name of the nobody group (the one with GID 65534)]) | |
582 | ||
3e214785 | 583 | # ------------------------------------------------------------------------------ |
807e17f0 LP |
584 | have_xz=no |
585 | AC_ARG_ENABLE(xz, AS_HELP_STRING([--disable-xz], [Disable optional XZ support])) | |
1a2a0ac5 | 586 | AS_IF([test "x$enable_xz" != "xno"], [ |
807e17f0 | 587 | PKG_CHECK_MODULES(XZ, [ liblzma ], |
1a2a0ac5 ZJS |
588 | [AC_DEFINE(HAVE_XZ, 1, [Define if XZ is available]) |
589 | have_xz=yes], | |
590 | have_xz=no) | |
591 | AS_IF([test "x$have_xz" = xno -a "x$enable_xz" = xyes], | |
592 | [AC_MSG_ERROR([*** XZ support requested but libraries not found])]) | |
593 | ]) | |
807e17f0 LP |
594 | AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"]) |
595 | ||
edce2aed LP |
596 | # ------------------------------------------------------------------------------ |
597 | have_zlib=no | |
598 | AC_ARG_ENABLE(zlib, AS_HELP_STRING([--disable-zlib], [Disable optional ZLIB support])) | |
1a2a0ac5 | 599 | AS_IF([test "x$enable_zlib" != "xno"], [ |
edce2aed | 600 | PKG_CHECK_MODULES(ZLIB, [ zlib ], |
1a2a0ac5 ZJS |
601 | [AC_DEFINE(HAVE_ZLIB, 1, [Define if ZLIB is available]) |
602 | have_zlib=yes], | |
603 | have_zlib=no) | |
604 | AS_IF([test "x$have_zlib" = xno -a "x$enable_zlib" = xyes], | |
605 | [AC_MSG_ERROR([*** ZLIB support requested but libraries not found])]) | |
606 | ]) | |
edce2aed LP |
607 | AM_CONDITIONAL(HAVE_ZLIB, [test "$have_zlib" = "yes"]) |
608 | ||
8af3cf74 LP |
609 | # ------------------------------------------------------------------------------ |
610 | have_bzip2=no | |
ccbd697b | 611 | AC_ARG_ENABLE(bzip2, AS_HELP_STRING([--enable-bzip2], [Enable optional BZIP2 support])) |
8af3cf74 LP |
612 | AS_IF([test "x$enable_bzip2" != "xno"], [ |
613 | AC_CHECK_HEADERS(bzlib.h, | |
1a2a0ac5 | 614 | [AC_DEFINE(HAVE_BZIP2, 1, [Define if BZIP2 is available]) |
831f18cb | 615 | have_bzip2=yes], |
1a2a0ac5 ZJS |
616 | [AS_IF([test "x$enable_bzip2" = xyes], |
617 | [AC_MSG_ERROR([*** BZIP2 support requested but headers not found])])] | |
618 | ) | |
8af3cf74 LP |
619 | ]) |
620 | AM_CONDITIONAL(HAVE_BZIP2, [test "$have_bzip2" = "yes"]) | |
621 | ||
d89c8fdf ZJS |
622 | # ------------------------------------------------------------------------------ |
623 | have_lz4=no | |
1a2a0ac5 ZJS |
624 | AC_ARG_ENABLE(lz4, AS_HELP_STRING([--disable-lz4], [Disable optional LZ4 support])) |
625 | AS_IF([test "x$enable_lz4" != "xno"], [ | |
898d5660 | 626 | PKG_CHECK_MODULES(LZ4, [ liblz4 >= 125 ], |
1a2a0ac5 ZJS |
627 | [AC_DEFINE(HAVE_LZ4, 1, [Define in LZ4 is available]) |
628 | have_lz4=yes], | |
629 | have_lz4=no) | |
630 | AS_IF([test "x$have_lz4" = xno -a "x$enable_lz4" = xyes], | |
631 | [AC_MSG_ERROR([*** LZ4 support requested but libraries not found])]) | |
d89c8fdf ZJS |
632 | ]) |
633 | AM_CONDITIONAL(HAVE_LZ4, [test "$have_lz4" = "yes"]) | |
634 | ||
3b1a55e1 ZJS |
635 | AM_CONDITIONAL(HAVE_COMPRESSION, [test "$have_xz" = "yes" -o "$have_lz4" = "yes"]) |
636 | ||
3e214785 | 637 | # ------------------------------------------------------------------------------ |
5b6319dc LP |
638 | AC_ARG_ENABLE([pam], |
639 | AS_HELP_STRING([--disable-pam],[Disable optional PAM support]), | |
640 | [case "${enableval}" in | |
641 | yes) have_pam=yes ;; | |
642 | no) have_pam=no ;; | |
643 | *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;; | |
644 | esac], | |
645 | [have_pam=auto]) | |
646 | ||
647 | if test "x${have_pam}" != xno ; then | |
648 | AC_CHECK_HEADERS( | |
649 | [security/pam_modules.h security/pam_modutil.h security/pam_ext.h], | |
650 | [have_pam=yes], | |
651 | [if test "x$have_pam" = xyes ; then | |
652 | AC_MSG_ERROR([*** PAM headers not found.]) | |
653 | fi]) | |
654 | ||
655 | AC_CHECK_LIB( | |
656 | [pam], | |
657 | [pam_syslog], | |
658 | [have_pam=yes], | |
659 | [if test "x$have_pam" = xyes ; then | |
660 | AC_MSG_ERROR([*** libpam not found.]) | |
661 | fi]) | |
662 | ||
663 | if test "x$have_pam" = xyes ; then | |
664 | PAM_LIBS="-lpam -lpam_misc" | |
665 | AC_DEFINE(HAVE_PAM, 1, [PAM available]) | |
6a6751fe | 666 | M4_DEFINES="$M4_DEFINES -DHAVE_PAM" |
812cce32 LP |
667 | else |
668 | have_pam=no | |
5b6319dc LP |
669 | fi |
670 | else | |
671 | PAM_LIBS= | |
672 | fi | |
673 | AC_SUBST(PAM_LIBS) | |
674 | AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno]) | |
675 | ||
3e214785 | 676 | # ------------------------------------------------------------------------------ |
5eda94dd LP |
677 | AC_ARG_ENABLE([acl], |
678 | AS_HELP_STRING([--disable-acl],[Disable optional ACL support]), | |
679 | [case "${enableval}" in | |
680 | yes) have_acl=yes ;; | |
681 | no) have_acl=no ;; | |
682 | *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;; | |
683 | esac], | |
684 | [have_acl=auto]) | |
685 | ||
686 | if test "x${have_acl}" != xno ; then | |
687 | AC_CHECK_HEADERS( | |
688 | [sys/acl.h acl/libacl.h], | |
689 | [have_acl=yes], | |
690 | [if test "x$have_acl" = xyes ; then | |
691 | AC_MSG_ERROR([*** ACL headers not found.]) | |
692 | fi]) | |
693 | ||
694 | AC_CHECK_LIB( | |
695 | [acl], | |
696 | [acl_get_file], | |
697 | [have_acl=yes], | |
698 | [if test "x$have_acl" = xyes ; then | |
699 | AC_MSG_ERROR([*** libacl not found.]) | |
700 | fi]) | |
701 | ||
702 | if test "x$have_acl" = xyes ; then | |
703 | ACL_LIBS="-lacl" | |
704 | AC_DEFINE(HAVE_ACL, 1, [ACL available]) | |
a48a62a1 | 705 | M4_DEFINES="$M4_DEFINES -DHAVE_ACL" |
5eda94dd LP |
706 | else |
707 | have_acl=no | |
708 | fi | |
709 | else | |
710 | ACL_LIBS= | |
711 | fi | |
712 | AC_SUBST(ACL_LIBS) | |
713 | AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno]) | |
714 | ||
2b3e18de KL |
715 | # ------------------------------------------------------------------------------ |
716 | AC_ARG_ENABLE([smack], AS_HELP_STRING([--disable-smack],[Disable optional SMACK support]), | |
717 | [case "${enableval}" in | |
718 | yes) have_smack=yes ;; | |
719 | no) have_smack=no ;; | |
720 | *) AC_MSG_ERROR(bad value ${enableval} for --disable-smack) ;; | |
721 | esac], | |
722 | [have_smack=auto]) | |
723 | ||
566c9f5a | 724 | if test "x${have_smack}" != xno; then |
c0957da3 | 725 | AC_DEFINE(HAVE_SMACK, 1, [Define if SMACK is available]) |
d2edfae0 KS |
726 | M4_DEFINES="$M4_DEFINES -DHAVE_SMACK" |
727 | have_smack=yes | |
2b3e18de KL |
728 | fi |
729 | ||
c0957da3 EV |
730 | AM_CONDITIONAL([HAVE_SMACK], [test "x$have_smack" = "xyes"]) |
731 | ||
1fab0cba | 732 | have_smack_run_label=no |
8b197c3a AK |
733 | AC_ARG_WITH(smack-run-label, |
734 | AS_HELP_STRING([--with-smack-run-label=STRING], | |
e174dce2 | 735 | [run systemd --system itself with a specific SMACK label]), |
1fab0cba | 736 | [AC_DEFINE_UNQUOTED(SMACK_RUN_LABEL, ["$withval"], [Run systemd itself with SMACK label]) have_smack_run_label=yes], |
e174dce2 WC |
737 | []) |
738 | ||
1fab0cba SW |
739 | if test "x${have_smack_run_label}" = xyes; then |
740 | M4_DEFINES="$M4_DEFINES -DHAVE_SMACK_RUN_LABEL" | |
741 | fi | |
742 | ||
e174dce2 WC |
743 | AC_ARG_WITH(smack-default-process-label, |
744 | AS_HELP_STRING([--with-smack-default-process-label=STRING], | |
745 | [default SMACK label for executed processes]), | |
746 | [AC_DEFINE_UNQUOTED(SMACK_DEFAULT_PROCESS_LABEL, ["$withval"], [Default SMACK label for executed processes])], | |
8b197c3a AK |
747 | []) |
748 | ||
7560fffc | 749 | # ------------------------------------------------------------------------------ |
feb12d3e | 750 | AC_ARG_ENABLE([gcrypt], |
7560fffc LP |
751 | AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]), |
752 | [case "${enableval}" in | |
753 | yes) have_gcrypt=yes ;; | |
754 | no) have_gcrypt=no ;; | |
755 | *) AC_MSG_ERROR(bad value ${enableval} for --disable-gcrypt) ;; | |
756 | esac], | |
757 | [have_gcrypt=auto]) | |
758 | ||
759 | if test "x${have_gcrypt}" != xno ; then | |
79e8bde4 | 760 | m4_define([AM_PATH_LIBGCRYPT_FAIL], |
d28ac939 | 761 | [{ test "x$have_gcrypt" != xyes || AC_MSG_ERROR([*** GCRYPT/GPG-ERROR headers not found.]); }] |
79e8bde4 OJ |
762 | ) |
763 | m4_ifdef([AM_PATH_LIBGCRYPT], [AM_PATH_LIBGCRYPT( | |
764 | [1.4.5], | |
765 | [have_gcrypt=yes], | |
766 | dnl If we have the gcrypt m4 macros, but don't have | |
767 | dnl gcrypt, throw an error if gcrypt is explicitly | |
768 | dnl requested. | |
769 | [AM_PATH_LIBGCRYPT_FAIL] | |
770 | )], | |
771 | dnl If we don't have the gcrypt m4 macros, but build with | |
772 | dnl gcrypt explicitly requested, throw an error. | |
773 | [AM_PATH_LIBGCRYPT_FAIL] | |
774 | ) | |
7560fffc | 775 | |
d28ac939 LP |
776 | have_gpg_error=no |
777 | m4_ifdef([AM_PATH_GPG_ERROR], [AM_PATH_GPG_ERROR( | |
778 | [1.12], | |
779 | [have_gpg_error=yes], | |
780 | [AM_PATH_LIBGCRYPT_FAIL] | |
781 | )], | |
782 | [AM_PATH_LIBGCRYPT_FAIL] | |
783 | ) | |
784 | ||
785 | if test "x$have_gcrypt" = xyes -a "x$have_gpg_error" = xyes ; then | |
786 | GCRYPT_LIBS="$LIBGCRYPT_LIBS $GPG_ERROR_LIBS" | |
787 | GCRYPT_CFLAGS="$LIBGCRYPT_CFLAGS $GPG_ERROR_CFLAGS" | |
7560fffc LP |
788 | AC_DEFINE(HAVE_GCRYPT, 1, [GCRYPT available]) |
789 | else | |
790 | have_gcrypt=no | |
d28ac939 | 791 | have_gpg_error=no |
7560fffc LP |
792 | fi |
793 | else | |
794 | GCRYPT_LIBS= | |
795 | GCRYPT_CFLAGS= | |
796 | fi | |
797 | AC_SUBST(GCRYPT_LIBS) | |
798 | AC_SUBST(GCRYPT_CFLAGS) | |
799 | AM_CONDITIONAL([HAVE_GCRYPT], [test "x$have_gcrypt" != xno]) | |
800 | ||
3e214785 | 801 | # ------------------------------------------------------------------------------ |
4927fcae LP |
802 | AC_ARG_ENABLE([audit], |
803 | AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]), | |
804 | [case "${enableval}" in | |
805 | yes) have_audit=yes ;; | |
806 | no) have_audit=no ;; | |
807 | *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;; | |
808 | esac], | |
809 | [have_audit=auto]) | |
810 | ||
811 | if test "x${have_audit}" != xno ; then | |
812 | AC_CHECK_HEADERS( | |
813 | [libaudit.h], | |
814 | [have_audit=yes], | |
815 | [if test "x$have_audit" = xyes ; then | |
816 | AC_MSG_ERROR([*** AUDIT headers not found.]) | |
817 | fi]) | |
818 | ||
819 | AC_CHECK_LIB( | |
820 | [audit], | |
821 | [audit_open], | |
822 | [have_audit=yes], | |
823 | [if test "x$have_audit" = xyes ; then | |
824 | AC_MSG_ERROR([*** libaudit not found.]) | |
825 | fi]) | |
826 | ||
827 | if test "x$have_audit" = xyes ; then | |
828 | AUDIT_LIBS="-laudit" | |
829 | AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available]) | |
830 | else | |
831 | have_audit=no | |
832 | fi | |
833 | else | |
834 | AUDIT_LIBS= | |
835 | fi | |
836 | AC_SUBST(AUDIT_LIBS) | |
4733607e | 837 | AM_CONDITIONAL([HAVE_AUDIT], [test "x$have_audit" != xno]) |
4927fcae | 838 | |
8d4e028f LP |
839 | # ------------------------------------------------------------------------------ |
840 | AC_ARG_ENABLE([elfutils], | |
841 | AS_HELP_STRING([--disable-elfutils],[Disable optional ELFUTILS support]), | |
842 | [case "${enableval}" in | |
843 | yes) have_elfutils=yes ;; | |
844 | no) have_elfutils=no ;; | |
845 | *) AC_MSG_ERROR(bad value ${enableval} for --disable-elfutils) ;; | |
846 | esac], | |
847 | [have_elfutils=auto]) | |
848 | ||
849 | if test "x${have_elfutils}" != xno ; then | |
850 | AC_CHECK_HEADERS( | |
851 | [elfutils/libdwfl.h], | |
972bded0 | 852 | [], |
8d4e028f LP |
853 | [if test "x$have_elfutils" = xyes ; then |
854 | AC_MSG_ERROR([*** ELFUTILS headers not found.]) | |
855 | fi]) | |
856 | ||
972bded0 MM |
857 | AC_CHECK_LIB( |
858 | [dw], | |
859 | [dwfl_core_file_attach], | |
860 | [have_elfutils=yes], | |
861 | [if test "x$have_elfutils" = xyes ; then | |
862 | AC_MSG_ERROR([*** ELFUTILS >= 158 is required.]) | |
863 | fi]) | |
864 | ||
8d4e028f LP |
865 | if test "x$have_elfutils" = xyes ; then |
866 | ELFUTILS_LIBS="-lelf -ldw" | |
867 | AC_DEFINE(HAVE_ELFUTILS, 1, [ELFUTILS available]) | |
868 | else | |
869 | have_elfutils=no | |
870 | fi | |
871 | else | |
872 | ELFUTILS_LIBS= | |
873 | fi | |
874 | AC_SUBST(ELFUTILS_LIBS) | |
875 | AM_CONDITIONAL(HAVE_ELFUTILS, [test "$have_elfutils" = "yes"]) | |
876 | ||
3e214785 | 877 | # ------------------------------------------------------------------------------ |
7f4e0805 LP |
878 | have_libcryptsetup=no |
879 | AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools])) | |
880 | if test "x$enable_libcryptsetup" != "xno"; then | |
8cf3ca80 | 881 | PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup >= 1.6.0 ], |
7f4e0805 | 882 | [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no) |
7f4e0805 | 883 | if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then |
591622d7 | 884 | AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found]) |
7f4e0805 LP |
885 | fi |
886 | fi | |
887 | AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"]) | |
888 | ||
f6a971bc LP |
889 | # ------------------------------------------------------------------------------ |
890 | have_qrencode=no | |
891 | AC_ARG_ENABLE(qrencode, AS_HELP_STRING([--disable-qrencode], [disable qrencode support])) | |
892 | if test "x$enable_qrencode" != "xno"; then | |
893 | PKG_CHECK_MODULES(QRENCODE, [ libqrencode ], | |
894 | [AC_DEFINE(HAVE_QRENCODE, 1, [Define if qrencode is available]) have_qrencode=yes], have_qrencode=no) | |
895 | if test "x$have_qrencode" = xno -a "x$enable_qrencode" = xyes; then | |
896 | AC_MSG_ERROR([*** qrencode support requested but libraries not found]) | |
897 | fi | |
898 | fi | |
899 | AM_CONDITIONAL(HAVE_QRENCODE, [test "$have_qrencode" = "yes"]) | |
900 | ||
60313199 ZJS |
901 | # ------------------------------------------------------------------------------ |
902 | have_gnutls=no | |
903 | AC_ARG_ENABLE(gnutls, AS_HELP_STRING([--disable-gnutls], [disable gnutls support])) | |
904 | if test "x$enable_gnutls" != "xno"; then | |
f12be7e8 | 905 | PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.1.4], |
60313199 ZJS |
906 | [AC_DEFINE(HAVE_GNUTLS, 1, [Define if gnutls is available]) have_gnutls=yes], have_gnutls=no) |
907 | if test "x$have_gnutls" = xno -a "x$enable_gnutls" = xyes; then | |
908 | AC_MSG_ERROR([*** gnutls support requested but libraries not found]) | |
909 | fi | |
910 | fi | |
911 | AM_CONDITIONAL(HAVE_GNUTLS, [test "$have_gnutls" = "yes"]) | |
912 | ||
e400d4b3 EV |
913 | # ------------------------------------------------------------------------------ |
914 | have_microhttpd=no | |
915 | AC_ARG_ENABLE(microhttpd, AS_HELP_STRING([--disable-microhttpd], [disable microhttpd support])) | |
916 | if test "x$enable_microhttpd" != "xno"; then | |
917 | PKG_CHECK_MODULES(MICROHTTPD, [libmicrohttpd >= 0.9.33], | |
918 | [AC_DEFINE(HAVE_MICROHTTPD, 1, [Define if microhttpd is available]) | |
919 | have_microhttpd=yes | |
920 | M4_DEFINES="$M4_DEFINES -DHAVE_MICROHTTPD"], | |
921 | [have_microhttpd=no]) | |
922 | if test "x$have_microhttpd" = xno -a "x$enable_microhttpd" = xyes; then | |
923 | AC_MSG_ERROR([*** microhttpd support requested but libraries not found]) | |
924 | fi | |
925 | fi | |
926 | AM_CONDITIONAL(HAVE_MICROHTTPD, [test "$have_microhttpd" = "yes"]) | |
927 | ||
36ef43ed ZJS |
928 | # ------------------------------------------------------------------------------ |
929 | have_libcurl=no | |
930 | AC_ARG_ENABLE(libcurl, AS_HELP_STRING([--disable-libcurl], [disable libcurl support])) | |
931 | if test "x$enable_libcurl" != "xno"; then | |
f0b7fc2d | 932 | PKG_CHECK_MODULES(LIBCURL, [libcurl >= 7.32.0], |
e400d4b3 EV |
933 | [AC_DEFINE(HAVE_LIBCURL, 1, [Define if libcurl is available]) |
934 | have_libcurl=yes | |
935 | M4_DEFINES="$M4_DEFINES -DHAVE_LIBCURL"], | |
936 | [have_libcurl=no]) | |
36ef43ed ZJS |
937 | if test "x$have_libcurl" = xno -a "x$enable_libcurl" = xyes; then |
938 | AC_MSG_ERROR([*** libcurl support requested but libraries not found]) | |
939 | fi | |
940 | fi | |
941 | AM_CONDITIONAL(HAVE_LIBCURL, [test "$have_libcurl" = "yes"]) | |
942 | ||
e400d4b3 EV |
943 | # ------------------------------------------------------------------------------ |
944 | AM_CONDITIONAL(HAVE_REMOTE, [test "$have_microhttpd" = "yes" -o "$have_libcurl" = "yes"]) | |
945 | ||
bdf10b5b LP |
946 | # ------------------------------------------------------------------------------ |
947 | have_libidn=no | |
948 | AC_ARG_ENABLE(libidn, AS_HELP_STRING([--disable-libidn], [Disable optional LIBIDN support])) | |
949 | if test "x$enable_libidn" != "xno"; then | |
950 | PKG_CHECK_MODULES(LIBIDN, [libidn], | |
951 | [AC_DEFINE(HAVE_LIBIDN, 1, [Define if libidn is available]) | |
952 | have_libidn=yes | |
953 | M4_DEFINES="$M4_DEFINES -DHAVE_LIBIDN"], | |
954 | [have_libidn=no]) | |
955 | if test "x$have_libidn" = "xno" -a "x$enable_libidn" = "xyes"; then | |
956 | AC_MSG_ERROR([*** libidn support requested but libraries not found]) | |
957 | fi | |
958 | fi | |
959 | AM_CONDITIONAL(HAVE_LIBIDN, [test "$have_libidn" = "yes"]) | |
960 | ||
76917807 LP |
961 | # ------------------------------------------------------------------------------ |
962 | have_libiptc=no | |
963 | AC_ARG_ENABLE(libiptc, AS_HELP_STRING([--disable-libiptc], [Disable optional LIBIPTC support])) | |
964 | if test "x$enable_libiptc" != "xno"; then | |
965 | PKG_CHECK_MODULES(LIBIPTC, [libiptc], | |
966 | [AC_DEFINE(HAVE_LIBIPTC, 1, [Define if libiptc is available]) | |
967 | have_libiptc=yes | |
968 | M4_DEFINES="$M4_DEFINES -DHAVE_LIBIPTC"], | |
969 | [have_libiptc=no]) | |
970 | if test "x$have_libiptc" = "xno" -a "x$enable_libiptc" = "xyes"; then | |
971 | AC_MSG_ERROR([*** libiptc support requested but libraries not found]) | |
972 | fi | |
973 | fi | |
974 | AM_CONDITIONAL(HAVE_LIBIPTC, [test "$have_libiptc" = "yes"]) | |
975 | ||
3e214785 | 976 | # ------------------------------------------------------------------------------ |
27669061 MV |
977 | have_binfmt=no |
978 | AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool])) | |
979 | if test "x$enable_binfmt" != "xno"; then | |
be31376e | 980 | have_binfmt=yes |
27669061 MV |
981 | fi |
982 | AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"]) | |
983 | ||
3e214785 | 984 | # ------------------------------------------------------------------------------ |
e5e83e83 LP |
985 | have_vconsole=no |
986 | AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool])) | |
987 | if test "x$enable_vconsole" != "xno"; then | |
be31376e | 988 | have_vconsole=yes |
e5e83e83 LP |
989 | fi |
990 | AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"]) | |
991 | ||
3e214785 | 992 | # ------------------------------------------------------------------------------ |
4de85612 LP |
993 | have_quotacheck=no |
994 | AC_ARG_ENABLE(quotacheck, AS_HELP_STRING([--disable-quotacheck], [disable quotacheck tools])) | |
995 | if test "x$enable_quotacheck" != "xno"; then | |
be31376e | 996 | have_quotacheck=yes |
4de85612 LP |
997 | fi |
998 | AM_CONDITIONAL(ENABLE_QUOTACHECK, [test "$have_quotacheck" = "yes"]) | |
999 | ||
6351163b UTL |
1000 | # ------------------------------------------------------------------------------ |
1001 | have_tmpfiles=no | |
1002 | AC_ARG_ENABLE(tmpfiles, AS_HELP_STRING([--disable-tmpfiles], [disable tmpfiles support])) | |
1003 | if test "x$enable_tmpfiles" != "xno"; then | |
1004 | have_tmpfiles=yes | |
1005 | fi | |
1006 | AM_CONDITIONAL(ENABLE_TMPFILES, [test "$have_tmpfiles" = "yes"]) | |
1007 | ||
1b992147 LP |
1008 | # ------------------------------------------------------------------------------ |
1009 | have_sysusers=no | |
1010 | AC_ARG_ENABLE(sysusers, AS_HELP_STRING([--disable-sysusers], [disable sysusers support])) | |
1011 | if test "x$enable_sysusers" != "xno"; then | |
1012 | have_sysusers=yes | |
1013 | fi | |
1014 | AM_CONDITIONAL(ENABLE_SYSUSERS, [test "$have_sysusers" = "yes"]) | |
1015 | ||
418b9be5 LP |
1016 | # ------------------------------------------------------------------------------ |
1017 | have_firstboot=no | |
1018 | AC_ARG_ENABLE(firstboot, AS_HELP_STRING([--disable-firstboot], [disable firstboot support])) | |
1019 | if test "x$enable_firstboot" != "xno"; then | |
1020 | have_firstboot=yes | |
1021 | fi | |
1022 | AM_CONDITIONAL(ENABLE_FIRSTBOOT, [test "$have_firstboot" = "yes"]) | |
1023 | ||
3e214785 | 1024 | # ------------------------------------------------------------------------------ |
4de85612 LP |
1025 | have_randomseed=no |
1026 | AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools])) | |
1027 | if test "x$enable_randomseed" != "xno"; then | |
be31376e | 1028 | have_randomseed=yes |
4de85612 LP |
1029 | fi |
1030 | AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"]) | |
1031 | ||
3731acf1 LP |
1032 | # ------------------------------------------------------------------------------ |
1033 | have_backlight=no | |
1034 | AC_ARG_ENABLE(backlight, AS_HELP_STRING([--disable-backlight], [disable backlight tools])) | |
1035 | if test "x$enable_backlight" != "xno"; then | |
1036 | have_backlight=yes | |
1037 | fi | |
1038 | AM_CONDITIONAL(ENABLE_BACKLIGHT, [test "$have_backlight" = "yes"]) | |
1039 | ||
3990f247 LP |
1040 | # ------------------------------------------------------------------------------ |
1041 | have_rfkill=no | |
1042 | AC_ARG_ENABLE(rfkill, AS_HELP_STRING([--disable-rfkill], [disable rfkill tools])) | |
1043 | if test "x$enable_rfkill" != "xno"; then | |
1044 | have_rfkill=yes | |
1045 | fi | |
1046 | AM_CONDITIONAL(ENABLE_RFKILL, [test "$have_rfkill" = "yes"]) | |
1047 | ||
3e214785 | 1048 | # ------------------------------------------------------------------------------ |
2a018e83 KS |
1049 | have_logind=no |
1050 | AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon])) | |
1051 | if test "x$enable_logind" != "xno"; then | |
be31376e | 1052 | have_logind=yes |
2a018e83 KS |
1053 | fi |
1054 | AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"]) | |
4c80c73c | 1055 | AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ]) |
2a018e83 | 1056 | |
95365a57 ZJS |
1057 | AC_ARG_WITH([kill-user-processes], |
1058 | [AS_HELP_STRING([--without-kill-user-processes], [Set logind's KillUserProcesses=no by default])]) | |
1059 | AS_IF([test "$with_kill_user_processes" != "no"], | |
1060 | [kill_user_processes=true | |
1061 | KILL_USER_PROCESSES=yes], | |
1062 | [kill_user_processes=false | |
1063 | KILL_USER_PROCESSES=no]) | |
1064 | AC_DEFINE_UNQUOTED(KILL_USER_PROCESSES, [$kill_user_processes], [Default KillUserProcesses setting]) | |
1065 | AC_SUBST(KILL_USER_PROCESSES) | |
1066 | ||
1ee306e1 LP |
1067 | # ------------------------------------------------------------------------------ |
1068 | have_machined=no | |
1069 | AC_ARG_ENABLE(machined, AS_HELP_STRING([--disable-machined], [disable machine daemon])) | |
1070 | if test "x$enable_machined" != "xno"; then | |
1071 | have_machined=yes | |
2abb5b3b | 1072 | AC_DEFINE(HAVE_MACHINED, [1], [systemd-machined is enabled]) |
1ee306e1 LP |
1073 | fi |
1074 | AM_CONDITIONAL(ENABLE_MACHINED, [test "$have_machined" = "yes"]) | |
1ee306e1 | 1075 | |
3d7415f4 LP |
1076 | # ------------------------------------------------------------------------------ |
1077 | have_importd=no | |
1078 | AC_ARG_ENABLE(importd, AS_HELP_STRING([--disable-importd], [disable import daemon])) | |
1079 | if test "x$enable_importd" != "xno"; then | |
1080 | have_importd=yes | |
1081 | fi | |
1082 | AM_CONDITIONAL(ENABLE_IMPORTD, [test "$have_importd" = "yes"]) | |
1083 | AS_IF([test "$have_importd" = "yes"], [ AC_DEFINE(HAVE_IMPORTD, [1], [Importd support available]) ]) | |
1084 | ||
3e214785 | 1085 | # ------------------------------------------------------------------------------ |
b2e9fb99 MV |
1086 | have_hostnamed=no |
1087 | AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon])) | |
1088 | if test "x$enable_hostnamed" != "xno"; then | |
be31376e | 1089 | have_hostnamed=yes |
b2e9fb99 MV |
1090 | fi |
1091 | AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"]) | |
1092 | ||
3e214785 | 1093 | # ------------------------------------------------------------------------------ |
f47cd184 MV |
1094 | have_timedated=no |
1095 | AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon])) | |
1096 | if test "x$enable_timedated" != "xno"; then | |
be31376e | 1097 | have_timedated=yes |
f47cd184 MV |
1098 | fi |
1099 | AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"]) | |
1100 | ||
3e214785 | 1101 | # ------------------------------------------------------------------------------ |
687ed123 KS |
1102 | have_timesyncd=no |
1103 | AC_ARG_ENABLE(timesyncd, AS_HELP_STRING([--disable-timesyncd], [disable timesync daemon])) | |
43ba1b3e | 1104 | if test "x$enable_timesyncd" != "xno"; then |
687ed123 | 1105 | have_timesyncd=yes |
5a16bc26 | 1106 | M4_DEFINES="$M4_DEFINES -DENABLE_TIMESYNCD" |
687ed123 KS |
1107 | fi |
1108 | AM_CONDITIONAL(ENABLE_TIMESYNCD, [test "$have_timesyncd" = "yes"]) | |
1109 | ||
e8af6973 LP |
1110 | AC_ARG_WITH(ntp-servers, |
1111 | AS_HELP_STRING([--with-ntp-servers=NTPSERVERS], | |
1112 | [Space-separated list of default NTP servers]), | |
1113 | [NTP_SERVERS="$withval"], | |
2ed3de9c | 1114 | [NTP_SERVERS="time1.google.com time2.google.com time3.google.com time4.google.com" |
b32545ff ZJS |
1115 | AC_MSG_WARN([*** Using Google NTP servers. |
1116 | Do not ship OSes or devices with these default settings. | |
1117 | See DISTRO_PORTING for details!])]) | |
e8af6973 LP |
1118 | |
1119 | AC_DEFINE_UNQUOTED(NTP_SERVERS, ["$NTP_SERVERS"], [Default NTP Servers]) | |
1120 | AC_SUBST(NTP_SERVERS) | |
1121 | ||
661278ee LP |
1122 | AC_ARG_WITH(time-epoch, |
1123 | AS_HELP_STRING([--with-time-epoch=SECONDS], | |
5ea846cc | 1124 | [Time epoch for time clients]), |
661278ee LP |
1125 | [TIME_EPOCH="$withval"], |
1126 | [TIME_EPOCH="`stat -c %Y ${srcdir}/NEWS 2>/dev/null || echo 0`"]) | |
1127 | ||
1128 | AC_DEFINE_UNQUOTED(TIME_EPOCH, [$TIME_EPOCH], [Time Epoch]) | |
1129 | ||
f7dc3ab9 LP |
1130 | # ------------------------------------------------------------------------------ |
1131 | AC_ARG_WITH(system-uid-max, | |
1132 | AS_HELP_STRING([--with-system-uid-max=UID] | |
1133 | [Maximum UID for system users]), | |
1134 | [SYSTEM_UID_MAX="$withval"], | |
1135 | [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`"]) | |
1136 | ||
1137 | AC_DEFINE_UNQUOTED(SYSTEM_UID_MAX, [$SYSTEM_UID_MAX], [Maximum System UID]) | |
1138 | AC_SUBST(SYSTEM_UID_MAX) | |
1139 | ||
1140 | # ------------------------------------------------------------------------------ | |
1141 | AC_ARG_WITH(system-gid-max, | |
1142 | AS_HELP_STRING([--with-system-gid-max=GID] | |
1143 | [Maximum GID for system groups]), | |
1144 | [SYSTEM_GID_MAX="$withval"], | |
1145 | [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`"]) | |
1146 | ||
1147 | AC_DEFINE_UNQUOTED(SYSTEM_GID_MAX, [$SYSTEM_GID_MAX], [Maximum System GID]) | |
1148 | AC_SUBST(SYSTEM_GID_MAX) | |
1149 | ||
687ed123 | 1150 | # ------------------------------------------------------------------------------ |
4cd1eaa5 MV |
1151 | have_localed=no |
1152 | AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon])) | |
1153 | if test "x$enable_localed" != "xno"; then | |
be31376e | 1154 | have_localed=yes |
4cd1eaa5 MV |
1155 | fi |
1156 | AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"]) | |
1157 | ||
3e214785 | 1158 | # ------------------------------------------------------------------------------ |
f5e04665 LP |
1159 | have_coredump=no |
1160 | AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook])) | |
1161 | if test "x$enable_coredump" != "xno"; then | |
be31376e | 1162 | have_coredump=yes |
888e378d | 1163 | M4_DEFINES="$M4_DEFINES -DENABLE_COREDUMP" |
f5e04665 LP |
1164 | fi |
1165 | AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"]) | |
1166 | ||
46ba8aae LP |
1167 | # ------------------------------------------------------------------------------ |
1168 | have_polkit=no | |
1169 | AC_ARG_ENABLE(polkit, AS_HELP_STRING([--disable-polkit], [disable PolicyKit support])) | |
1170 | if test "x$enable_polkit" != "xno"; then | |
1171 | AC_DEFINE(ENABLE_POLKIT, 1, [Define if PolicyKit support is to be enabled]) | |
1172 | have_polkit=yes | |
1173 | fi | |
1174 | AM_CONDITIONAL(ENABLE_POLKIT, [test "x$have_polkit" = "xyes"]) | |
1175 | ||
3c9317d2 | 1176 | # ------------------------------------------------------------------------------ |
091a364c TG |
1177 | have_resolved=no |
1178 | AC_ARG_ENABLE(resolved, AS_HELP_STRING([--disable-resolved], [disable resolve daemon])) | |
e97379de MS |
1179 | AS_IF([test "x$enable_resolved" != "xno"], [ |
1180 | AC_CHECK_LIB([dl], [dlsym], [true], [AC_MSG_ERROR([*** Dynamic linking loader library not found])]) | |
1181 | ||
091a364c | 1182 | have_resolved=yes |
aeb50ff0 | 1183 | M4_DEFINES="$M4_DEFINES -DENABLE_RESOLVED" |
2abb5b3b | 1184 | AC_DEFINE(HAVE_RESOLVED, [1], [systemd-resolved is enabled]) |
e97379de | 1185 | ]) |
091a364c | 1186 | AM_CONDITIONAL(ENABLE_RESOLVED, [test "$have_resolved" = "yes"]) |
3c9317d2 | 1187 | |
e16cb2e4 TG |
1188 | AC_ARG_WITH(dns-servers, |
1189 | AS_HELP_STRING([--with-dns-servers=DNSSERVERS], | |
1190 | [Space-separated list of default DNS servers]), | |
49e5c2b2 | 1191 | [DNS_SERVERS="$withval"], |
7b4d7968 | 1192 | [DNS_SERVERS="8.8.8.8 8.8.4.4 2001:4860:4860::8888 2001:4860:4860::8844"]) |
e16cb2e4 TG |
1193 | |
1194 | AC_DEFINE_UNQUOTED(DNS_SERVERS, ["$DNS_SERVERS"], [Default DNS Servers]) | |
1195 | AC_SUBST(DNS_SERVERS) | |
1196 | ||
61ecb465 LP |
1197 | AC_ARG_WITH(default-dnssec, |
1198 | AS_HELP_STRING([--with-default-dnssec=MODE], | |
1199 | [Default DNSSEC mode, defaults to "allow-downgrade"]), | |
1200 | [DEFAULT_DNSSEC_MODE="$withval"], | |
1201 | [DEFAULT_DNSSEC_MODE="allow-downgrade"]) | |
1202 | ||
1203 | AS_CASE("x${DEFAULT_DNSSEC_MODE}", | |
1204 | [xno], [mode=DNSSEC_NO], | |
1205 | [xyes], [mode=DNSSEC_YES], | |
1206 | [xallow-downgrade], [mode=DNSSEC_ALLOW_DOWNGRADE], | |
1207 | AC_MSG_ERROR(Bad DNSSEC mode ${DEFAULT_DNSSEC_MODE})) | |
1208 | AC_DEFINE_UNQUOTED(DEFAULT_DNSSEC_MODE, [$mode], [Default DNSSEC mode]) | |
1209 | AC_SUBST(DEFAULT_DNSSEC_MODE) | |
1210 | ||
091a364c TG |
1211 | # ------------------------------------------------------------------------------ |
1212 | have_networkd=no | |
1213 | AC_ARG_ENABLE(networkd, AS_HELP_STRING([--disable-networkd], [disable networkd])) | |
81577dc2 | 1214 | AS_IF([test "x$enable_networkd" != "xno"], [ |
091a364c TG |
1215 | AC_DEFINE(ENABLE_NETWORKD, 1, [Define if networkd support is to be enabled]) |
1216 | have_networkd=yes | |
5a16bc26 | 1217 | M4_DEFINES="$M4_DEFINES -DENABLE_NETWORKD" |
81577dc2 | 1218 | ]) |
091a364c TG |
1219 | AM_CONDITIONAL(ENABLE_NETWORKD, [test "x$have_networkd" = "xyes"]) |
1220 | ||
b872e9a0 LP |
1221 | # ------------------------------------------------------------------------------ |
1222 | have_efi=no | |
aa43d4bb | 1223 | AC_ARG_ENABLE(efi, AS_HELP_STRING([--disable-efi], [disable systemd-boot and bootctl (EFI support)])) |
b872e9a0 | 1224 | if test "x$enable_efi" != "xno"; then |
aa43d4bb | 1225 | AC_DEFINE(ENABLE_EFI, 1, [Define if systemd-boot and bootctl are to be enabled]) |
b872e9a0 LP |
1226 | have_efi=yes |
1227 | fi | |
1228 | AM_CONDITIONAL(ENABLE_EFI, [test "x$have_efi" = "xyes"]) | |
1229 | ||
0fa2cac4 | 1230 | # ------------------------------------------------------------------------------ |
63e69fb4 | 1231 | AC_CHECK_TOOL(EFI_CC, gcc) |
0fa2cac4 KS |
1232 | |
1233 | EFI_ARCH=`echo $host | sed "s/\(-\).*$//"` | |
1234 | ||
1235 | AM_COND_IF(ARCH_IA32, [ | |
1236 | EFI_ARCH=ia32 | |
1237 | EFI_MACHINE_TYPE_NAME=ia32]) | |
1238 | ||
1239 | AM_COND_IF(ARCH_X86_64, [ | |
1240 | EFI_MACHINE_TYPE_NAME=x64]) | |
1241 | ||
4c6abc93 KK |
1242 | AM_COND_IF(ARCH_AARCH64, [ |
1243 | EFI_MACHINE_TYPE_NAME=aa64]) | |
1244 | ||
0fa2cac4 KS |
1245 | AC_SUBST([EFI_ARCH]) |
1246 | AC_SUBST([EFI_MACHINE_TYPE_NAME]) | |
1247 | ||
1248 | have_gnuefi=no | |
ccbd697b | 1249 | AC_ARG_ENABLE(gnuefi, AS_HELP_STRING([--enable-gnuefi], [Enable optional gnuefi support])) |
0fa2cac4 KS |
1250 | AS_IF([test "x$enable_gnuefi" != "xno"], [ |
1251 | AC_CHECK_HEADERS(efi/${EFI_ARCH}/efibind.h, | |
1252 | [AC_DEFINE(HAVE_GNUEFI, 1, [Define if gnuefi is available]) | |
1253 | have_gnuefi=yes], | |
1d64e14c ZJS |
1254 | [AS_IF([test "x$enable_gnuefi" = xyes], |
1255 | [AC_MSG_ERROR([*** gnuefi support requested but headers not found])]) | |
0fa2cac4 | 1256 | ]) |
0fa2cac4 | 1257 | |
531ddb91 | 1258 | efiroot=$(echo $(cd /usr/lib/$(${EFI_CC} -print-multi-os-directory); pwd)) |
0fa2cac4 KS |
1259 | |
1260 | EFI_LIB_DIR="$efiroot" | |
1261 | AC_ARG_WITH(efi-libdir, | |
1d64e14c | 1262 | AS_HELP_STRING([--with-efi-libdir=PATH], [Path to EFI lib directory]), |
0fa2cac4 KS |
1263 | [EFI_LIB_DIR="$withval"], [EFI_LIB_DIR="$efiroot"] |
1264 | ) | |
1265 | AC_SUBST([EFI_LIB_DIR]) | |
1266 | ||
1d64e14c | 1267 | have_efi_lds=no |
0fa2cac4 | 1268 | AC_ARG_WITH(efi-ldsdir, |
1d64e14c | 1269 | AS_HELP_STRING([--with-efi-ldsdir=PATH], [Path to EFI lds directory]), |
182247ea | 1270 | [EFI_LDS_DIR="$withval" && AS_IF([test -f "${EFI_LDS_DIR}/elf_${EFI_ARCH}_efi.lds"], |
efbef003 | 1271 | [have_efi_lds=yes])], |
297f24a9 | 1272 | [AS_FOR([DIR], [EFI_LDS_DIR], ["${EFI_LIB_DIR}/gnuefi" "${EFI_LIB_DIR}"], |
182247ea | 1273 | [AS_IF([test -f "${EFI_LDS_DIR}/elf_${EFI_ARCH}_efi.lds"], |
1d64e14c ZJS |
1274 | [have_efi_lds=yes && break])])]) |
1275 | AS_IF([test "x$have_efi_lds" = xyes], | |
1276 | [AC_SUBST([EFI_LDS_DIR])], | |
1277 | [AS_IF([test "x$enable_gnuefi" = xyes], | |
1278 | [AC_MSG_ERROR([*** gnuefi support requested but files not found])], | |
1279 | [have_gnuefi=no])]) | |
0fa2cac4 KS |
1280 | |
1281 | AC_ARG_WITH(efi-includedir, | |
1d64e14c | 1282 | AS_HELP_STRING([--with-efi-includedir=PATH], [Path to EFI include directory]), |
0fa2cac4 KS |
1283 | [EFI_INC_DIR="$withval"], [EFI_INC_DIR="/usr/include"] |
1284 | ) | |
1285 | AC_SUBST([EFI_INC_DIR]) | |
1d64e14c ZJS |
1286 | ]) |
1287 | AM_CONDITIONAL(HAVE_GNUEFI, [test "x$have_gnuefi" = xyes]) | |
0fa2cac4 | 1288 | |
92ed3bb4 HH |
1289 | # ------------------------------------------------------------------------------ |
1290 | have_tpm=no | |
1291 | AC_ARG_ENABLE([tpm], AS_HELP_STRING([--enable-tpm],[Enable optional TPM support]), | |
1292 | [case "${enableval}" in | |
1293 | yes) have_tpm=yes ;; | |
1294 | no) have_tpm=no ;; | |
1295 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-tpm) ;; | |
1296 | esac], | |
1297 | [have_tpm=no]) | |
1298 | ||
1299 | if test "x${have_tpm}" != xno ; then | |
1300 | AC_DEFINE(SD_BOOT_LOG_TPM, 1, [Define if TPM should be used to log events and extend the registers]) | |
1301 | fi | |
1302 | ||
1303 | AC_ARG_WITH(tpm-pcrindex, | |
1304 | AS_HELP_STRING([--with-tpm-pcrindex=<NUM>], | |
1305 | [TPM PCR register number to use]), | |
1306 | [SD_TPM_PCR="$withval"], | |
1307 | [SD_TPM_PCR="8"]) | |
1308 | ||
1309 | AC_DEFINE_UNQUOTED(SD_TPM_PCR, [$SD_TPM_PCR], [TPM PCR register number to use]) | |
1310 | ||
b1c4ca25 LP |
1311 | # ------------------------------------------------------------------------------ |
1312 | AC_ARG_WITH(rc-local-script-path-start, | |
1313 | AS_HELP_STRING([--with-rc-local-script-path-start=PATH], | |
1314 | [Path to /etc/rc.local]), | |
1315 | [RC_LOCAL_SCRIPT_PATH_START="$withval"], | |
1316 | [RC_LOCAL_SCRIPT_PATH_START="/etc/rc.local"]) | |
1317 | ||
1318 | AC_ARG_WITH(rc-local-script-path-stop, | |
1319 | AS_HELP_STRING([--with-rc-local-script-path-stop=PATH], | |
bc270841 | 1320 | [Path to /usr/sbin/halt.local]), |
b1c4ca25 | 1321 | [RC_LOCAL_SCRIPT_PATH_STOP="$withval"], |
bc270841 | 1322 | [RC_LOCAL_SCRIPT_PATH_STOP="/usr/sbin/halt.local"]) |
b1c4ca25 LP |
1323 | |
1324 | AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_START, ["$RC_LOCAL_SCRIPT_PATH_START"], [Path of /etc/rc.local script]) | |
bc270841 | 1325 | AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_STOP, ["$RC_LOCAL_SCRIPT_PATH_STOP"], [Path of /usr/sbin/halt.local script]) |
b1c4ca25 LP |
1326 | |
1327 | AC_SUBST(RC_LOCAL_SCRIPT_PATH_START) | |
1328 | AC_SUBST(RC_LOCAL_SCRIPT_PATH_STOP) | |
1329 | ||
a382332e LP |
1330 | # ------------------------------------------------------------------------------ |
1331 | AC_ARG_WITH(kbd-loadkeys, | |
1332 | AS_HELP_STRING([--with-kbd-loadkeys=PATH], | |
1333 | [Path to loadkeys]), | |
1334 | [KBD_LOADKEYS="$withval"], | |
1335 | [KBD_LOADKEYS="/usr/bin/loadkeys"]) | |
1336 | ||
1337 | AC_ARG_WITH(kbd-setfont, | |
1338 | AS_HELP_STRING([--with-kbd-setfont=PATH], | |
1339 | [Path to setfont]), | |
1340 | [KBD_SETFONT="$withval"], | |
1341 | [KBD_SETFONT="/usr/bin/setfont"]) | |
1342 | ||
1343 | AC_DEFINE_UNQUOTED(KBD_LOADKEYS, ["$KBD_LOADKEYS"], [Path of loadkeys]) | |
1344 | AC_DEFINE_UNQUOTED(KBD_SETFONT, ["$KBD_SETFONT"], [Path of setfont]) | |
1345 | ||
1346 | AC_SUBST(KBD_LOADKEYS) | |
1347 | AC_SUBST(KBD_SETFONT) | |
1348 | ||
4ad61fd1 CR |
1349 | AC_ARG_WITH(telinit, |
1350 | AS_HELP_STRING([--with-telinit=PATH], | |
1351 | [Path to telinit]), | |
1352 | [TELINIT="$withval"], | |
abaaabf4 | 1353 | [TELINIT="/lib/sysvinit/telinit"]) |
4ad61fd1 CR |
1354 | |
1355 | AC_DEFINE_UNQUOTED(TELINIT, ["$TELINIT"], [Path to telinit]) | |
1356 | ||
1357 | AC_SUBST(TELINIT) | |
1358 | ||
54b434b1 | 1359 | AC_CHECK_HEADERS_ONCE([valgrind/memcheck.h valgrind/valgrind.h]) |
7211f918 | 1360 | |
d562955e TG |
1361 | # ------------------------------------------------------------------------------ |
1362 | have_myhostname=no | |
f8c5a581 | 1363 | AC_ARG_ENABLE(myhostname, AS_HELP_STRING([--disable-myhostname], [disable nss-myhostname support])) |
d562955e TG |
1364 | if test "x$enable_myhostname" != "xno"; then |
1365 | AC_HEADER_STDC | |
a3b6fafe | 1366 | 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]) |
d562955e TG |
1367 | |
1368 | AC_C_CONST | |
1369 | AC_TYPE_SIZE_T | |
1370 | AC_HEADER_TIME | |
1371 | ||
d562955e TG |
1372 | AC_FUNC_SELECT_ARGTYPES |
1373 | AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn]) | |
1374 | ||
1375 | have_myhostname=yes | |
2abb5b3b | 1376 | AC_DEFINE(HAVE_MYHOSTNAME, [1], [nss-myhostname is enabled]) |
d562955e TG |
1377 | fi |
1378 | AM_CONDITIONAL(HAVE_MYHOSTNAME, [test "$have_myhostname" = "yes"]) | |
1379 | ||
fe659612 UTL |
1380 | # ------------------------------------------------------------------------------ |
1381 | AC_ARG_ENABLE(hwdb, [AC_HELP_STRING([--disable-hwdb], [disable hardware database support])], | |
1382 | enable_hwdb=$enableval, enable_hwdb=yes) | |
1383 | AM_CONDITIONAL(ENABLE_HWDB, [test x$enable_hwdb = xyes]) | |
1384 | ||
3e214785 | 1385 | # ------------------------------------------------------------------------------ |
75db9a77 | 1386 | have_manpages=no |
4c2b0e4e | 1387 | AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages])) |
ab6f56de | 1388 | AC_PATH_PROG([XSLTPROC], [xsltproc]) |
2fd385c6 ZJS |
1389 | AS_IF([test "x$enable_manpages" != xno], [ |
1390 | have_manpages=yes | |
2fd385c6 ZJS |
1391 | AS_IF([test -z "$XSLTPROC"], |
1392 | AC_MSG_ERROR([*** xsltproc is required for man pages])) | |
1393 | ]) | |
fe1fed02 | 1394 | AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"]) |
75db9a77 | 1395 | |
4df5c00b UTL |
1396 | # ------------------------------------------------------------------------------ |
1397 | AC_ARG_ENABLE(hibernate, | |
1398 | [AC_HELP_STRING([--disable-hibernate], [disable hibernation support])], | |
1399 | enable_hibernate=$enableval, enable_hibernate=yes) | |
1400 | AM_CONDITIONAL(ENABLE_HIBERNATE, [test x$enable_hibernate = xyes]) | |
1401 | ||
3e214785 | 1402 | # ------------------------------------------------------------------------------ |
12e34d9d UTL |
1403 | AC_ARG_ENABLE(ldconfig, |
1404 | [AC_HELP_STRING([--disable-ldconfig], [disable ldconfig])], | |
1405 | enable_ldconfig=$enableval, enable_ldconfig=yes) | |
1406 | AM_CONDITIONAL(ENABLE_LDCONFIG, [test x$enable_ldconfig = xyes]) | |
d1ab0ca0 | 1407 | |
12e34d9d | 1408 | # ------------------------------------------------------------------------------ |
34eff652 LP |
1409 | # Location of the init scripts as mandated by LSB |
1410 | SYSTEM_SYSVINIT_PATH=/etc/init.d | |
f1dd0c3f | 1411 | SYSTEM_SYSVRCND_PATH=/etc/rc.d |
12e84679 | 1412 | |
136337ff | 1413 | AC_ARG_WITH([sysvinit-path], |
be31376e | 1414 | [AS_HELP_STRING([--with-sysvinit-path=PATH], |
bc270841 | 1415 | [Specify the path to where the SysV init scripts are located])], |
be31376e KS |
1416 | [SYSTEM_SYSVINIT_PATH="$withval"], |
1417 | []) | |
136337ff | 1418 | |
dee4c244 LP |
1419 | AC_ARG_WITH([sysvrcnd-path], |
1420 | [AS_HELP_STRING([--with-sysvrcnd-path=PATH], | |
bc270841 | 1421 | [Specify the path to the base directory for the SysV rcN.d directories])], |
136337ff TFH |
1422 | [SYSTEM_SYSVRCND_PATH="$withval"], |
1423 | []) | |
1424 | ||
07459bb6 FF |
1425 | if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then |
1426 | AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.]) | |
1427 | SYSTEM_SYSV_COMPAT="yes" | |
f975e971 | 1428 | M4_DEFINES="$M4_DEFINES -DHAVE_SYSV_COMPAT" |
07459bb6 | 1429 | elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then |
dee4c244 | 1430 | 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.]) |
07459bb6 FF |
1431 | else |
1432 | SYSTEM_SYSV_COMPAT="no" | |
1433 | fi | |
1434 | ||
bc270841 LP |
1435 | AC_SUBST(SYSTEM_SYSVINIT_PATH) |
1436 | AC_SUBST(SYSTEM_SYSVRCND_PATH) | |
1437 | AC_SUBST(M4_DEFINES) | |
1438 | ||
1439 | AM_CONDITIONAL(HAVE_SYSV_COMPAT, test "$SYSTEM_SYSV_COMPAT" = "yes") | |
1440 | ||
bef2733f | 1441 | AC_ARG_WITH([tty-gid], |
a05ea46d | 1442 | [AS_HELP_STRING([--with-tty-gid=GID], |
bef2733f | 1443 | [Specify the numeric GID of the 'tty' group])], |
f8b5d994 LP |
1444 | [TTY_GID="$withval"], |
1445 | [TTY_GID="5"]) | |
1446 | ||
1447 | AC_DEFINE_UNQUOTED(TTY_GID, [$TTY_GID], [GID of the 'tty' group]) | |
1448 | AC_SUBST(TTY_GID) | |
bef2733f | 1449 | |
d2d12cd1 LP |
1450 | AC_ARG_WITH([dbuspolicydir], |
1451 | AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]), | |
1452 | [], | |
977db91c | 1453 | [with_dbuspolicydir=${sysconfdir}/dbus-1/system.d]) |
dd334850 | 1454 | AX_NORMALIZE_PATH([with_dbuspolicydir]) |
d122948d | 1455 | |
d2d12cd1 LP |
1456 | AC_ARG_WITH([dbussessionservicedir], |
1457 | AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]), | |
1458 | [], | |
977db91c | 1459 | [with_dbussessionservicedir=${datadir}/dbus-1/services]) |
dd334850 | 1460 | AX_NORMALIZE_PATH([with_dbussessionservicedir]) |
d122948d | 1461 | |
d2d12cd1 LP |
1462 | AC_ARG_WITH([dbussystemservicedir], |
1463 | AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]), | |
1464 | [], | |
977db91c | 1465 | [with_dbussystemservicedir=${datadir}/dbus-1/system-services]) |
dd334850 | 1466 | AX_NORMALIZE_PATH([with_dbussystemservicedir]) |
d122948d | 1467 | |
db059f1b MB |
1468 | AC_ARG_WITH([bashcompletiondir], |
1469 | AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]), | |
1470 | [], | |
25ee45f9 MB |
1471 | [AS_IF([$($PKG_CONFIG --exists bash-completion)], [ |
1472 | with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion) | |
db059f1b MB |
1473 | ] , [ |
1474 | with_bashcompletiondir=${datadir}/bash-completion/completions | |
1475 | ])]) | |
a5ba84b7 | 1476 | AM_CONDITIONAL(ENABLE_BASH_COMPLETION, [test "$with_bashcompletiondir" != "no"]) |
dd334850 | 1477 | AX_NORMALIZE_PATH([with_bashcompletiondir]) |
db059f1b | 1478 | |
4f87c47b WG |
1479 | AC_ARG_WITH([zshcompletiondir], |
1480 | AS_HELP_STRING([--with-zshcompletiondir=DIR], [Zsh completions directory]), | |
1481 | [], [with_zshcompletiondir=${datadir}/zsh/site-functions]) | |
a5ba84b7 | 1482 | AM_CONDITIONAL(ENABLE_ZSH_COMPLETION, [test "$with_zshcompletiondir" != "no"]) |
dd334850 | 1483 | AX_NORMALIZE_PATH([with_zshcompletiondir]) |
4f87c47b | 1484 | |
b8079ae1 KS |
1485 | AC_ARG_WITH([rootprefix], |
1486 | AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]), | |
39ad55a9 | 1487 | [], [with_rootprefix=${ac_default_prefix}]) |
e013d21b FB |
1488 | # --with-rootprefix= (empty) should default to "/" but AX_NORMALIZE_PATH |
1489 | # defaults those to ".", solve that here for now until we can find a suitable | |
1490 | # fix for AX_NORMALIZE_PATH upstream at autoconf-archive. | |
1491 | # See: https://github.com/systemd/systemd/issues/54 | |
1492 | if test "x${with_rootprefix}" = "x"; then | |
1493 | with_rootprefix="/" | |
1494 | fi | |
dd334850 | 1495 | AX_NORMALIZE_PATH([with_rootprefix]) |
d2d12cd1 | 1496 | |
ae446765 KS |
1497 | AC_ARG_WITH([rootlibdir], |
1498 | AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]), | |
1499 | [], | |
1500 | [with_rootlibdir=${libdir}]) | |
dd334850 | 1501 | AX_NORMALIZE_PATH([with_rootlibdir]) |
ae446765 | 1502 | |
9d3203b4 | 1503 | AC_ARG_WITH([pamlibdir], |
b0cca7d8 | 1504 | AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]), |
9d3203b4 KS |
1505 | [], |
1506 | [with_pamlibdir=${with_rootlibdir}/security]) | |
dd334850 | 1507 | AX_NORMALIZE_PATH([with_pamlibdir]) |
9d3203b4 | 1508 | |
5c390a4a ZJS |
1509 | AC_ARG_WITH([pamconfdir], |
1510 | AS_HELP_STRING([--with-pamconfdir=DIR], [Directory for PAM configuration]), | |
1511 | [], | |
1512 | [with_pamconfdir=${sysconfdir}/pam.d]) | |
dd334850 | 1513 | AX_NORMALIZE_PATH([with_pamconfdir]) |
5c390a4a | 1514 | |
bc9bdbba MG |
1515 | AC_ARG_ENABLE([split-usr], |
1516 | AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]), | |
1517 | [], | |
1518 | [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [ | |
1519 | enable_split_usr=yes | |
1520 | ], [ | |
1521 | enable_split_usr=no | |
1522 | ])]) | |
1523 | ||
1524 | AS_IF([test "x${enable_split_usr}" = "xyes"], [ | |
2c6db6fb | 1525 | AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr]) |
bc9bdbba | 1526 | ]) |
2fe9e87a | 1527 | AM_CONDITIONAL(ENABLE_SPLIT_USR, [test "x${enable_split_usr}" = "xyes"]) |
2c6db6fb | 1528 | |
06528e8f DM |
1529 | # work around intltool-update issues during 'make distcheck' |
1530 | AS_IF([test "x$0" != "x./configure"], [ | |
1531 | AC_SUBST([INTLTOOL_UPDATE], [/bin/true]) | |
1532 | ]) | |
1533 | ||
0fa2cac4 KS |
1534 | # QEMU and OVMF UEFI firmware |
1535 | AS_IF([test x"$cross_compiling" = "xyes"], [], [ | |
1536 | AC_PATH_PROG([QEMU], [qemu-system-x86_64]) | |
1d64e14c ZJS |
1537 | AC_CHECK_FILE([/usr/share/qemu/bios-ovmf.bin], [QEMU_BIOS=/usr/share/qemu/bios-ovmf.bin], |
1538 | [AC_CHECK_FILE([/usr/share/qemu-ovmf/bios.bin], [QEMU_BIOS=/usr/share/qemu-ovmf/bios.bin])]) | |
0fa2cac4 KS |
1539 | AC_SUBST([QEMU_BIOS]) |
1540 | ]) | |
1541 | ||
cee22bd3 | 1542 | AC_ARG_ENABLE(tests, |
c1ab8191 | 1543 | [AC_HELP_STRING([--disable-tests], [disable tests, or enable extra tests with =unsafe])], |
fc86aa0e | 1544 | enable_tests=$enableval, enable_tests=yes) |
c1ab8191 ZJS |
1545 | AM_CONDITIONAL(ENABLE_TESTS, [test x$enable_tests = xyes -o x$enable_tests = xunsafe]) |
1546 | AM_CONDITIONAL(ENABLE_UNSAFE_TESTS, [test x$enable_tests = xunsafe]) | |
cee22bd3 | 1547 | |
fc86aa0e | 1548 | AC_ARG_ENABLE(debug, |
fad5a6c6 | 1549 | [AC_HELP_STRING([--enable-debug@<:@=LIST@:>@], [enable extra debugging (hashmap,mmap-cache)])], |
fc86aa0e | 1550 | [if test "x$enableval" = "xyes"; then |
fad5a6c6 | 1551 | enableval="hashmap,mmap-cache" |
fc86aa0e MS |
1552 | fi |
1553 | saved_ifs="$IFS" | |
1554 | IFS="$IFS$PATH_SEPARATOR," | |
1555 | for name in $enableval; do | |
1556 | case $name in | |
1557 | hashmap) | |
1558 | enable_debug_hashmap=yes | |
1559 | ;; | |
fad5a6c6 MS |
1560 | mmap-cache) |
1561 | enable_debug_mmap_cache=yes | |
1562 | ;; | |
fc86aa0e MS |
1563 | esac |
1564 | done | |
1565 | IFS="$saved_ifs"],[]) | |
1566 | ||
1567 | enable_debug="" | |
1568 | AS_IF([test x$enable_debug_hashmap = xyes], [ | |
1569 | AC_DEFINE(ENABLE_DEBUG_HASHMAP, 1, [Define if hashmap debugging is to be enabled]) | |
1570 | enable_debug="hashmap $enable_debug" | |
1571 | ]) | |
fad5a6c6 MS |
1572 | AS_IF([test x$enable_debug_mmap_cache = xyes], [ |
1573 | AC_DEFINE(ENABLE_DEBUG_MMAP_CACHE, 1, [Define if mmap cache debugging is to be enabled]) | |
1574 | enable_debug="mmap-cache $enable_debug" | |
99470154 | 1575 | ]) |
fc86aa0e | 1576 | test -z "$enable_debug" && enable_debug="none" |
99470154 | 1577 | |
d2d12cd1 LP |
1578 | AC_SUBST([dbuspolicydir], [$with_dbuspolicydir]) |
1579 | AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir]) | |
1580 | AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir]) | |
db059f1b | 1581 | AC_SUBST([bashcompletiondir], [$with_bashcompletiondir]) |
4f87c47b | 1582 | AC_SUBST([zshcompletiondir], [$with_zshcompletiondir]) |
8c6db833 | 1583 | AC_SUBST([pamlibdir], [$with_pamlibdir]) |
5c390a4a | 1584 | AC_SUBST([pamconfdir], [$with_pamconfdir]) |
b8079ae1 | 1585 | AC_SUBST([rootprefix], [$with_rootprefix]) |
ae446765 | 1586 | AC_SUBST([rootlibdir], [$with_rootlibdir]) |
8c4a3079 | 1587 | |
3e214785 | 1588 | AC_CONFIG_FILES([ |
23756070 KS |
1589 | Makefile |
1590 | po/Makefile.in | |
3e214785 KS |
1591 | ]) |
1592 | ||
a45a909f | 1593 | AC_OUTPUT |
ae446765 | 1594 | AC_MSG_RESULT([ |
0571e011 LP |
1595 | $PACKAGE_NAME $VERSION |
1596 | ||
95365a57 ZJS |
1597 | libcryptsetup: ${have_libcryptsetup} |
1598 | PAM: ${have_pam} | |
1599 | AUDIT: ${have_audit} | |
1600 | IMA: ${have_ima} | |
1601 | AppArmor: ${have_apparmor} | |
1602 | SELinux: ${have_selinux} | |
1603 | SECCOMP: ${have_seccomp} | |
1604 | SMACK: ${have_smack} | |
1605 | ZLIB: ${have_zlib} | |
1606 | XZ: ${have_xz} | |
1607 | LZ4: ${have_lz4} | |
1608 | BZIP2: ${have_bzip2} | |
1609 | ACL: ${have_acl} | |
1610 | GCRYPT: ${have_gcrypt} | |
1611 | QRENCODE: ${have_qrencode} | |
1612 | MICROHTTPD: ${have_microhttpd} | |
1613 | GNUTLS: ${have_gnutls} | |
1614 | libcurl: ${have_libcurl} | |
1615 | libidn: ${have_libidn} | |
1616 | libiptc: ${have_libiptc} | |
1617 | ELFUTILS: ${have_elfutils} | |
1618 | binfmt: ${have_binfmt} | |
1619 | vconsole: ${have_vconsole} | |
1620 | quotacheck: ${have_quotacheck} | |
1621 | tmpfiles: ${have_tmpfiles} | |
1622 | sysusers: ${have_sysusers} | |
1623 | firstboot: ${have_firstboot} | |
1624 | randomseed: ${have_randomseed} | |
1625 | backlight: ${have_backlight} | |
1626 | rfkill: ${have_rfkill} | |
1627 | logind: ${have_logind} | |
1628 | Default KillUserProcesses setting: ${KILL_USER_PROCESSES} | |
1629 | machined: ${have_machined} | |
1630 | importd: ${have_importd} | |
1631 | hostnamed: ${have_hostnamed} | |
1632 | timedated: ${have_timedated} | |
1633 | timesyncd: ${have_timesyncd} | |
1634 | Default NTP servers: ${NTP_SERVERS} | |
1635 | time epoch: ${TIME_EPOCH} | |
1636 | localed: ${have_localed} | |
1637 | networkd: ${have_networkd} | |
1638 | resolved: ${have_resolved} | |
1639 | Default DNS servers: ${DNS_SERVERS} | |
1640 | Default DNSSEC mode: ${DEFAULT_DNSSEC_MODE} | |
1641 | coredump: ${have_coredump} | |
1642 | polkit: ${have_polkit} | |
1643 | efi: ${have_efi} | |
1644 | gnuefi: ${have_gnuefi} | |
1645 | efi arch: ${EFI_ARCH} | |
1646 | EFI machine type: ${EFI_MACHINE_TYPE_NAME} | |
1647 | EFI CC ${EFI_CC} | |
1648 | EFI libdir: ${EFI_LIB_DIR} | |
1649 | EFI ldsdir: ${EFI_LDS_DIR} | |
1650 | EFI includedir: ${EFI_INC_DIR} | |
1651 | kmod: ${have_kmod} | |
1652 | xkbcommon: ${have_xkbcommon} | |
1653 | blkid: ${have_blkid} | |
1654 | libmount: ${have_libmount} | |
1655 | dbus: ${have_dbus} | |
1656 | nss-myhostname: ${have_myhostname} | |
1657 | hwdb: ${enable_hwdb} | |
1658 | tpm: ${have_tpm} | |
95365a57 ZJS |
1659 | Python: ${have_python} |
1660 | man pages: ${have_manpages} | |
1661 | test coverage: ${have_coverage} | |
1662 | Split /usr: ${enable_split_usr} | |
1663 | SysV compatibility: ${SYSTEM_SYSV_COMPAT} | |
1664 | utmp/wtmp support: ${have_utmp} | |
1665 | ldconfig support: ${enable_ldconfig} | |
1666 | hibernate support: ${enable_hibernate} | |
1667 | extra debugging: ${enable_debug} | |
1668 | tests: ${enable_tests} | |
1669 | ||
1670 | prefix: ${prefix} | |
1671 | rootprefix: ${with_rootprefix} | |
1672 | sysconf dir: ${sysconfdir} | |
1673 | datarootdir: ${datarootdir} | |
1674 | includedir: ${includedir} | |
1675 | lib dir: ${libdir} | |
1676 | rootlib dir: ${with_rootlibdir} | |
1677 | SysV init scripts: ${SYSTEM_SYSVINIT_PATH} | |
1678 | SysV rc?.d directories: ${SYSTEM_SYSVRCND_PATH} | |
1679 | Build Python: ${PYTHON} | |
1680 | PAM modules dir: ${with_pamlibdir} | |
1681 | PAM configuration dir: ${with_pamconfdir} | |
1682 | D-Bus policy dir: ${with_dbuspolicydir} | |
1683 | D-Bus session dir: ${with_dbussessionservicedir} | |
1684 | D-Bus system dir: ${with_dbussystemservicedir} | |
1685 | Bash completions dir: ${with_bashcompletiondir} | |
1686 | Zsh completions dir: ${with_zshcompletiondir} | |
1687 | Extra start script: ${RC_LOCAL_SCRIPT_PATH_START} | |
1688 | Extra stop script: ${RC_LOCAL_SCRIPT_PATH_STOP} | |
7178cd76 | 1689 | Adm group: ${have_adm_group} |
95365a57 ZJS |
1690 | Wheel group: ${have_wheel_group} |
1691 | Debug shell: ${SUSHELL} @ ${DEBUGTTY} | |
1692 | TTY GID: ${TTY_GID} | |
1693 | Maximum System UID: ${SYSTEM_UID_MAX} | |
1694 | Maximum System GID: ${SYSTEM_GID_MAX} | |
1695 | Certificate root: ${CERTIFICATEROOT} | |
4b930ded | 1696 | Support URL: ${SUPPORT_URL} |
2129011e LP |
1697 | Nobody User Name: ${NOBODY_USER_NAME} |
1698 | Nobody Group Name: ${NOBODY_GROUP_NAME} | |
95365a57 ZJS |
1699 | |
1700 | CFLAGS: ${OUR_CFLAGS} ${CFLAGS} | |
1701 | CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS} | |
1702 | LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS} | |
ae446765 | 1703 | ]) |