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