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