]> git.ipfire.org Git - thirdparty/systemd.git/blame - configure.ac
build-sys: disable static libraries
[thirdparty/systemd.git] / configure.ac
CommitLineData
fb0951b0 1#
47be870b
LP
2# This file is part of systemd.
3#
3e214785
KS
4# Copyright 2010-2012 Lennart Poettering
5# Copyright 2010-2012 Kay Sievers
47be870b
LP
6#
7# systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
8# under the terms of the GNU Lesser General Public License as published by
9# the Free Software Foundation; either version 2.1 of the License, or
47be870b
LP
10# (at your option) any later version.
11#
12# systemd is distributed in the hope that it will be useful, but
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 15# Lesser General Public License for more details.
47be870b 16#
5430f7f2 17# You should have received a copy of the GNU Lesser General Public License
47be870b
LP
18# along with systemd; If not, see <http://www.gnu.org/licenses/>.
19
4e949c11
JJ
20AC_PREREQ([2.64])
21
22AC_INIT([systemd],
0428ddb7 23 [196],
4e949c11
JJ
24 [http://bugs.freedesktop.org/enter_bug.cgi?product=systemd],
25 [systemd],
26 [http://www.freedesktop.org/wiki/Software/systemd])
47be870b 27
78a825f2 28AC_CONFIG_SRCDIR([src/core/main.c])
47be870b
LP
29AC_CONFIG_MACRO_DIR([m4])
30AC_CONFIG_HEADERS([config.h])
a80db8bd
JJ
31AC_CONFIG_AUX_DIR([build-aux])
32
4db6d587 33AC_USE_SYSTEM_EXTENSIONS
907dd195 34AC_SYS_LARGEFILE
eb7bbee6 35AC_PREFIX_DEFAULT([/usr])
bbd9b8c2 36AM_INIT_AUTOMAKE([foreign 1.11 -Wall -Wno-portability silent-rules tar-pax no-dist-gzip dist-xz subdir-objects check-news])
3e214785 37AM_SILENT_RULES([yes])
47be870b 38AC_CANONICAL_HOST
22be093f 39AC_DEFINE_UNQUOTED([CANONICAL_HOST], "$host", [Canonical host string.])
d59d0a2b 40AS_IF([test "x$host_cpu" = "xmips" || test "x$host_cpu" = "xmipsel" ||
41 test "x$host_cpu" = "xmips64" || test "x$host_cpu" = "xmips64el"],
42 [AC_DEFINE(ARCH_MIPS, [], [Whether on mips arch])])
47be870b 43
3e214785 44LT_PREREQ(2.2)
8666abb4 45LT_INIT([disable-static])
47be870b 46
1c7dde3e
BN
47# i18n stuff for the PolicyKit policy files
48IT_PROG_INTLTOOL([0.40.0])
49
50GETTEXT_PACKAGE=systemd
51AC_SUBST(GETTEXT_PACKAGE)
52
e9da3678
LP
53AC_PROG_MKDIR_P
54AC_PROG_LN_S
55AC_PROG_SED
3ce4fad8 56AC_PROG_GREP
f975e971 57AC_PROG_AWK
e9da3678 58
47be870b
LP
59AC_PROG_CC
60AC_PROG_CC_C99
61AM_PROG_CC_C_O
62AC_PROG_GCC_TRADITIONAL
47be870b 63
3e214785 64AC_PATH_PROG([M4], [m4])
fe1fed02 65AC_PATH_PROG([XSLTPROC], [xsltproc])
92ec4495 66
86b2e20a
LP
67AC_PATH_PROG([QUOTAON], [quotaon], [/usr/sbin/quotaon])
68AC_PATH_PROG([QUOTACHECK], [quotacheck], [/usr/sbin/quotacheck])
b51fc639 69
86b2e20a
LP
70AC_PATH_PROG([SETCAP], [setcap], [/usr/sbin/setcap])
71
c1c02e07 72AC_PATH_PROG([KILL], [kill], [/usr/bin/kill])
96ede260 73
80a5cbac 74# gtkdocize greps for '^GTK_DOC_CHECK', so it needs to be on its own line
92ec4495 75m4_ifdef([GTK_DOC_CHECK], [
9e45e7d8 76GTK_DOC_CHECK([1.18],[--flavour no-tmpl])
6e92b23f 77], [AM_CONDITIONAL([ENABLE_GTK_DOC], [false])])
92ec4495 78
fe1fed02
ZJS
79AS_IF([test "x$enable_gtk_doc" = "xyes" -a "x$XSLTPROC" = x], [
80 AC_MSG_ERROR([*** GTK doc requested but xsltproc not found])
81])
82
6e92b23f 83m4_ifdef([GOBJECT_INTROSPECTION_CHECK], [
0eaeca1f 84GOBJECT_INTROSPECTION_CHECK([1.31.1])
d66ee73a
ZJS
85], [
86 AM_CONDITIONAL([HAVE_INTROSPECTION], [false])
87 enable_introspection=no])
3e214785 88
8d7e170a
LP
89AC_PATH_TOOL(OBJCOPY, objcopy)
90AC_PATH_TOOL(STRINGS, strings)
91AC_PATH_TOOL(GPERF, gperf)
b62cfcea
MB
92if test -z "$GPERF" ; then
93 AC_MSG_ERROR([*** gperf not found])
94fi
9a60da28 95
8d7e170a
LP
96# we use python to build the man page index, and for systemd-python
97have_python=no
98have_python_devel=no
78fbaaca
WK
99
100AC_ARG_WITH([python],
101 [AS_HELP_STRING([--without-python], [Disable building the man page index and systemd-python (default: test)])])
102
103AS_IF([test "x$with_python" != "xno"], [
104 AM_PATH_PYTHON(,, [:])
568c7e02 105 AS_IF([test "$PYTHON" != :], [have_python=yes])
78fbaaca 106])
2f4da3e6
ZJS
107AM_CONDITIONAL([HAVE_PYTHON], [test "x$have_python" = "xyes"])
108AS_IF([test "x$PYTHON_BINARY" = "x"],
109 [AS_IF([test "x$have_python" = "xyes"],
b86d11da 110 [PYTHON_BINARY="`which "$PYTHON"`"],
2f4da3e6
ZJS
111 [PYTHON_BINARY=/usr/bin/python])])
112AC_ARG_VAR(PYTHON_BINARY, [Python binary used to launch installed scripts])
568c7e02
ZJS
113
114AS_IF([test "x$with_python" != "xno"], [
115 AC_PATH_PROG(PYTHON_CONFIG, python${PYTHON_VERSION}-config)
116 AS_IF([test -n "$PYTHON_CONFIG"], [
117 have_python_devel=yes
118 PYTHON_CFLAGS="`$PYTHON_CONFIG --cflags`"
119 PYTHON_LIBS="`$PYTHON_CONFIG --ldflags`"
120 AC_SUBST(PYTHON_CFLAGS)
121 AC_SUBST(PYTHON_LIBS)
122 ])
123])
8d7e170a 124AM_CONDITIONAL([HAVE_PYTHON_DEVEL], [test "$have_python_devel" = "yes"])
9c4fa6ed 125
eb2e280f 126CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
be1a67d9 127 -pipe \
d1ab0ca0 128 -Wall \
d1ab0ca0 129 -Wextra \
27765dfc 130 -Wno-inline \
d1ab0ca0
LP
131 -Wundef \
132 -Wformat=2 \
133 -Wlogical-op \
134 -Wsign-compare \
135 -Wformat-security \
136 -Wmissing-include-dirs \
137 -Wformat-nonliteral \
138 -Wold-style-definition \
139 -Wpointer-arith \
140 -Winit-self \
141 -Wdeclaration-after-statement \
142 -Wfloat-equal \
143 -Wmissing-prototypes \
144 -Wstrict-prototypes \
145 -Wredundant-decls \
146 -Wmissing-declarations \
147 -Wmissing-noreturn \
148 -Wshadow \
149 -Wendif-labels \
150 -Wcast-align \
151 -Wstrict-aliasing=2 \
152 -Wwrite-strings \
be1a67d9
LP
153 -Wno-long-long \
154 -Wno-overlength-strings \
d1ab0ca0 155 -Wno-unused-parameter \
be1a67d9 156 -Wno-missing-field-initializers \
8745297f 157 -Wno-unused-result \
d200735e 158 -Werror=overflow \
be1a67d9 159 -ffast-math \
d1ab0ca0
LP
160 -fno-common \
161 -fdiagnostics-show-option \
9b85fc6a
GSB
162 -fno-strict-aliasing \
163 -fvisibility=hidden \
164 -ffunction-sections \
5a45a936 165 -fdata-sections \
c1663b9d
LP
166 -fstack-protector \
167 --param=ssp-buffer-size=4])
5a45a936
LP
168AC_SUBST([OUR_CFLAGS], $with_cflags)
169
170CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
171 -Wp,-D_FORTIFY_SOURCE=2])
172AC_SUBST([OUR_CPPFLAGS], $with_cppflags)
9e7adc3a
LDM
173
174CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\
9b85fc6a 175 -Wl,--as-needed \
5a45a936
LP
176 -Wl,--gc-sections \
177 -Wl,-z,relro \
178 -Wl,-z,now])
179AC_SUBST([OUR_LDFLAGS], $with_ldflags)
47be870b 180
e1718709 181AC_SEARCH_LIBS([mq_open], [rt], [], [AC_MSG_ERROR([*** POSIX RT library not found])])
afea26ad 182AC_SEARCH_LIBS([dlsym], [dl], [], [AC_MSG_ERROR([*** Dynamic linking loader library not found])])
85f19d82
MB
183
184save_LIBS="$LIBS"
185LIBS=
47be870b
LP
186AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
187AC_CHECK_HEADERS([sys/capability.h], [], [AC_MSG_ERROR([*** POSIX caps headers not found])])
85f19d82
MB
188CAP_LIBS="$LIBS"
189LIBS="$save_LIBS"
190AC_SUBST(CAP_LIBS)
47be870b 191
9388e99e 192AC_CHECK_FUNCS([fanotify_init fanotify_mark])
4db17f29 193AC_CHECK_FUNCS([__secure_getenv secure_getenv])
9388e99e 194AC_CHECK_DECLS([gettid, pivot_root, name_to_handle_at], [], [], [[#include <sys/types.h>
a8348796 195#include <unistd.h>
9388e99e
MO
196#include <sys/mount.h>
197#include <fcntl.h>]])
a8348796 198
b237ef2c 199# This makes sure pkg.m4 is available.
a9b5b032 200m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
d1ab0ca0 201
3e214785 202PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.3.2])
e3043162
TG
203
204# ------------------------------------------------------------------------------
205have_kmod=no
206AC_ARG_ENABLE(kmod, AS_HELP_STRING([--disable-kmod], [disable loadable modules support]))
207if test "x$enable_kmod" != "xno"; then
208 PKG_CHECK_MODULES(KMOD, [ libkmod >= 5 ],
209 [AC_DEFINE(HAVE_KMOD, 1, [Define if kmod is available]) have_kmod=yes], have_kmod=no)
210 if test "x$have_kmod" = xno -a "x$enable_kmod" = xyes; then
211 AC_MSG_ERROR([*** kmod support requested but libraries not found])
212 fi
213fi
214AM_CONDITIONAL(HAVE_KMOD, [test "$have_kmod" = "yes"])
f553b3b1
AO
215
216# ------------------------------------------------------------------------------
217have_blkid=no
218AC_ARG_ENABLE(blkid, AS_HELP_STRING([--disable-blkid], [disable blkid support]))
219if test "x$enable_blkid" != "xno"; then
220 PKG_CHECK_MODULES(BLKID, [ blkid >= 2.20 ],
221 [AC_DEFINE(HAVE_BLKID, 1, [Define if blkid is available]) have_blkid=yes], have_blkid=no)
222 if test "x$have_blkid" = xno -a "x$enable_blkid" = xyes; then
223 AC_MSG_ERROR([*** blkid support requested but libraries not found])
224 fi
225fi
226AM_CONDITIONAL(HAVE_BLKID, [test "$have_blkid" = "yes"])
728beb28 227
3e214785 228# ------------------------------------------------------------------------------
81611586
RS
229have_ima=yes
230AC_ARG_ENABLE([ima], AS_HELP_STRING([--disable-ima],[Disable optional IMA support]),
231 [case "${enableval}" in
232 yes) have_ima=yes ;;
233 no) have_ima=no ;;
234 *) AC_MSG_ERROR(bad value ${enableval} for --disable-ima) ;;
235 esac],
236 [have_ima=yes])
237
238if test "x${have_ima}" != xno ; then
239 AC_DEFINE(HAVE_IMA, 1, [Define if IMA is available])
240fi
241
77e68fa2
LP
242# ------------------------------------------------------------------------------
243have_chkconfig=yes
244AC_ARG_ENABLE([chkconfig], AS_HELP_STRING([--disable-chkconfig],[Disable optional chkconfig support]),
245 [case "${enableval}" in
246 yes) have_chkconfig=yes ;;
247 no) have_chkconfig=no ;;
248 *) AC_MSG_ERROR(bad value ${enableval} for --disable-chkconfig) ;;
249 esac],
250 [AC_PATH_PROG(CHKCONFIG, chkconfig)
251 if test -z "$CHKCONFIG"; then
252 have_chkconfig=no
253 else
254 have_chkconfig=yes
255 fi])
256
257if test "x${have_chkconfig}" != xno ; then
258 AC_DEFINE(HAVE_CHKCONFIG, 1, [Define if CHKCONFIG is available])
259fi
260
3e214785 261# ------------------------------------------------------------------------------
591622d7
LP
262have_selinux=no
263AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
264if test "x$enable_selinux" != "xno"; then
3f8cc098 265 PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9],
591622d7 266 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available]) have_selinux=yes], have_selinux=no)
591622d7
LP
267 if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
268 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
269 fi
56cf987f 270fi
591622d7 271AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
ed061a8d
MS
272if test "x${have_selinux}" != xno ; then
273 sushell=/sbin/sushell
274else
275 sushell=/bin/bash
276fi
277AC_SUBST(sushell)
56cf987f 278
3e214785 279# ------------------------------------------------------------------------------
807e17f0
LP
280have_xz=no
281AC_ARG_ENABLE(xz, AS_HELP_STRING([--disable-xz], [Disable optional XZ support]))
282if test "x$enable_xz" != "xno"; then
283 PKG_CHECK_MODULES(XZ, [ liblzma ],
284 [AC_DEFINE(HAVE_XZ, 1, [Define if XZ is available]) have_xz=yes], have_xz=no)
807e17f0
LP
285 if test "x$have_xz" = xno -a "x$enable_xz" = xyes; then
286 AC_MSG_ERROR([*** Xz support requested but libraries not found])
287 fi
288fi
289AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"])
290
3e214785 291# ------------------------------------------------------------------------------
0213c3f8
LP
292AC_ARG_ENABLE([tcpwrap],
293 AS_HELP_STRING([--disable-tcpwrap],[Disable optional TCP wrappers support]),
294 [case "${enableval}" in
5b6319dc
LP
295 yes) have_tcpwrap=yes ;;
296 no) have_tcpwrap=no ;;
0213c3f8
LP
297 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
298 esac],
5b6319dc 299 [have_tcpwrap=auto])
0213c3f8 300
5b6319dc 301if test "x${have_tcpwrap}" != xno ; then
0213c3f8
LP
302 ACX_LIBWRAP
303 if test "x${LIBWRAP_LIBS}" = x ; then
5b6319dc
LP
304 if test "x$have_tcpwrap" = xyes ; then
305 AC_MSG_ERROR([*** TCP wrappers support not found.])
0213c3f8 306 fi
812cce32 307 have_tcpwrap=no
0213c3f8 308 else
5b6319dc 309 have_tcpwrap=yes
0213c3f8
LP
310 fi
311else
5b6319dc 312 LIBWRAP_LIBS=
0213c3f8 313fi
0213c3f8
LP
314AC_SUBST(LIBWRAP_LIBS)
315
3e214785 316# ------------------------------------------------------------------------------
5b6319dc
LP
317AC_ARG_ENABLE([pam],
318 AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
319 [case "${enableval}" in
320 yes) have_pam=yes ;;
321 no) have_pam=no ;;
322 *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
323 esac],
324 [have_pam=auto])
325
326if test "x${have_pam}" != xno ; then
327 AC_CHECK_HEADERS(
328 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
329 [have_pam=yes],
330 [if test "x$have_pam" = xyes ; then
331 AC_MSG_ERROR([*** PAM headers not found.])
332 fi])
333
334 AC_CHECK_LIB(
335 [pam],
336 [pam_syslog],
337 [have_pam=yes],
338 [if test "x$have_pam" = xyes ; then
339 AC_MSG_ERROR([*** libpam not found.])
340 fi])
341
342 if test "x$have_pam" = xyes ; then
343 PAM_LIBS="-lpam -lpam_misc"
344 AC_DEFINE(HAVE_PAM, 1, [PAM available])
812cce32
LP
345 else
346 have_pam=no
5b6319dc
LP
347 fi
348else
349 PAM_LIBS=
350fi
351AC_SUBST(PAM_LIBS)
352AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
353
3e214785 354# ------------------------------------------------------------------------------
5eda94dd
LP
355AC_ARG_ENABLE([acl],
356 AS_HELP_STRING([--disable-acl],[Disable optional ACL support]),
357 [case "${enableval}" in
358 yes) have_acl=yes ;;
359 no) have_acl=no ;;
360 *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;;
361 esac],
362 [have_acl=auto])
363
364if test "x${have_acl}" != xno ; then
365 AC_CHECK_HEADERS(
366 [sys/acl.h acl/libacl.h],
367 [have_acl=yes],
368 [if test "x$have_acl" = xyes ; then
369 AC_MSG_ERROR([*** ACL headers not found.])
370 fi])
371
372 AC_CHECK_LIB(
373 [acl],
374 [acl_get_file],
375 [have_acl=yes],
376 [if test "x$have_acl" = xyes ; then
377 AC_MSG_ERROR([*** libacl not found.])
378 fi])
379
380 if test "x$have_acl" = xyes ; then
381 ACL_LIBS="-lacl"
382 AC_DEFINE(HAVE_ACL, 1, [ACL available])
383 else
384 have_acl=no
385 fi
386else
387 ACL_LIBS=
388fi
389AC_SUBST(ACL_LIBS)
390AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno])
391
fb0951b0
LP
392# ------------------------------------------------------------------------------
393AC_ARG_ENABLE([xattr],
394 AS_HELP_STRING([--disable-xattr],[Disable optional XATTR support]),
395 [case "${enableval}" in
396 yes) have_xattr=yes ;;
397 no) have_xattr=no ;;
398 *) AC_MSG_ERROR(bad value ${enableval} for --disable-xattr) ;;
399 esac],
400 [have_xattr=auto])
401
402if test "x${have_xattr}" != xno ; then
403 AC_CHECK_HEADERS(
404 [attr/xattr.h],
405 [have_xattr=yes],
406 [if test "x$have_xattr" = xyes ; then
407 AC_MSG_ERROR([*** XATTR headers not found.])
408 fi])
409
410 AC_CHECK_LIB(
411 [attr],
412 [fsetxattr],
413 [have_xattr=yes],
414 [if test "x$have_xattr" = xyes ; then
415 AC_MSG_ERROR([*** libattr not found.])
416 fi])
417
418 if test "x$have_xattr" = xyes ; then
419 XATTR_LIBS="-lattr"
420 AC_DEFINE(HAVE_XATTR, 1, [XATTR available])
421 else
422 have_xattr=no
423 fi
424else
425 XATTR_LIBS=
426fi
427AC_SUBST(XATTR_LIBS)
428AM_CONDITIONAL([HAVE_XATTR], [test "x$have_xattr" != xno])
429
7560fffc 430# ------------------------------------------------------------------------------
feb12d3e 431AC_ARG_ENABLE([gcrypt],
7560fffc
LP
432 AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]),
433 [case "${enableval}" in
434 yes) have_gcrypt=yes ;;
435 no) have_gcrypt=no ;;
436 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gcrypt) ;;
437 esac],
438 [have_gcrypt=auto])
439
440if test "x${have_gcrypt}" != xno ; then
441 AM_PATH_LIBGCRYPT(
442 [1.4.5],
443 [have_gcrypt=yes],
444 [if test "x$have_gcrypt" = xyes ; then
445 AC_MSG_ERROR([*** GCRYPT headers not found.])
446 fi])
447
448 if test "x$have_gcrypt" = xyes ; then
449 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
450 GCRYPT_CFLAGS="$LIBGCRYPT_CFLAGS"
451 AC_DEFINE(HAVE_GCRYPT, 1, [GCRYPT available])
452 else
453 have_gcrypt=no
454 fi
455else
456 GCRYPT_LIBS=
457 GCRYPT_CFLAGS=
458fi
459AC_SUBST(GCRYPT_LIBS)
460AC_SUBST(GCRYPT_CFLAGS)
461AM_CONDITIONAL([HAVE_GCRYPT], [test "x$have_gcrypt" != xno])
462
3e214785 463# ------------------------------------------------------------------------------
4927fcae
LP
464AC_ARG_ENABLE([audit],
465 AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]),
466 [case "${enableval}" in
467 yes) have_audit=yes ;;
468 no) have_audit=no ;;
469 *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;;
470 esac],
471 [have_audit=auto])
472
473if test "x${have_audit}" != xno ; then
474 AC_CHECK_HEADERS(
475 [libaudit.h],
476 [have_audit=yes],
477 [if test "x$have_audit" = xyes ; then
478 AC_MSG_ERROR([*** AUDIT headers not found.])
479 fi])
480
481 AC_CHECK_LIB(
482 [audit],
483 [audit_open],
484 [have_audit=yes],
485 [if test "x$have_audit" = xyes ; then
486 AC_MSG_ERROR([*** libaudit not found.])
487 fi])
488
489 if test "x$have_audit" = xyes ; then
490 AUDIT_LIBS="-laudit"
491 AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available])
492 else
493 have_audit=no
494 fi
495else
496 AUDIT_LIBS=
497fi
498AC_SUBST(AUDIT_LIBS)
499
3e214785 500# ------------------------------------------------------------------------------
7f4e0805
LP
501have_libcryptsetup=no
502AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
503if test "x$enable_libcryptsetup" != "xno"; then
880a599e 504 PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup >= 1.4.2 ],
7f4e0805 505 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
7f4e0805 506 if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
591622d7 507 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
7f4e0805
LP
508 fi
509fi
510AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
511
f6a971bc
LP
512# ------------------------------------------------------------------------------
513have_qrencode=no
514AC_ARG_ENABLE(qrencode, AS_HELP_STRING([--disable-qrencode], [disable qrencode support]))
515if test "x$enable_qrencode" != "xno"; then
516 PKG_CHECK_MODULES(QRENCODE, [ libqrencode ],
517 [AC_DEFINE(HAVE_QRENCODE, 1, [Define if qrencode is available]) have_qrencode=yes], have_qrencode=no)
518 if test "x$have_qrencode" = xno -a "x$enable_qrencode" = xyes; then
519 AC_MSG_ERROR([*** qrencode support requested but libraries not found])
520 fi
521fi
522AM_CONDITIONAL(HAVE_QRENCODE, [test "$have_qrencode" = "yes"])
523
7b17a7d7
LP
524# ------------------------------------------------------------------------------
525have_microhttpd=no
526AC_ARG_ENABLE(microhttpd, AS_HELP_STRING([--disable-microhttpd], [disable microhttpd support]))
527if test "x$enable_microhttpd" != "xno"; then
59bb9d9a 528 PKG_CHECK_MODULES(MICROHTTPD, [libmicrohttpd >= 0.9.5],
7b17a7d7
LP
529 [AC_DEFINE(HAVE_MICROHTTPD, 1, [Define if microhttpd is available]) have_microhttpd=yes], have_microhttpd=no)
530 if test "x$have_microhttpd" = xno -a "x$enable_microhttpd" = xyes; then
531 AC_MSG_ERROR([*** microhttpd support requested but libraries not found])
532 fi
533fi
534AM_CONDITIONAL(HAVE_MICROHTTPD, [test "$have_microhttpd" = "yes"])
535
3e214785 536# ------------------------------------------------------------------------------
27669061
MV
537have_binfmt=no
538AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
539if test "x$enable_binfmt" != "xno"; then
be31376e 540 have_binfmt=yes
27669061
MV
541fi
542AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
543
3e214785 544# ------------------------------------------------------------------------------
e5e83e83
LP
545have_vconsole=no
546AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool]))
547if test "x$enable_vconsole" != "xno"; then
be31376e 548 have_vconsole=yes
e5e83e83
LP
549fi
550AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"])
551
3e214785 552# ------------------------------------------------------------------------------
e5e83e83
LP
553have_readahead=no
554AC_ARG_ENABLE(readahead, AS_HELP_STRING([--disable-readahead], [disable readahead tools]))
555if test "x$enable_readahead" != "xno"; then
be31376e 556 have_readahead=yes
e5e83e83
LP
557fi
558AM_CONDITIONAL(ENABLE_READAHEAD, [test "$have_readahead" = "yes"])
559
83fdc450
AK
560# ------------------------------------------------------------------------------
561have_bootchart=no
562AC_ARG_ENABLE(bootchart, AS_HELP_STRING([--disable-bootchart], [disable bootchart tool]))
563if test "x$enable_bootchart" != "xno"; then
564 have_bootchart=yes
565fi
566AM_CONDITIONAL(ENABLE_BOOTCHART, [test "$have_bootchart" = "yes"])
567
3e214785 568# ------------------------------------------------------------------------------
4de85612
LP
569have_quotacheck=no
570AC_ARG_ENABLE(quotacheck, AS_HELP_STRING([--disable-quotacheck], [disable quotacheck tools]))
571if test "x$enable_quotacheck" != "xno"; then
be31376e 572 have_quotacheck=yes
4de85612
LP
573fi
574AM_CONDITIONAL(ENABLE_QUOTACHECK, [test "$have_quotacheck" = "yes"])
575
3e214785 576# ------------------------------------------------------------------------------
4de85612
LP
577have_randomseed=no
578AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools]))
579if test "x$enable_randomseed" != "xno"; then
be31376e 580 have_randomseed=yes
4de85612
LP
581fi
582AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"])
583
3e214785 584# ------------------------------------------------------------------------------
2a018e83
KS
585have_logind=no
586AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon]))
587if test "x$enable_logind" != "xno"; then
be31376e 588 have_logind=yes
2a018e83
KS
589fi
590AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"])
4c80c73c 591AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ])
2a018e83 592
3e214785 593# ------------------------------------------------------------------------------
b2e9fb99
MV
594have_hostnamed=no
595AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon]))
596if test "x$enable_hostnamed" != "xno"; then
be31376e 597 have_hostnamed=yes
b2e9fb99
MV
598fi
599AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"])
600
3e214785 601# ------------------------------------------------------------------------------
f47cd184
MV
602have_timedated=no
603AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon]))
604if test "x$enable_timedated" != "xno"; then
be31376e 605 have_timedated=yes
f47cd184
MV
606fi
607AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
608
3e214785 609# ------------------------------------------------------------------------------
4cd1eaa5
MV
610have_localed=no
611AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))
612if test "x$enable_localed" != "xno"; then
be31376e 613 have_localed=yes
4cd1eaa5
MV
614fi
615AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"])
616
3e214785 617# ------------------------------------------------------------------------------
f5e04665
LP
618have_coredump=no
619AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook]))
620if test "x$enable_coredump" != "xno"; then
be31376e 621 have_coredump=yes
f5e04665
LP
622fi
623AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"])
624
b1c4ca25
LP
625# ------------------------------------------------------------------------------
626AC_ARG_WITH(rc-local-script-path-start,
627 AS_HELP_STRING([--with-rc-local-script-path-start=PATH],
628 [Path to /etc/rc.local]),
629 [RC_LOCAL_SCRIPT_PATH_START="$withval"],
630 [RC_LOCAL_SCRIPT_PATH_START="/etc/rc.local"])
631
632AC_ARG_WITH(rc-local-script-path-stop,
633 AS_HELP_STRING([--with-rc-local-script-path-stop=PATH],
bc270841 634 [Path to /usr/sbin/halt.local]),
b1c4ca25 635 [RC_LOCAL_SCRIPT_PATH_STOP="$withval"],
bc270841 636 [RC_LOCAL_SCRIPT_PATH_STOP="/usr/sbin/halt.local"])
b1c4ca25
LP
637
638AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_START, ["$RC_LOCAL_SCRIPT_PATH_START"], [Path of /etc/rc.local script])
bc270841 639AC_DEFINE_UNQUOTED(RC_LOCAL_SCRIPT_PATH_STOP, ["$RC_LOCAL_SCRIPT_PATH_STOP"], [Path of /usr/sbin/halt.local script])
b1c4ca25
LP
640
641AC_SUBST(RC_LOCAL_SCRIPT_PATH_START)
642AC_SUBST(RC_LOCAL_SCRIPT_PATH_STOP)
643
a382332e
LP
644# ------------------------------------------------------------------------------
645AC_ARG_WITH(kbd-loadkeys,
646 AS_HELP_STRING([--with-kbd-loadkeys=PATH],
647 [Path to loadkeys]),
648 [KBD_LOADKEYS="$withval"],
649 [KBD_LOADKEYS="/usr/bin/loadkeys"])
650
651AC_ARG_WITH(kbd-setfont,
652 AS_HELP_STRING([--with-kbd-setfont=PATH],
653 [Path to setfont]),
654 [KBD_SETFONT="$withval"],
655 [KBD_SETFONT="/usr/bin/setfont"])
656
657AC_DEFINE_UNQUOTED(KBD_LOADKEYS, ["$KBD_LOADKEYS"], [Path of loadkeys])
658AC_DEFINE_UNQUOTED(KBD_SETFONT, ["$KBD_SETFONT"], [Path of setfont])
659
660AC_SUBST(KBD_LOADKEYS)
661AC_SUBST(KBD_SETFONT)
662
d562955e
TG
663# ------------------------------------------------------------------------------
664have_myhostname=no
f8c5a581 665AC_ARG_ENABLE(myhostname, AS_HELP_STRING([--disable-myhostname], [disable nss-myhostname support]))
d562955e
TG
666if test "x$enable_myhostname" != "xno"; then
667 AC_HEADER_STDC
668 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])
669
670 AC_C_CONST
671 AC_TYPE_SIZE_T
672 AC_HEADER_TIME
673
674 AC_FUNC_MALLOC
675 AC_FUNC_SELECT_ARGTYPES
676 AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn])
677
678 have_myhostname=yes
679fi
680AM_CONDITIONAL(HAVE_MYHOSTNAME, [test "$have_myhostname" = "yes"])
681
3e214785
KS
682# ------------------------------------------------------------------------------
683AC_ARG_WITH(firmware-path,
684 AS_HELP_STRING([--with-firmware-path=DIR[[[:DIR[...]]]]],
685 [Firmware search path (default=ROOTPREFIX/lib/firmware/updates:ROOTPREFIX/lib/firmware)]),
686 [], [with_firmware_path="$rootprefix/lib/firmware/updates:$rootprefix/lib/firmware"])
687OLD_IFS=$IFS
688IFS=:
689for i in $with_firmware_path; do
690 if test "x${FIRMWARE_PATH}" = "x"; then
691 FIRMWARE_PATH="\\\"${i}/\\\""
692 else
693 FIRMWARE_PATH="${FIRMWARE_PATH}, \\\"${i}/\\\""
694 fi
695done
696IFS=$OLD_IFS
697AC_SUBST([FIRMWARE_PATH], [$FIRMWARE_PATH])
698
699# ------------------------------------------------------------------------------
700AC_ARG_ENABLE([gudev],
701 AS_HELP_STRING([--disable-gudev], [disable Gobject libudev support @<:@default=enabled@:>@]),
702 [], [enable_gudev=yes])
703AS_IF([test "x$enable_gudev" = "xyes"], [ PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.22.0 gobject-2.0 >= 2.22.0]) ])
3e214785
KS
704AM_CONDITIONAL([ENABLE_GUDEV], [test "x$enable_gudev" = "xyes"])
705
706# ------------------------------------------------------------------------------
707AC_ARG_ENABLE([keymap],
708 AS_HELP_STRING([--disable-keymap], [disable keymap fixup support @<:@default=enabled@:>@]),
709 [], [enable_keymap=yes])
710AS_IF([test "x$enable_keymap" = "xyes"], [
711 AC_PATH_PROG([GPERF], [gperf])
712 if test -z "$GPERF"; then
713 AC_MSG_ERROR([gperf is needed])
714 fi
715
716 AC_CHECK_HEADER([linux/input.h], [:], AC_MSG_ERROR([kernel headers not found]))
717 AC_SUBST([INCLUDE_PREFIX], [$(echo '#include <linux/input.h>' | eval $ac_cpp -E - | sed -n '/linux\/input.h/ {s:.*"\(.*\)/linux/input.h".*:\1:; p; q}')])
718])
719AM_CONDITIONAL([ENABLE_KEYMAP], [test "x$enable_keymap" = "xyes"])
720
721# ------------------------------------------------------------------------------
75db9a77 722have_manpages=no
4c2b0e4e 723AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
fe1fed02
ZJS
724AS_IF([test "x$enable_manpages" != xno], [
725 AS_IF([test "x$enable_manpages" = xyes -a "x$XSLTPROC" = x], [
726 AC_MSG_ERROR([*** Manpages requested but xsltproc not found])
727 ])
728 AS_IF([test "x$XSLTPROC" != x], [have_manpages=yes])
729])
730AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
75db9a77 731
3e214785 732# ------------------------------------------------------------------------------
d1ab0ca0 733
34eff652
LP
734# Location of the init scripts as mandated by LSB
735SYSTEM_SYSVINIT_PATH=/etc/init.d
f1dd0c3f 736SYSTEM_SYSVRCND_PATH=/etc/rc.d
f975e971 737M4_DEFINES=
12e84679 738
136337ff 739AC_ARG_WITH([sysvinit-path],
be31376e 740 [AS_HELP_STRING([--with-sysvinit-path=PATH],
bc270841 741 [Specify the path to where the SysV init scripts are located])],
be31376e
KS
742 [SYSTEM_SYSVINIT_PATH="$withval"],
743 [])
136337ff
TFH
744
745AC_ARG_WITH([sysvrcd-path],
746 [AS_HELP_STRING([--with-sysvrcd-path=PATH],
bc270841 747 [Specify the path to the base directory for the SysV rcN.d directories])],
136337ff
TFH
748 [SYSTEM_SYSVRCND_PATH="$withval"],
749 [])
750
07459bb6
FF
751if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
752 AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.])
753 SYSTEM_SYSV_COMPAT="yes"
f975e971 754 M4_DEFINES="$M4_DEFINES -DHAVE_SYSV_COMPAT"
07459bb6
FF
755elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
756 AC_MSG_ERROR([*** You need both --with-sysvinit-path=PATH and --with-sysvrcd-path=PATH to enable SysV compatibility support, or both empty to disable it.])
757else
758 SYSTEM_SYSV_COMPAT="no"
759fi
760
bc270841
LP
761AC_SUBST(SYSTEM_SYSVINIT_PATH)
762AC_SUBST(SYSTEM_SYSVRCND_PATH)
763AC_SUBST(M4_DEFINES)
764
765AM_CONDITIONAL(HAVE_SYSV_COMPAT, test "$SYSTEM_SYSV_COMPAT" = "yes")
766
bef2733f 767AC_ARG_WITH([tty-gid],
a05ea46d 768 [AS_HELP_STRING([--with-tty-gid=GID],
bef2733f
LP
769 [Specify the numeric GID of the 'tty' group])],
770 [AC_DEFINE_UNQUOTED(TTY_GID, [$withval], [GID of the 'tty' group])],
771 [])
772
d2d12cd1
LP
773AC_ARG_WITH([dbuspolicydir],
774 AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
775 [],
776 [with_dbuspolicydir=`pkg-config --variable=sysconfdir dbus-1`/dbus-1/system.d])
d122948d 777
d2d12cd1
LP
778AC_ARG_WITH([dbussessionservicedir],
779 AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
780 [],
781 [with_dbussessionservicedir=`pkg-config --variable=session_bus_services_dir dbus-1`])
d122948d 782
d2d12cd1
LP
783AC_ARG_WITH([dbussystemservicedir],
784 AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
785 [],
786 [with_dbussystemservicedir=`pkg-config --variable=session_bus_services_dir dbus-1`/../system-services])
d122948d 787
d2d12cd1
LP
788AC_ARG_WITH([dbusinterfacedir],
789 AS_HELP_STRING([--with-dbusinterfacedir=DIR], [D-Bus interface directory]),
790 [],
791 [with_dbusinterfacedir=`pkg-config --variable=session_bus_services_dir dbus-1`/../interfaces])
d122948d 792
b8079ae1
KS
793AC_ARG_WITH([rootprefix],
794 AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
39ad55a9 795 [], [with_rootprefix=${ac_default_prefix}])
d2d12cd1 796
ae446765
KS
797AC_ARG_WITH([rootlibdir],
798 AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
799 [],
800 [with_rootlibdir=${libdir}])
801
9d3203b4 802AC_ARG_WITH([pamlibdir],
b0cca7d8 803 AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]),
9d3203b4
KS
804 [],
805 [with_pamlibdir=${with_rootlibdir}/security])
806
bc9bdbba
MG
807AC_ARG_ENABLE([split-usr],
808 AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]),
809 [],
810 [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [
811 enable_split_usr=yes
812 ], [
813 enable_split_usr=no
814 ])])
815
816AS_IF([test "x${enable_split_usr}" = "xyes"], [
2c6db6fb 817 AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr])
bc9bdbba 818])
2c6db6fb 819
d2d12cd1
LP
820AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
821AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
822AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
823AC_SUBST([dbusinterfacedir], [$with_dbusinterfacedir])
8c6db833 824AC_SUBST([pamlibdir], [$with_pamlibdir])
b8079ae1 825AC_SUBST([rootprefix], [$with_rootprefix])
ae446765 826AC_SUBST([rootlibdir], [$with_rootlibdir])
8c4a3079 827
3e214785
KS
828AC_CONFIG_FILES([
829 Makefile po/Makefile.in
bb061708
KS
830 docs/libudev/Makefile
831 docs/libudev/version.xml
832 docs/gudev/Makefile
833 docs/gudev/version.xml
3e214785
KS
834])
835
a45a909f 836AC_OUTPUT
ae446765 837AC_MSG_RESULT([
0571e011
LP
838 $PACKAGE_NAME $VERSION
839
7f4e0805 840 libcryptsetup: ${have_libcryptsetup}
5b6319dc
LP
841 tcpwrap: ${have_tcpwrap}
842 PAM: ${have_pam}
12716238 843 AUDIT: ${have_audit}
81611586 844 IMA: ${have_ima}
12716238 845 SELinux: ${have_selinux}
807e17f0 846 XZ: ${have_xz}
5eda94dd 847 ACL: ${have_acl}
fb0951b0 848 XATTR: ${have_xattr}
7560fffc 849 GCRYPT: ${have_gcrypt}
f6a971bc 850 QRENCODE: ${have_qrencode}
7b17a7d7 851 MICROHTTPD: ${have_microhttpd}
77e68fa2 852 CHKCONFIG: ${have_chkconfig}
27669061 853 binfmt: ${have_binfmt}
e5e83e83
LP
854 vconsole: ${have_vconsole}
855 readahead: ${have_readahead}
83fdc450 856 bootchart: ${have_bootchart}
4de85612
LP
857 quotacheck: ${have_quotacheck}
858 randomseed: ${have_randomseed}
2a018e83 859 logind: ${have_logind}
b2e9fb99 860 hostnamed: ${have_hostnamed}
f47cd184 861 timedated: ${have_timedated}
4cd1eaa5 862 localed: ${have_localed}
f5e04665 863 coredump: ${have_coredump}
e3043162 864 kmod: ${have_kmod}
f553b3b1 865 blkid: ${have_blkid}
d562955e 866 nss-myhostname: ${have_myhostname}
3e214785
KS
867 gudev: ${enable_gudev}
868 gintrospection: ${enable_introspection}
869 keymap: ${enable_keymap}
8d7e170a
LP
870 Python: ${have_python}
871 Python Headers: ${have_python_devel}
2f4da3e6
ZJS
872 man pages: ${have_manpages}
873 gtk-doc: ${enable_gtk_doc}
874 Split /usr: ${enable_split_usr}
875 SysV compatibility: ${SYSTEM_SYSV_COMPAT}
3e214785 876
8c4a3079 877 prefix: ${prefix}
b8079ae1 878 rootprefix: ${with_rootprefix}
3e214785
KS
879 sysconf dir: ${sysconfdir}
880 datarootdir: ${datarootdir}
881 includedir: ${includedir}
882 include_prefix: ${INCLUDE_PREFIX}
ae446765
KS
883 lib dir: ${libdir}
884 rootlib dir: ${with_rootlibdir}
2f4da3e6
ZJS
885 SysV init scripts: ${SYSTEM_SYSVINIT_PATH}
886 SysV rc?.d directories: ${SYSTEM_SYSVRCND_PATH}
887 Build Python: ${PYTHON}
888 Installation Python: ${PYTHON_BINARY}
889 firmware path: ${FIRMWARE_PATH}
2c6db6fb 890 PAM modules dir: ${with_pamlibdir}
2c6db6fb
LP
891 D-Bus policy dir: ${with_dbuspolicydir}
892 D-Bus session dir: ${with_dbussessionservicedir}
893 D-Bus system dir: ${with_dbussystemservicedir}
894 D-Bus interfaces dir: ${with_dbusinterfacedir}
b1c4ca25
LP
895 Extra start script: ${RC_LOCAL_SCRIPT_PATH_START}
896 Extra stop script: ${RC_LOCAL_SCRIPT_PATH_STOP}
66be6554 897
5a45a936
LP
898 CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
899 CPPLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
900 LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
568c7e02
ZJS
901 PYTHON_CFLAGS: ${PYTHON_CFLAGS}
902 PYTHON_LIBS: ${PYTHON_LIBS}
ae446765 903])