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