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