]> git.ipfire.org Git - thirdparty/systemd.git/blame - configure.ac
fix typos
[thirdparty/systemd.git] / configure.ac
CommitLineData
9262a519 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],
0c11f949 23 [190],
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
KS
44LT_PREREQ(2.2)
45LT_INIT
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
b51fc639
DR
67AC_PATH_PROG([QUOTAON], [quotaon], [/sbin/quotaon])
68AC_PATH_PROG([QUOTACHECK], [quotacheck], [/sbin/quotacheck])
69
80a5cbac 70# gtkdocize greps for '^GTK_DOC_CHECK', so it needs to be on its own line
92ec4495 71m4_ifdef([GTK_DOC_CHECK], [
9e45e7d8 72GTK_DOC_CHECK([1.18],[--flavour no-tmpl])
6e92b23f 73], [AM_CONDITIONAL([ENABLE_GTK_DOC], [false])])
92ec4495 74
fe1fed02
ZJS
75AS_IF([test "x$enable_gtk_doc" = "xyes" -a "x$XSLTPROC" = x], [
76 AC_MSG_ERROR([*** GTK doc requested but xsltproc not found])
77])
78
6e92b23f 79m4_ifdef([GOBJECT_INTROSPECTION_CHECK], [
0eaeca1f 80GOBJECT_INTROSPECTION_CHECK([1.31.1])
6e92b23f 81], [AM_CONDITIONAL([HAVE_INTROSPECTION], [false])])
3e214785 82
8d7e170a
LP
83AC_PATH_TOOL(OBJCOPY, objcopy)
84AC_PATH_TOOL(STRINGS, strings)
85AC_PATH_TOOL(GPERF, gperf)
b62cfcea
MB
86if test -z "$GPERF" ; then
87 AC_MSG_ERROR([*** gperf not found])
88fi
9a60da28 89
8d7e170a
LP
90# we use python to build the man page index, and for systemd-python
91have_python=no
92have_python_devel=no
9c4fa6ed 93AM_PATH_PYTHON(,, [:])
8d7e170a
LP
94if test "$PYTHON" != : ; then
95 have_python=yes
96 AC_PATH_PROG([PYTHON_CONFIG], python-config)
97
98 if test -n "$PYTHON_CONFIG" ; then
99 have_python_devel=yes
100 PYTHON_CFLAGS="`$PYTHON_CONFIG --cflags`"
101 PYTHON_LIBS="`$PYTHON_CONFIG --libs`"
102 AC_SUBST(PYTHON_CFLAGS)
103 AC_SUBST(PYTHON_LIBS)
104 fi
105fi
106AM_CONDITIONAL([HAVE_PYTHON], [test "$have_python" = "yes"])
107AM_CONDITIONAL([HAVE_PYTHON_DEVEL], [test "$have_python_devel" = "yes"])
9c4fa6ed 108
eb2e280f 109CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
be1a67d9 110 -pipe \
d1ab0ca0 111 -Wall \
d1ab0ca0 112 -Wextra \
27765dfc 113 -Wno-inline \
d1ab0ca0
LP
114 -Wundef \
115 -Wformat=2 \
116 -Wlogical-op \
117 -Wsign-compare \
118 -Wformat-security \
119 -Wmissing-include-dirs \
120 -Wformat-nonliteral \
121 -Wold-style-definition \
122 -Wpointer-arith \
123 -Winit-self \
124 -Wdeclaration-after-statement \
125 -Wfloat-equal \
126 -Wmissing-prototypes \
127 -Wstrict-prototypes \
128 -Wredundant-decls \
129 -Wmissing-declarations \
130 -Wmissing-noreturn \
131 -Wshadow \
132 -Wendif-labels \
133 -Wcast-align \
134 -Wstrict-aliasing=2 \
135 -Wwrite-strings \
be1a67d9
LP
136 -Wno-long-long \
137 -Wno-overlength-strings \
d1ab0ca0 138 -Wno-unused-parameter \
be1a67d9 139 -Wno-missing-field-initializers \
8745297f 140 -Wno-unused-result \
d200735e 141 -Werror=overflow \
be1a67d9 142 -ffast-math \
d1ab0ca0
LP
143 -fno-common \
144 -fdiagnostics-show-option \
9b85fc6a
GSB
145 -fno-strict-aliasing \
146 -fvisibility=hidden \
147 -ffunction-sections \
5a45a936 148 -fdata-sections \
c1663b9d
LP
149 -fstack-protector \
150 --param=ssp-buffer-size=4])
5a45a936
LP
151AC_SUBST([OUR_CFLAGS], $with_cflags)
152
153CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
154 -Wp,-D_FORTIFY_SOURCE=2])
155AC_SUBST([OUR_CPPFLAGS], $with_cppflags)
9e7adc3a
LDM
156
157CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\
9b85fc6a 158 -Wl,--as-needed \
5a45a936
LP
159 -Wl,--gc-sections \
160 -Wl,-z,relro \
161 -Wl,-z,now])
162AC_SUBST([OUR_LDFLAGS], $with_ldflags)
47be870b
LP
163
164AC_SEARCH_LIBS([clock_gettime], [rt], [], [AC_MSG_ERROR([*** POSIX RT library not found])])
afea26ad 165AC_SEARCH_LIBS([dlsym], [dl], [], [AC_MSG_ERROR([*** Dynamic linking loader library not found])])
85f19d82
MB
166
167save_LIBS="$LIBS"
168LIBS=
47be870b
LP
169AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
170AC_CHECK_HEADERS([sys/capability.h], [], [AC_MSG_ERROR([*** POSIX caps headers not found])])
85f19d82
MB
171CAP_LIBS="$LIBS"
172LIBS="$save_LIBS"
173AC_SUBST(CAP_LIBS)
47be870b 174
a8348796 175AC_CHECK_FUNCS([fanotify_init fanotify_mark name_to_handle_at])
4db17f29 176AC_CHECK_FUNCS([__secure_getenv secure_getenv])
a8348796
LP
177AC_CHECK_DECLS([gettid, pivot_root], [], [], [[#include <sys/types.h>
178#include <unistd.h>
179#include <sys/mount.h>]])
180
b237ef2c 181# This makes sure pkg.m4 is available.
a9b5b032 182m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
d1ab0ca0 183
3e214785
KS
184PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.3.2])
185PKG_CHECK_MODULES(KMOD, [libkmod >= 5])
186PKG_CHECK_MODULES(BLKID,[blkid >= 2.20])
728beb28 187
3e214785 188# ------------------------------------------------------------------------------
81611586
RS
189have_ima=yes
190AC_ARG_ENABLE([ima], AS_HELP_STRING([--disable-ima],[Disable optional IMA support]),
191 [case "${enableval}" in
192 yes) have_ima=yes ;;
193 no) have_ima=no ;;
194 *) AC_MSG_ERROR(bad value ${enableval} for --disable-ima) ;;
195 esac],
196 [have_ima=yes])
197
198if test "x${have_ima}" != xno ; then
199 AC_DEFINE(HAVE_IMA, 1, [Define if IMA is available])
200fi
201
3e214785 202# ------------------------------------------------------------------------------
591622d7
LP
203have_selinux=no
204AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
205if test "x$enable_selinux" != "xno"; then
3f8cc098 206 PKG_CHECK_MODULES([SELINUX], [libselinux >= 2.1.9],
591622d7 207 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available]) have_selinux=yes], have_selinux=no)
591622d7
LP
208 if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
209 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
210 fi
56cf987f 211fi
591622d7 212AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
ed061a8d
MS
213if test "x${have_selinux}" != xno ; then
214 sushell=/sbin/sushell
215else
216 sushell=/bin/bash
217fi
218AC_SUBST(sushell)
56cf987f 219
3e214785 220# ------------------------------------------------------------------------------
807e17f0
LP
221have_xz=no
222AC_ARG_ENABLE(xz, AS_HELP_STRING([--disable-xz], [Disable optional XZ support]))
223if test "x$enable_xz" != "xno"; then
224 PKG_CHECK_MODULES(XZ, [ liblzma ],
225 [AC_DEFINE(HAVE_XZ, 1, [Define if XZ is available]) have_xz=yes], have_xz=no)
807e17f0
LP
226 if test "x$have_xz" = xno -a "x$enable_xz" = xyes; then
227 AC_MSG_ERROR([*** Xz support requested but libraries not found])
228 fi
229fi
230AM_CONDITIONAL(HAVE_XZ, [test "$have_xz" = "yes"])
231
3e214785 232# ------------------------------------------------------------------------------
0213c3f8
LP
233AC_ARG_ENABLE([tcpwrap],
234 AS_HELP_STRING([--disable-tcpwrap],[Disable optional TCP wrappers support]),
235 [case "${enableval}" in
5b6319dc
LP
236 yes) have_tcpwrap=yes ;;
237 no) have_tcpwrap=no ;;
0213c3f8
LP
238 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
239 esac],
5b6319dc 240 [have_tcpwrap=auto])
0213c3f8 241
5b6319dc 242if test "x${have_tcpwrap}" != xno ; then
0213c3f8
LP
243 ACX_LIBWRAP
244 if test "x${LIBWRAP_LIBS}" = x ; then
5b6319dc
LP
245 if test "x$have_tcpwrap" = xyes ; then
246 AC_MSG_ERROR([*** TCP wrappers support not found.])
0213c3f8 247 fi
812cce32 248 have_tcpwrap=no
0213c3f8 249 else
5b6319dc 250 have_tcpwrap=yes
0213c3f8
LP
251 fi
252else
5b6319dc 253 LIBWRAP_LIBS=
0213c3f8 254fi
0213c3f8
LP
255AC_SUBST(LIBWRAP_LIBS)
256
3e214785 257# ------------------------------------------------------------------------------
5b6319dc
LP
258AC_ARG_ENABLE([pam],
259 AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
260 [case "${enableval}" in
261 yes) have_pam=yes ;;
262 no) have_pam=no ;;
263 *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
264 esac],
265 [have_pam=auto])
266
267if test "x${have_pam}" != xno ; then
268 AC_CHECK_HEADERS(
269 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
270 [have_pam=yes],
271 [if test "x$have_pam" = xyes ; then
272 AC_MSG_ERROR([*** PAM headers not found.])
273 fi])
274
275 AC_CHECK_LIB(
276 [pam],
277 [pam_syslog],
278 [have_pam=yes],
279 [if test "x$have_pam" = xyes ; then
280 AC_MSG_ERROR([*** libpam not found.])
281 fi])
282
283 if test "x$have_pam" = xyes ; then
284 PAM_LIBS="-lpam -lpam_misc"
285 AC_DEFINE(HAVE_PAM, 1, [PAM available])
812cce32
LP
286 else
287 have_pam=no
5b6319dc
LP
288 fi
289else
290 PAM_LIBS=
291fi
292AC_SUBST(PAM_LIBS)
293AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
294
3e214785 295# ------------------------------------------------------------------------------
5eda94dd
LP
296AC_ARG_ENABLE([acl],
297 AS_HELP_STRING([--disable-acl],[Disable optional ACL support]),
298 [case "${enableval}" in
299 yes) have_acl=yes ;;
300 no) have_acl=no ;;
301 *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;;
302 esac],
303 [have_acl=auto])
304
305if test "x${have_acl}" != xno ; then
306 AC_CHECK_HEADERS(
307 [sys/acl.h acl/libacl.h],
308 [have_acl=yes],
309 [if test "x$have_acl" = xyes ; then
310 AC_MSG_ERROR([*** ACL headers not found.])
311 fi])
312
313 AC_CHECK_LIB(
314 [acl],
315 [acl_get_file],
316 [have_acl=yes],
317 [if test "x$have_acl" = xyes ; then
318 AC_MSG_ERROR([*** libacl not found.])
319 fi])
320
321 if test "x$have_acl" = xyes ; then
322 ACL_LIBS="-lacl"
323 AC_DEFINE(HAVE_ACL, 1, [ACL available])
324 else
325 have_acl=no
326 fi
327else
328 ACL_LIBS=
329fi
330AC_SUBST(ACL_LIBS)
331AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno])
332
7560fffc 333# ------------------------------------------------------------------------------
feb12d3e 334AC_ARG_ENABLE([gcrypt],
7560fffc
LP
335 AS_HELP_STRING([--disable-gcrypt],[Disable optional GCRYPT support]),
336 [case "${enableval}" in
337 yes) have_gcrypt=yes ;;
338 no) have_gcrypt=no ;;
339 *) AC_MSG_ERROR(bad value ${enableval} for --disable-gcrypt) ;;
340 esac],
341 [have_gcrypt=auto])
342
343if test "x${have_gcrypt}" != xno ; then
344 AM_PATH_LIBGCRYPT(
345 [1.4.5],
346 [have_gcrypt=yes],
347 [if test "x$have_gcrypt" = xyes ; then
348 AC_MSG_ERROR([*** GCRYPT headers not found.])
349 fi])
350
351 if test "x$have_gcrypt" = xyes ; then
352 GCRYPT_LIBS="$LIBGCRYPT_LIBS"
353 GCRYPT_CFLAGS="$LIBGCRYPT_CFLAGS"
354 AC_DEFINE(HAVE_GCRYPT, 1, [GCRYPT available])
355 else
356 have_gcrypt=no
357 fi
358else
359 GCRYPT_LIBS=
360 GCRYPT_CFLAGS=
361fi
362AC_SUBST(GCRYPT_LIBS)
363AC_SUBST(GCRYPT_CFLAGS)
364AM_CONDITIONAL([HAVE_GCRYPT], [test "x$have_gcrypt" != xno])
365
3e214785 366# ------------------------------------------------------------------------------
4927fcae
LP
367AC_ARG_ENABLE([audit],
368 AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]),
369 [case "${enableval}" in
370 yes) have_audit=yes ;;
371 no) have_audit=no ;;
372 *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;;
373 esac],
374 [have_audit=auto])
375
376if test "x${have_audit}" != xno ; then
377 AC_CHECK_HEADERS(
378 [libaudit.h],
379 [have_audit=yes],
380 [if test "x$have_audit" = xyes ; then
381 AC_MSG_ERROR([*** AUDIT headers not found.])
382 fi])
383
384 AC_CHECK_LIB(
385 [audit],
386 [audit_open],
387 [have_audit=yes],
388 [if test "x$have_audit" = xyes ; then
389 AC_MSG_ERROR([*** libaudit not found.])
390 fi])
391
392 if test "x$have_audit" = xyes ; then
393 AUDIT_LIBS="-laudit"
394 AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available])
395 else
396 have_audit=no
397 fi
398else
399 AUDIT_LIBS=
400fi
401AC_SUBST(AUDIT_LIBS)
402
3e214785 403# ------------------------------------------------------------------------------
7f4e0805
LP
404have_libcryptsetup=no
405AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
406if test "x$enable_libcryptsetup" != "xno"; then
880a599e 407 PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup >= 1.4.2 ],
7f4e0805 408 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
7f4e0805 409 if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
591622d7 410 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
7f4e0805
LP
411 fi
412fi
413AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
414
f6a971bc
LP
415# ------------------------------------------------------------------------------
416have_qrencode=no
417AC_ARG_ENABLE(qrencode, AS_HELP_STRING([--disable-qrencode], [disable qrencode support]))
418if test "x$enable_qrencode" != "xno"; then
419 PKG_CHECK_MODULES(QRENCODE, [ libqrencode ],
420 [AC_DEFINE(HAVE_QRENCODE, 1, [Define if qrencode is available]) have_qrencode=yes], have_qrencode=no)
421 if test "x$have_qrencode" = xno -a "x$enable_qrencode" = xyes; then
422 AC_MSG_ERROR([*** qrencode support requested but libraries not found])
423 fi
424fi
425AM_CONDITIONAL(HAVE_QRENCODE, [test "$have_qrencode" = "yes"])
426
3e214785 427# ------------------------------------------------------------------------------
27669061
MV
428have_binfmt=no
429AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
430if test "x$enable_binfmt" != "xno"; then
be31376e 431 have_binfmt=yes
27669061
MV
432fi
433AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
434
3e214785 435# ------------------------------------------------------------------------------
e5e83e83
LP
436have_vconsole=no
437AC_ARG_ENABLE(vconsole, AS_HELP_STRING([--disable-vconsole], [disable vconsole tool]))
438if test "x$enable_vconsole" != "xno"; then
be31376e 439 have_vconsole=yes
e5e83e83
LP
440fi
441AM_CONDITIONAL(ENABLE_VCONSOLE, [test "$have_vconsole" = "yes"])
442
3e214785 443# ------------------------------------------------------------------------------
e5e83e83
LP
444have_readahead=no
445AC_ARG_ENABLE(readahead, AS_HELP_STRING([--disable-readahead], [disable readahead tools]))
446if test "x$enable_readahead" != "xno"; then
be31376e 447 have_readahead=yes
e5e83e83
LP
448fi
449AM_CONDITIONAL(ENABLE_READAHEAD, [test "$have_readahead" = "yes"])
450
3e214785 451# ------------------------------------------------------------------------------
4de85612
LP
452have_quotacheck=no
453AC_ARG_ENABLE(quotacheck, AS_HELP_STRING([--disable-quotacheck], [disable quotacheck tools]))
454if test "x$enable_quotacheck" != "xno"; then
be31376e 455 have_quotacheck=yes
4de85612
LP
456fi
457AM_CONDITIONAL(ENABLE_QUOTACHECK, [test "$have_quotacheck" = "yes"])
458
3e214785 459# ------------------------------------------------------------------------------
4de85612
LP
460have_randomseed=no
461AC_ARG_ENABLE(randomseed, AS_HELP_STRING([--disable-randomseed], [disable randomseed tools]))
462if test "x$enable_randomseed" != "xno"; then
be31376e 463 have_randomseed=yes
4de85612
LP
464fi
465AM_CONDITIONAL(ENABLE_RANDOMSEED, [test "$have_randomseed" = "yes"])
466
3e214785 467# ------------------------------------------------------------------------------
2a018e83
KS
468have_logind=no
469AC_ARG_ENABLE(logind, AS_HELP_STRING([--disable-logind], [disable login daemon]))
470if test "x$enable_logind" != "xno"; then
be31376e 471 have_logind=yes
2a018e83
KS
472fi
473AM_CONDITIONAL(ENABLE_LOGIND, [test "$have_logind" = "yes"])
4c80c73c 474AS_IF([test "$have_logind" = "yes"], [ AC_DEFINE(HAVE_LOGIND, [1], [Logind support available]) ])
2a018e83 475
3e214785 476# ------------------------------------------------------------------------------
b2e9fb99
MV
477have_hostnamed=no
478AC_ARG_ENABLE(hostnamed, AS_HELP_STRING([--disable-hostnamed], [disable hostname daemon]))
479if test "x$enable_hostnamed" != "xno"; then
be31376e 480 have_hostnamed=yes
b2e9fb99
MV
481fi
482AM_CONDITIONAL(ENABLE_HOSTNAMED, [test "$have_hostnamed" = "yes"])
483
3e214785 484# ------------------------------------------------------------------------------
f47cd184
MV
485have_timedated=no
486AC_ARG_ENABLE(timedated, AS_HELP_STRING([--disable-timedated], [disable timedate daemon]))
487if test "x$enable_timedated" != "xno"; then
be31376e 488 have_timedated=yes
f47cd184
MV
489fi
490AM_CONDITIONAL(ENABLE_TIMEDATED, [test "$have_timedated" = "yes"])
491
3e214785 492# ------------------------------------------------------------------------------
4cd1eaa5
MV
493have_localed=no
494AC_ARG_ENABLE(localed, AS_HELP_STRING([--disable-localed], [disable locale daemon]))
495if test "x$enable_localed" != "xno"; then
be31376e 496 have_localed=yes
4cd1eaa5
MV
497fi
498AM_CONDITIONAL(ENABLE_LOCALED, [test "$have_localed" = "yes"])
499
3e214785 500# ------------------------------------------------------------------------------
f5e04665
LP
501have_coredump=no
502AC_ARG_ENABLE(coredump, AS_HELP_STRING([--disable-coredump], [disable coredump hook]))
503if test "x$enable_coredump" != "xno"; then
be31376e 504 have_coredump=yes
f5e04665
LP
505fi
506AM_CONDITIONAL(ENABLE_COREDUMP, [test "$have_coredump" = "yes"])
507
3e214785 508# ------------------------------------------------------------------------------
3e214785 509AC_ARG_WITH(usb-ids-path,
9a203aff
KS
510 [AS_HELP_STRING([--with-usb-ids-path=DIR], [Path to usb.ids file])],
511 [USB_DATABASE=${withval}],
512 [if test -n "$usbids" ; then
513 USB_DATABASE="$usbids"
514 else
515 PKG_CHECK_MODULES(USBUTILS, usbutils >= 0.82)
516 AC_SUBST([USB_DATABASE], [$($PKG_CONFIG --variable=usbids usbutils)])
517 fi])
3e214785
KS
518AC_MSG_CHECKING([for USB database location])
519AC_MSG_RESULT([$USB_DATABASE])
520AC_SUBST(USB_DATABASE)
521
522AC_ARG_WITH(pci-ids-path,
9a203aff
KS
523 [AS_HELP_STRING([--with-pci-ids-path=DIR], [Path to pci.ids file])],
524 [PCI_DATABASE=${withval}],
525 [if test -n "$pciids" ; then
526 PCI_DATABASE="$pciids"
527 else
528 PKG_CHECK_MODULES(LIBPCI, libpci >= 3)
529 AC_SUBST([PCI_DATABASE], [$($PKG_CONFIG --variable=idsdir libpci)/pci.ids])
530 fi])
3e214785
KS
531AC_MSG_CHECKING([for PCI database location])
532AC_MSG_RESULT([$PCI_DATABASE])
533AC_SUBST(PCI_DATABASE)
534
535# ------------------------------------------------------------------------------
536AC_ARG_WITH(firmware-path,
537 AS_HELP_STRING([--with-firmware-path=DIR[[[:DIR[...]]]]],
538 [Firmware search path (default=ROOTPREFIX/lib/firmware/updates:ROOTPREFIX/lib/firmware)]),
539 [], [with_firmware_path="$rootprefix/lib/firmware/updates:$rootprefix/lib/firmware"])
540OLD_IFS=$IFS
541IFS=:
542for i in $with_firmware_path; do
543 if test "x${FIRMWARE_PATH}" = "x"; then
544 FIRMWARE_PATH="\\\"${i}/\\\""
545 else
546 FIRMWARE_PATH="${FIRMWARE_PATH}, \\\"${i}/\\\""
547 fi
548done
549IFS=$OLD_IFS
550AC_SUBST([FIRMWARE_PATH], [$FIRMWARE_PATH])
551
552# ------------------------------------------------------------------------------
553AC_ARG_ENABLE([gudev],
554 AS_HELP_STRING([--disable-gudev], [disable Gobject libudev support @<:@default=enabled@:>@]),
555 [], [enable_gudev=yes])
556AS_IF([test "x$enable_gudev" = "xyes"], [ PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.22.0 gobject-2.0 >= 2.22.0]) ])
3e214785
KS
557AM_CONDITIONAL([ENABLE_GUDEV], [test "x$enable_gudev" = "xyes"])
558
559# ------------------------------------------------------------------------------
560AC_ARG_ENABLE([keymap],
561 AS_HELP_STRING([--disable-keymap], [disable keymap fixup support @<:@default=enabled@:>@]),
562 [], [enable_keymap=yes])
563AS_IF([test "x$enable_keymap" = "xyes"], [
564 AC_PATH_PROG([GPERF], [gperf])
565 if test -z "$GPERF"; then
566 AC_MSG_ERROR([gperf is needed])
567 fi
568
569 AC_CHECK_HEADER([linux/input.h], [:], AC_MSG_ERROR([kernel headers not found]))
570 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}')])
571])
572AM_CONDITIONAL([ENABLE_KEYMAP], [test "x$enable_keymap" = "xyes"])
573
574# ------------------------------------------------------------------------------
75db9a77 575have_manpages=no
4c2b0e4e 576AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-manpages], [disable manpages]))
fe1fed02
ZJS
577AS_IF([test "x$enable_manpages" != xno], [
578 AS_IF([test "x$enable_manpages" = xyes -a "x$XSLTPROC" = x], [
579 AC_MSG_ERROR([*** Manpages requested but xsltproc not found])
580 ])
581 AS_IF([test "x$XSLTPROC" != x], [have_manpages=yes])
582])
583AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
75db9a77 584
3e214785 585# ------------------------------------------------------------------------------
d1ab0ca0 586
8401e9f9 587AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO],[Specify the distribution to target: One of fedora, suse, debian, ubuntu, arch, gentoo, slackware, altlinux, mandriva, mageia, angstrom or other]))
0571e011
LP
588if test "z$with_distro" = "z"; then
589 if test "$cross_compiling" = yes; then
590 AC_MSG_WARN([Target distribution cannot be reliably detected when cross-compiling. You should specify it with --with-distro (see $0 --help for recognized distros)])
591 else
c87f7103 592 with_distro=$($GREP '^ID=' /etc/os-release 2>/dev/null | $SED 's/ID=//');
0571e011
LP
593 fi
594 if test "z$with_distro" = "z"; then
3ce4fad8 595 with_distro=other
0571e011
LP
596 fi
597fi
598with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]' `
7d568925 599AC_DEFINE_UNQUOTED(DISTRIBUTION, ["${with_distro}"], [Target Distribution])
0571e011 600
34eff652
LP
601# Location of the init scripts as mandated by LSB
602SYSTEM_SYSVINIT_PATH=/etc/init.d
f1dd0c3f 603SYSTEM_SYSVRCND_PATH=/etc/rc.d
34eff652 604
f975e971 605M4_DEFINES=
12e84679 606
0571e011
LP
607case $with_distro in
608 fedora)
609 SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
2c696a96 610 AC_DEFINE(TARGET_FEDORA, [], [Target is Fedora/RHEL])
f975e971 611 M4_DEFINES=-DTARGET_FEDORA=1
0571e011 612 ;;
3ce4fad8 613 opensuse|suse)
0571e011 614 SYSTEM_SYSVRCND_PATH=/etc/init.d
634826b5 615 AC_DEFINE(TARGET_SUSE, [], [Target is openSUSE/SLE])
f975e971 616 M4_DEFINES=-DTARGET_SUSE=1
0571e011
LP
617 ;;
618 debian)
0571e011 619 SYSTEM_SYSVRCND_PATH=/etc
858dae18 620 AC_DEFINE(TARGET_DEBIAN, [], [Target is Debian])
f975e971 621 M4_DEFINES=-DTARGET_DEBIAN=1
0571e011 622 ;;
858dae18
AE
623 ubuntu)
624 SYSTEM_SYSVRCND_PATH=/etc
858dae18 625 AC_DEFINE(TARGET_UBUNTU, [], [Target is Ubuntu])
f975e971 626 M4_DEFINES=-DTARGET_UBUNTU=1
858dae18 627 ;;
d7c114c0 628 arch)
4bf43a32
TG
629 SYSTEM_SYSVINIT_PATH=
630 SYSTEM_SYSVRCND_PATH=
d7c114c0 631 AC_DEFINE(TARGET_ARCH, [], [Target is ArchLinux])
f975e971 632 M4_DEFINES=-DTARGET_ARCH=1
d7c114c0 633 ;;
f2b4af1c 634 gentoo)
07459bb6
FF
635 SYSTEM_SYSVINIT_PATH=
636 SYSTEM_SYSVRCND_PATH=
f2b4af1c 637 AC_DEFINE(TARGET_GENTOO, [], [Target is Gentoo])
f975e971 638 M4_DEFINES=-DTARGET_GENTOO=1
f2b4af1c 639 ;;
65c8976a
MS
640 slackware)
641 SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
65c8976a 642 AC_DEFINE(TARGET_SLACKWARE, [], [Target is Slackware])
f975e971 643 M4_DEFINES=-DTARGET_SLACKWARE=1
65c8976a 644 ;;
f5c88ec1
MV
645 frugalware)
646 SYSTEM_SYSVINIT_PATH=/etc/rc.d
f5c88ec1 647 AC_DEFINE(TARGET_FRUGALWARE, [], [Target is Frugalware])
f975e971 648 M4_DEFINES=-DTARGET_FRUGALWARE=1
f5c88ec1 649 ;;
a338bab5
AS
650 altlinux)
651 SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
a338bab5 652 AC_DEFINE(TARGET_ALTLINUX, [], [Target is ALTLinux])
f975e971 653 M4_DEFINES=-DTARGET_ALTLINUX=1
a338bab5 654 ;;
1de4d79b
AB
655 mandriva)
656 SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
1de4d79b 657 AC_DEFINE(TARGET_MANDRIVA, [], [Target is Mandriva])
f975e971 658 M4_DEFINES=-DTARGET_MANDRIVA=1
1de4d79b 659 ;;
1bd8b818
KK
660 angstrom)
661 SYSTEM_SYSVRCND_PATH=/etc
662 AC_DEFINE(TARGET_ANGSTROM, [], [Target is Ångström])
f975e971 663 M4_DEFINES=-DTARGET_ANGSTROM=1
1bd8b818 664 ;;
6fdae8a6
DM
665 mageia)
666 SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
667 AC_DEFINE(TARGET_MAGEIA, [], [Target is Mageia])
fbf5b126 668 M4_DEFINES=-DTARGET_MAGEIA=1
6fdae8a6 669 ;;
bf024b02 670 other)
0571e011
LP
671 ;;
672 *)
bf024b02 673 AC_MSG_ERROR([Your distribution (${with_distro}) is not yet supported, SysV init scripts could not be found! (patches welcome); you can specify --with-distro=other to skip this check])
0571e011
LP
674 ;;
675esac
676
136337ff 677AC_ARG_WITH([sysvinit-path],
be31376e
KS
678 [AS_HELP_STRING([--with-sysvinit-path=PATH],
679 [Specify the path to where the SysV init scripts are located @<:@default=based on distro@:>@])],
680 [SYSTEM_SYSVINIT_PATH="$withval"],
681 [])
136337ff
TFH
682
683AC_ARG_WITH([sysvrcd-path],
684 [AS_HELP_STRING([--with-sysvrcd-path=PATH],
685 [Specify the path to the base directory for the SysV rcN.d directories @<:@default=based on distro@:>@])],
686 [SYSTEM_SYSVRCND_PATH="$withval"],
687 [])
688
0571e011 689AC_SUBST(SYSTEM_SYSVINIT_PATH)
d64b723a 690AC_SUBST(SYSTEM_SYSVRCND_PATH)
f975e971 691AC_SUBST(M4_DEFINES)
0571e011 692
07459bb6
FF
693if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
694 AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.])
695 SYSTEM_SYSV_COMPAT="yes"
f975e971 696 M4_DEFINES="$M4_DEFINES -DHAVE_SYSV_COMPAT"
07459bb6
FF
697elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
698 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.])
699else
700 SYSTEM_SYSV_COMPAT="no"
701fi
702
bef2733f 703AC_ARG_WITH([tty-gid],
a05ea46d 704 [AS_HELP_STRING([--with-tty-gid=GID],
bef2733f
LP
705 [Specify the numeric GID of the 'tty' group])],
706 [AC_DEFINE_UNQUOTED(TTY_GID, [$withval], [GID of the 'tty' group])],
707 [])
708
0571e011
LP
709AM_CONDITIONAL(TARGET_FEDORA, test x"$with_distro" = xfedora)
710AM_CONDITIONAL(TARGET_SUSE, test x"$with_distro" = xsuse)
711AM_CONDITIONAL(TARGET_DEBIAN, test x"$with_distro" = xdebian)
858dae18
AE
712AM_CONDITIONAL(TARGET_UBUNTU, test x"$with_distro" = xubuntu)
713AM_CONDITIONAL(TARGET_DEBIAN_OR_UBUNTU, test x"$with_distro" = xdebian -o x"$with_distro" = xubuntu)
d7c114c0 714AM_CONDITIONAL(TARGET_ARCH, test x"$with_distro" = xarch)
f2b4af1c 715AM_CONDITIONAL(TARGET_GENTOO, test x"$with_distro" = xgentoo)
65c8976a 716AM_CONDITIONAL(TARGET_SLACKWARE, test x"$with_distro" = xslackware)
f5c88ec1 717AM_CONDITIONAL(TARGET_FRUGALWARE, test x"$with_distro" = xfrugalware)
a338bab5 718AM_CONDITIONAL(TARGET_ALTLINUX, test x"$with_distro" = xaltlinux)
1de4d79b 719AM_CONDITIONAL(TARGET_MANDRIVA, test x"$with_distro" = xmandriva)
1bd8b818 720AM_CONDITIONAL(TARGET_ANGSTROM, test x"$with_distro" = xangstrom)
6fdae8a6 721AM_CONDITIONAL(TARGET_MAGEIA, test x"$with_distro" = xmageia)
0571e011 722
cca4aeee 723AM_CONDITIONAL(HAVE_SYSV_COMPAT, test "$SYSTEM_SYSV_COMPAT" = "yes")
cd3f8b7d 724
d2d12cd1
LP
725AC_ARG_WITH([dbuspolicydir],
726 AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
727 [],
728 [with_dbuspolicydir=`pkg-config --variable=sysconfdir dbus-1`/dbus-1/system.d])
d122948d 729
d2d12cd1
LP
730AC_ARG_WITH([dbussessionservicedir],
731 AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
732 [],
733 [with_dbussessionservicedir=`pkg-config --variable=session_bus_services_dir dbus-1`])
d122948d 734
d2d12cd1
LP
735AC_ARG_WITH([dbussystemservicedir],
736 AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
737 [],
738 [with_dbussystemservicedir=`pkg-config --variable=session_bus_services_dir dbus-1`/../system-services])
d122948d 739
d2d12cd1
LP
740AC_ARG_WITH([dbusinterfacedir],
741 AS_HELP_STRING([--with-dbusinterfacedir=DIR], [D-Bus interface directory]),
742 [],
743 [with_dbusinterfacedir=`pkg-config --variable=session_bus_services_dir dbus-1`/../interfaces])
d122948d 744
b8079ae1
KS
745AC_ARG_WITH([rootprefix],
746 AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
39ad55a9 747 [], [with_rootprefix=${ac_default_prefix}])
d2d12cd1 748
ae446765
KS
749AC_ARG_WITH([rootlibdir],
750 AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
751 [],
752 [with_rootlibdir=${libdir}])
753
9d3203b4 754AC_ARG_WITH([pamlibdir],
b0cca7d8 755 AS_HELP_STRING([--with-pamlibdir=DIR], [Directory for PAM modules]),
9d3203b4
KS
756 [],
757 [with_pamlibdir=${with_rootlibdir}/security])
758
bc9bdbba
MG
759AC_ARG_ENABLE([split-usr],
760 AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]),
761 [],
762 [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [
763 enable_split_usr=yes
764 ], [
765 enable_split_usr=no
766 ])])
767
768AS_IF([test "x${enable_split_usr}" = "xyes"], [
2c6db6fb 769 AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr])
bc9bdbba 770])
2c6db6fb 771
d2d12cd1
LP
772AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
773AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
774AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
775AC_SUBST([dbusinterfacedir], [$with_dbusinterfacedir])
8c6db833 776AC_SUBST([pamlibdir], [$with_pamlibdir])
b8079ae1 777AC_SUBST([rootprefix], [$with_rootprefix])
ae446765 778AC_SUBST([rootlibdir], [$with_rootlibdir])
8c4a3079 779
3e214785
KS
780AC_CONFIG_FILES([
781 Makefile po/Makefile.in
bb061708
KS
782 docs/libudev/Makefile
783 docs/libudev/version.xml
784 docs/gudev/Makefile
785 docs/gudev/version.xml
3e214785
KS
786])
787
a45a909f 788AC_OUTPUT
ae446765 789AC_MSG_RESULT([
0571e011
LP
790 $PACKAGE_NAME $VERSION
791
2c696a96 792 Distribution: ${with_distro}
07459bb6 793 SysV compatibility: ${SYSTEM_SYSV_COMPAT}
0571e011
LP
794 SysV init scripts: ${SYSTEM_SYSVINIT_PATH}
795 SysV rc?.d directories: ${SYSTEM_SYSVRCND_PATH}
7f4e0805 796 libcryptsetup: ${have_libcryptsetup}
5b6319dc
LP
797 tcpwrap: ${have_tcpwrap}
798 PAM: ${have_pam}
12716238 799 AUDIT: ${have_audit}
81611586 800 IMA: ${have_ima}
12716238 801 SELinux: ${have_selinux}
807e17f0 802 XZ: ${have_xz}
5eda94dd 803 ACL: ${have_acl}
7560fffc 804 GCRYPT: ${have_gcrypt}
f6a971bc 805 QRENCODE: ${have_qrencode}
27669061 806 binfmt: ${have_binfmt}
e5e83e83
LP
807 vconsole: ${have_vconsole}
808 readahead: ${have_readahead}
4de85612
LP
809 quotacheck: ${have_quotacheck}
810 randomseed: ${have_randomseed}
2a018e83 811 logind: ${have_logind}
b2e9fb99 812 hostnamed: ${have_hostnamed}
f47cd184 813 timedated: ${have_timedated}
4cd1eaa5 814 localed: ${have_localed}
f5e04665 815 coredump: ${have_coredump}
3e214785
KS
816 firmware path: ${FIRMWARE_PATH}
817 usb.ids: ${USB_DATABASE}
818 pci.ids: ${PCI_DATABASE}
819 gudev: ${enable_gudev}
820 gintrospection: ${enable_introspection}
821 keymap: ${enable_keymap}
8d7e170a
LP
822 Python: ${have_python}
823 Python Headers: ${have_python_devel}
3e214785 824
8c4a3079 825 prefix: ${prefix}
b8079ae1 826 rootprefix: ${with_rootprefix}
3e214785
KS
827 sysconf dir: ${sysconfdir}
828 datarootdir: ${datarootdir}
829 includedir: ${includedir}
830 include_prefix: ${INCLUDE_PREFIX}
ae446765
KS
831 lib dir: ${libdir}
832 rootlib dir: ${with_rootlibdir}
2c6db6fb 833 PAM modules dir: ${with_pamlibdir}
2c6db6fb
LP
834 D-Bus policy dir: ${with_dbuspolicydir}
835 D-Bus session dir: ${with_dbussessionservicedir}
836 D-Bus system dir: ${with_dbussystemservicedir}
837 D-Bus interfaces dir: ${with_dbusinterfacedir}
bc9bdbba 838 Split /usr: ${enable_split_usr}
5ee9f21e 839 man pages: ${have_manpages}
fe1fed02 840 gtk-doc: ${enable_gtk_doc}
66be6554 841
5a45a936
LP
842 CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
843 CPPLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
844 LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
ae446765 845])