]> git.ipfire.org Git - thirdparty/systemd.git/blame - configure.ac
def: centralize definition of default timeout in one place
[thirdparty/systemd.git] / configure.ac
CommitLineData
47be870b
LP
1# This file is part of systemd.
2#
3# Copyright 2010 Lennart Poettering
4#
5# systemd is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# systemd is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with systemd; If not, see <http://www.gnu.org/licenses/>.
17
18AC_PREREQ(2.63)
19
6e25b33c 20AC_INIT([systemd],[20],[systemd-devel@lists.freedesktop.org])
e99e38bb 21AC_CONFIG_SRCDIR([src/main.c])
47be870b
LP
22AC_CONFIG_MACRO_DIR([m4])
23AC_CONFIG_HEADERS([config.h])
24
b60e6bbf 25AM_INIT_AUTOMAKE([foreign 1.11 -Wall -Wno-portability silent-rules tar-pax subdir-objects dist-bzip2])
47be870b 26
1b322bdb 27AC_SUBST(PACKAGE_URL, [http://www.freedesktop.org/wiki/Software/systemd])
47be870b
LP
28
29AC_CANONICAL_HOST
22be093f 30AC_DEFINE_UNQUOTED([CANONICAL_HOST], "$host", [Canonical host string.])
47be870b
LP
31
32AM_SILENT_RULES([yes])
33
34AC_CHECK_PROG([STOW], [stow], [yes], [no])
35
36AS_IF([test "x$STOW" = "xyes" && test -d /usr/local/stow], [
37 AC_MSG_NOTICE([*** Found /usr/local/stow: default install prefix set to /usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION} ***])
38 ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
39])
40
e9da3678
LP
41AC_PROG_MKDIR_P
42AC_PROG_LN_S
43AC_PROG_SED
44
47be870b
LP
45AC_PROG_CC
46AC_PROG_CC_C99
47AM_PROG_CC_C_O
48AC_PROG_GCC_TRADITIONAL
49AC_USE_SYSTEM_EXTENSIONS
50
9a60da28
TR
51AC_CHECK_TOOL(OBJCOPY, objcopy)
52AC_CHECK_TOOL(STRINGS, strings)
53
d1ab0ca0 54CC_CHECK_CFLAGS_APPEND([ \
be1a67d9 55 -pipe \
d1ab0ca0
LP
56 -Wall \
57 -W \
58 -Wextra \
27765dfc 59 -Wno-inline \
d1ab0ca0 60 -Wvla \
d1ab0ca0
LP
61 -Wundef \
62 -Wformat=2 \
63 -Wlogical-op \
64 -Wsign-compare \
65 -Wformat-security \
66 -Wmissing-include-dirs \
67 -Wformat-nonliteral \
68 -Wold-style-definition \
69 -Wpointer-arith \
70 -Winit-self \
71 -Wdeclaration-after-statement \
72 -Wfloat-equal \
73 -Wmissing-prototypes \
74 -Wstrict-prototypes \
75 -Wredundant-decls \
76 -Wmissing-declarations \
77 -Wmissing-noreturn \
78 -Wshadow \
79 -Wendif-labels \
80 -Wcast-align \
81 -Wstrict-aliasing=2 \
82 -Wwrite-strings \
be1a67d9
LP
83 -Wno-long-long \
84 -Wno-overlength-strings \
d1ab0ca0 85 -Wno-unused-parameter \
be1a67d9 86 -Wno-missing-field-initializers \
8745297f 87 -Wno-unused-result \
d1ab0ca0 88 -Wp,-D_FORTIFY_SOURCE=2 \
be1a67d9 89 -ffast-math \
d1ab0ca0
LP
90 -fno-common \
91 -fdiagnostics-show-option \
9b85fc6a
GSB
92 -fno-strict-aliasing \
93 -fvisibility=hidden \
94 -ffunction-sections \
95 -fdata-sections \
96 -Wl,--as-needed \
97 -Wl,--gc-sections])
47be870b 98
139be57d
LP
99LT_PREREQ(2.2)
100LT_INIT
101
47be870b 102AC_SEARCH_LIBS([clock_gettime], [rt], [], [AC_MSG_ERROR([*** POSIX RT library not found])])
afea26ad 103AC_SEARCH_LIBS([dlsym], [dl], [], [AC_MSG_ERROR([*** Dynamic linking loader library not found])])
47be870b
LP
104AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
105AC_CHECK_HEADERS([sys/capability.h], [], [AC_MSG_ERROR([*** POSIX caps headers not found])])
106
b237ef2c 107# This makes sure pkg.m4 is available.
a9b5b032 108m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
d1ab0ca0 109
f1dfb629 110PKG_CHECK_MODULES(UDEV, [ libudev >= 160 ])
47be870b
LP
111AC_SUBST(UDEV_CFLAGS)
112AC_SUBST(UDEV_LIBS)
113
83bda358 114PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 1.3.2 ])
47be870b
LP
115AC_SUBST(DBUS_CFLAGS)
116AC_SUBST(DBUS_LIBS)
117
591622d7
LP
118have_selinux=no
119AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
120if test "x$enable_selinux" != "xno"; then
121 PKG_CHECK_MODULES(SELINUX, [ libselinux ],
122 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available]) have_selinux=yes], have_selinux=no)
123 AC_SUBST(SELINUX_CFLAGS)
124 AC_SUBST(SELINUX_LIBS)
125 if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
126 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
127 fi
56cf987f 128fi
591622d7 129AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
56cf987f 130
0213c3f8
LP
131AC_ARG_ENABLE([tcpwrap],
132 AS_HELP_STRING([--disable-tcpwrap],[Disable optional TCP wrappers support]),
133 [case "${enableval}" in
5b6319dc
LP
134 yes) have_tcpwrap=yes ;;
135 no) have_tcpwrap=no ;;
0213c3f8
LP
136 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
137 esac],
5b6319dc 138 [have_tcpwrap=auto])
0213c3f8 139
5b6319dc 140if test "x${have_tcpwrap}" != xno ; then
0213c3f8
LP
141 ACX_LIBWRAP
142 if test "x${LIBWRAP_LIBS}" = x ; then
5b6319dc
LP
143 if test "x$have_tcpwrap" = xyes ; then
144 AC_MSG_ERROR([*** TCP wrappers support not found.])
0213c3f8 145 fi
812cce32 146 have_tcpwrap=no
0213c3f8 147 else
5b6319dc 148 have_tcpwrap=yes
0213c3f8
LP
149 fi
150else
5b6319dc 151 LIBWRAP_LIBS=
0213c3f8 152fi
0213c3f8
LP
153AC_SUBST(LIBWRAP_LIBS)
154
5b6319dc
LP
155AC_ARG_ENABLE([pam],
156 AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
157 [case "${enableval}" in
158 yes) have_pam=yes ;;
159 no) have_pam=no ;;
160 *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
161 esac],
162 [have_pam=auto])
163
164if test "x${have_pam}" != xno ; then
165 AC_CHECK_HEADERS(
166 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
167 [have_pam=yes],
168 [if test "x$have_pam" = xyes ; then
169 AC_MSG_ERROR([*** PAM headers not found.])
170 fi])
171
172 AC_CHECK_LIB(
173 [pam],
174 [pam_syslog],
175 [have_pam=yes],
176 [if test "x$have_pam" = xyes ; then
177 AC_MSG_ERROR([*** libpam not found.])
178 fi])
179
180 if test "x$have_pam" = xyes ; then
181 PAM_LIBS="-lpam -lpam_misc"
182 AC_DEFINE(HAVE_PAM, 1, [PAM available])
812cce32
LP
183 else
184 have_pam=no
5b6319dc
LP
185 fi
186else
187 PAM_LIBS=
188fi
189AC_SUBST(PAM_LIBS)
190AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
191
4927fcae
LP
192AC_ARG_ENABLE([audit],
193 AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]),
194 [case "${enableval}" in
195 yes) have_audit=yes ;;
196 no) have_audit=no ;;
197 *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;;
198 esac],
199 [have_audit=auto])
200
201if test "x${have_audit}" != xno ; then
202 AC_CHECK_HEADERS(
203 [libaudit.h],
204 [have_audit=yes],
205 [if test "x$have_audit" = xyes ; then
206 AC_MSG_ERROR([*** AUDIT headers not found.])
207 fi])
208
209 AC_CHECK_LIB(
210 [audit],
211 [audit_open],
212 [have_audit=yes],
213 [if test "x$have_audit" = xyes ; then
214 AC_MSG_ERROR([*** libaudit not found.])
215 fi])
216
217 if test "x$have_audit" = xyes ; then
218 AUDIT_LIBS="-laudit"
219 AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available])
220 else
221 have_audit=no
222 fi
223else
224 AUDIT_LIBS=
225fi
226AC_SUBST(AUDIT_LIBS)
227
7f4e0805
LP
228have_libcryptsetup=no
229AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
230if test "x$enable_libcryptsetup" != "xno"; then
231 PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup ],
232 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
233 AC_SUBST(LIBCRYPTSETUP_CFLAGS)
234 AC_SUBST(LIBCRYPTSETUP_LIBS)
235 if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
591622d7 236 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
7f4e0805
LP
237 fi
238fi
239AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
240
a9b5b032
MT
241have_gtk=no
242AC_ARG_ENABLE(gtk, AS_HELP_STRING([--disable-gtk], [disable GTK tools]))
243if test "x$enable_gtk" != "xno"; then
26742b3f 244 PKG_CHECK_MODULES(GTK, [ gtk+-2.0 glib-2.0 > 2.26 gio-unix-2.0 ],
a9b5b032
MT
245 [AC_DEFINE(HAVE_GTK, 1, [Define if GTK is available]) have_gtk=yes], have_gtk=no)
246 AC_SUBST(GTK_CFLAGS)
247 AC_SUBST(GTK_LIBS)
248 if test "x$have_gtk" = xno -a "x$enable_gtk" = xyes; then
26742b3f 249 AC_MSG_ERROR([*** gtk support requested but libraries not found])
a9b5b032
MT
250 fi
251fi
252AM_CONDITIONAL(HAVE_GTK, [test "$have_gtk" = "yes"])
253
010e310f 254if test "$have_gtk" = "yes"; then
ab85c225
MB
255 PKG_CHECK_MODULES(LIBNOTIFY, [ libnotify ])
256 PKG_CHECK_EXISTS([ libnotify >= 0.7.0 ], [ libnotify07=yes ])
257
2fa47da5
LP
258 AC_SUBST(LIBNOTIFY_CFLAGS)
259 AC_SUBST(LIBNOTIFY_LIBS)
010e310f 260fi
ab85c225 261AM_CONDITIONAL(LIBNOTIFY07, [ test "$libnotify07" = "yes" ])
010e310f 262
db040a61 263AM_PROG_VALAC([0.10])
47be870b 264AC_SUBST(VAPIDIR)
42e39f0b 265AM_CONDITIONAL(HAVE_VALAC, test x"$VALAC" != x)
47be870b 266
d1ab0ca0
LP
267AC_PATH_PROG([XSLTPROC], [xsltproc])
268AM_CONDITIONAL(HAVE_XSLTPROC, test x"$XSLTPROC" != x)
269
5e6afdd3
LP
270AC_PATH_PROG([M4], [m4])
271
a338bab5 272AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO],[Specify the distribution to target: One of fedora, suse, debian, ubuntu, arch, gentoo, slackware, altlinux or other]))
0571e011
LP
273if test "z$with_distro" = "z"; then
274 if test "$cross_compiling" = yes; then
275 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)])
276 else
8d7cb6e0
LDM
277 test -f "/etc/redhat-release" && with_distro="fedora"
278 test -f "/etc/SuSE-release" && with_distro="suse"
279 test -f "/etc/debian_version" && with_distro="debian"
280 test -f "/etc/arch-release" && with_distro="arch"
281 test -f "/etc/gentoo-release" && with_distro="gentoo"
282 test -f "/etc/slackware-version" && with_distro="slackware"
283 test -f "/etc/frugalware-release" && with_distro="frugalware"
a338bab5 284 test -f "/etc/altlinux-release" && with_distro="altlinux"
1de4d79b 285 test -f "/etc/mandriva-release" && with_distro="mandriva"
858dae18
AE
286 if test "x`lsb_release -is 2>/dev/null`" = "xUbuntu"; then
287 with_distro="ubuntu"
288 fi
0571e011
LP
289 fi
290 if test "z$with_distro" = "z"; then
291 with_distro=`uname -s`
292 fi
293fi
294with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]' `
7d568925 295AC_DEFINE_UNQUOTED(DISTRIBUTION, ["${with_distro}"], [Target Distribution])
0571e011 296
34eff652 297# Default generic names
34eff652
LP
298SPECIAL_SYSLOG_SERVICE=syslog.service
299
300# Location of the init scripts as mandated by LSB
301SYSTEM_SYSVINIT_PATH=/etc/init.d
302
12e84679
LP
303M4_DISTRO_FLAG=
304
0571e011
LP
305case $with_distro in
306 fedora)
307 SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
308 SYSTEM_SYSVRCND_PATH=/etc/rc.d
34eff652 309
83bda358 310 # A little background why we define this special unit
34eff652
LP
311 # names here in configure.ac: SysV services currently
312 # cannot have aliases. As long as syslog is started
83bda358
LP
313 # via a SysV init script we hence define this name to
314 # the actual SysV name here. Later on when SysV init
315 # scripts are not used anymore it is advisable to use
316 # the generic name instead and use symlinks in the
317 # unit directories to point to the right native unit
318 # file.
319
a7b6f8e5 320 SPECIAL_SYSLOG_SERVICE=rsyslog.service
2c696a96 321 AC_DEFINE(TARGET_FEDORA, [], [Target is Fedora/RHEL])
12e84679 322 M4_DISTRO_FLAG=-DTARGET_FEDORA=1
cd3f8b7d 323 have_plymouth=true
0571e011
LP
324 ;;
325 suse)
0571e011 326 SYSTEM_SYSVRCND_PATH=/etc/init.d
634826b5 327 AC_DEFINE(TARGET_SUSE, [], [Target is openSUSE/SLE])
12e84679 328 M4_DISTRO_FLAG=-DTARGET_SUSE=1
cd3f8b7d 329 have_plymouth=true
0571e011
LP
330 ;;
331 debian)
0571e011 332 SYSTEM_SYSVRCND_PATH=/etc
a7b6f8e5 333 SPECIAL_SYSLOG_SERVICE=rsyslog.service
858dae18 334 AC_DEFINE(TARGET_DEBIAN, [], [Target is Debian])
12e84679 335 M4_DISTRO_FLAG=-DTARGET_DEBIAN=1
0571e011 336 ;;
858dae18
AE
337 ubuntu)
338 SYSTEM_SYSVRCND_PATH=/etc
339 SPECIAL_SYSLOG_SERVICE=rsyslog.service
340 AC_DEFINE(TARGET_UBUNTU, [], [Target is Ubuntu])
341 M4_DISTRO_FLAG=-DTARGET_UBUNTU=1
342 ;;
d7c114c0
DR
343 arch)
344 SYSTEM_SYSVINIT_PATH=/etc/rc.d
345 SYSTEM_SYSVRCND_PATH=/etc
a7b6f8e5 346 SPECIAL_SYSLOG_SERVICE=syslog-ng.service
d7c114c0 347 AC_DEFINE(TARGET_ARCH, [], [Target is ArchLinux])
12e84679 348 M4_DISTRO_FLAG=-DTARGET_ARCH=1
d7c114c0 349 ;;
f2b4af1c 350 gentoo)
07459bb6
FF
351 SYSTEM_SYSVINIT_PATH=
352 SYSTEM_SYSVRCND_PATH=
a7b6f8e5 353 SPECIAL_SYSLOG_SERVICE=syslog-ng.service
f2b4af1c 354 AC_DEFINE(TARGET_GENTOO, [], [Target is Gentoo])
12e84679 355 M4_DISTRO_FLAG=-DTARGET_GENTOO=1
f2b4af1c 356 ;;
65c8976a
MS
357 slackware)
358 SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
359 SYSTEM_SYSVRCND_PATH=/etc/rc.d
65c8976a 360 AC_DEFINE(TARGET_SLACKWARE, [], [Target is Slackware])
12e84679 361 M4_DISTRO_FLAG=-DTARGET_SLACKWARE=1
65c8976a 362 ;;
f5c88ec1
MV
363 frugalware)
364 SYSTEM_SYSVINIT_PATH=/etc/rc.d
365 SYSTEM_SYSVRCND_PATH=/etc/rc.d
366 AC_DEFINE(TARGET_FRUGALWARE, [], [Target is Frugalware])
367 M4_DISTRO_FLAG=-DTARGET_FRUGALWARE=1
368 ;;
a338bab5
AS
369 altlinux)
370 SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
371 SYSTEM_SYSVRCND_PATH=/etc/rc.d
53bdb7c1 372 SPECIAL_SYSLOG_SERVICE=syslogd.service
a338bab5
AS
373 AC_DEFINE(TARGET_ALTLINUX, [], [Target is ALTLinux])
374 M4_DISTRO_FLAG=-DTARGET_ALTLINUX=1
53bdb7c1 375 have_plymouth=true
a338bab5 376 ;;
1de4d79b
AB
377 mandriva)
378 SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
379 SYSTEM_SYSVRCND_PATH=/etc/rc.d
380 SPECIAL_SYSLOG_SERVICE=rsyslog.service
381 AC_DEFINE(TARGET_MANDRIVA, [], [Target is Mandriva])
382 M4_DISTRO_FLAG=-DTARGET_MANDRIVA=1
383 have_plymouth=true
384 ;;
bf024b02 385 other)
136337ff 386 AS_IF([test "x$with_syslog_service" = "x"],
b6c2bf61 387 [AC_MSG_ERROR([With --distro=other, you must pass --with-syslog-service= to configure])])
0571e011
LP
388 ;;
389 *)
bf024b02 390 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
391 ;;
392esac
393
136337ff
TFH
394AC_ARG_WITH([sysvinit-path],
395 [AS_HELP_STRING([--with-sysvinit-path=PATH],
396 [Specify the path to where the SysV init scripts are located @<:@default=based on distro@:>@])],
397 [SYSTEM_SYSVINIT_PATH="$withval"],
398 [])
399
400AC_ARG_WITH([sysvrcd-path],
401 [AS_HELP_STRING([--with-sysvrcd-path=PATH],
402 [Specify the path to the base directory for the SysV rcN.d directories @<:@default=based on distro@:>@])],
403 [SYSTEM_SYSVRCND_PATH="$withval"],
404 [])
405
136337ff 406AC_ARG_WITH([syslog-service],
d2d12cd1 407 [AS_HELP_STRING([--with-syslog-service=UNIT],
136337ff 408 [Specify the name of the special syslog service @<:@default=based on distro@:>@])],
a7b6f8e5 409 [SPECIAL_SYSLOG_SERVICE="$withval"],
136337ff
TFH
410 [])
411
0571e011 412AC_SUBST(SYSTEM_SYSVINIT_PATH)
d64b723a 413AC_SUBST(SYSTEM_SYSVRCND_PATH)
a7b6f8e5 414AC_SUBST(SPECIAL_SYSLOG_SERVICE)
12e84679 415AC_SUBST(M4_DISTRO_FLAG)
0571e011 416
07459bb6
FF
417if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
418 AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.])
419 SYSTEM_SYSV_COMPAT="yes"
420elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
421 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.])
422else
423 SYSTEM_SYSV_COMPAT="no"
424fi
425
bef2733f 426AC_ARG_WITH([tty-gid],
a05ea46d 427 [AS_HELP_STRING([--with-tty-gid=GID],
bef2733f
LP
428 [Specify the numeric GID of the 'tty' group])],
429 [AC_DEFINE_UNQUOTED(TTY_GID, [$withval], [GID of the 'tty' group])],
430 [])
431
0571e011
LP
432AM_CONDITIONAL(TARGET_FEDORA, test x"$with_distro" = xfedora)
433AM_CONDITIONAL(TARGET_SUSE, test x"$with_distro" = xsuse)
434AM_CONDITIONAL(TARGET_DEBIAN, test x"$with_distro" = xdebian)
858dae18
AE
435AM_CONDITIONAL(TARGET_UBUNTU, test x"$with_distro" = xubuntu)
436AM_CONDITIONAL(TARGET_DEBIAN_OR_UBUNTU, test x"$with_distro" = xdebian -o x"$with_distro" = xubuntu)
d7c114c0 437AM_CONDITIONAL(TARGET_ARCH, test x"$with_distro" = xarch)
f2b4af1c 438AM_CONDITIONAL(TARGET_GENTOO, test x"$with_distro" = xgentoo)
65c8976a 439AM_CONDITIONAL(TARGET_SLACKWARE, test x"$with_distro" = xslackware)
f5c88ec1 440AM_CONDITIONAL(TARGET_FRUGALWARE, test x"$with_distro" = xfrugalware)
a338bab5 441AM_CONDITIONAL(TARGET_ALTLINUX, test x"$with_distro" = xaltlinux)
1de4d79b 442AM_CONDITIONAL(TARGET_MANDRIVA, test x"$with_distro" = xmandriva)
0571e011 443
cd3f8b7d
JM
444AM_CONDITIONAL(HAVE_PLYMOUTH, test -n "$have_plymouth")
445
a7b6f8e5 446AC_DEFINE_UNQUOTED(SPECIAL_SYSLOG_SERVICE, ["$SPECIAL_SYSLOG_SERVICE"], [Syslog service name])
2c696a96 447
d2d12cd1
LP
448AC_ARG_WITH([dbuspolicydir],
449 AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
450 [],
451 [with_dbuspolicydir=`pkg-config --variable=sysconfdir dbus-1`/dbus-1/system.d])
d122948d 452
d2d12cd1
LP
453AC_ARG_WITH([dbussessionservicedir],
454 AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
455 [],
456 [with_dbussessionservicedir=`pkg-config --variable=session_bus_services_dir dbus-1`])
d122948d 457
d2d12cd1
LP
458AC_ARG_WITH([dbussystemservicedir],
459 AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
460 [],
461 [with_dbussystemservicedir=`pkg-config --variable=session_bus_services_dir dbus-1`/../system-services])
d122948d 462
d2d12cd1
LP
463AC_ARG_WITH([dbusinterfacedir],
464 AS_HELP_STRING([--with-dbusinterfacedir=DIR], [D-Bus interface directory]),
465 [],
466 [with_dbusinterfacedir=`pkg-config --variable=session_bus_services_dir dbus-1`/../interfaces])
d122948d 467
d1ab0ca0
LP
468AC_ARG_WITH([udevrulesdir],
469 AS_HELP_STRING([--with-udevrulesdir=DIR], [Diectory for udev rules]),
470 [],
8c6db833
LP
471 [with_udevrulesdir=`pkg-config --variable=udevdir udev`/rules.d])
472
473AC_ARG_WITH([pamlibdir],
474 AS_HELP_STRING([--with-pamlibdir=DIR], [Diectory for PAM modules]),
475 [],
476 [with_pamlibdir=/lib/`$CC -print-multi-os-directory`/security])
d1ab0ca0 477
8c4a3079
LP
478AC_ARG_WITH([rootdir],
479 AS_HELP_STRING([--with-rootdir=DIR], [Root directory for files necessary for boot]),
480 [],
a6baa3f6 481 [with_rootdir=${ac_default_prefix}])
d2d12cd1
LP
482
483AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
484AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
485AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
486AC_SUBST([dbusinterfacedir], [$with_dbusinterfacedir])
487AC_SUBST([udevrulesdir], [$with_udevrulesdir])
8c6db833 488AC_SUBST([pamlibdir], [$with_pamlibdir])
8c4a3079
LP
489AC_SUBST([rootdir], [$with_rootdir])
490
a45a909f
CR
491AC_CONFIG_FILES([Makefile])
492AC_OUTPUT
0571e011
LP
493
494echo "
495 $PACKAGE_NAME $VERSION
496
2c696a96 497 Distribution: ${with_distro}
07459bb6 498 SysV compatibility: ${SYSTEM_SYSV_COMPAT}
0571e011
LP
499 SysV init scripts: ${SYSTEM_SYSVINIT_PATH}
500 SysV rc?.d directories: ${SYSTEM_SYSVRCND_PATH}
a7b6f8e5 501 Syslog service: ${SPECIAL_SYSLOG_SERVICE}
a9b5b032 502 Gtk: ${have_gtk}
7f4e0805 503 libcryptsetup: ${have_libcryptsetup}
5b6319dc
LP
504 tcpwrap: ${have_tcpwrap}
505 PAM: ${have_pam}
12716238
LP
506 AUDIT: ${have_audit}
507 SELinux: ${have_selinux}
8c4a3079
LP
508 prefix: ${prefix}
509 root dir: ${with_rootdir}
d1ab0ca0 510 udev rules dir: ${with_udevrulesdir}
8c6db833 511 pam modules dir: ${with_pamlibdir}
d2d12cd1
LP
512 dbus policy dir: ${with_dbuspolicydir}
513 dbus session dir: ${with_dbussessionservicedir}
514 dbus system dir: ${with_dbussystemservicedir}
515 dbus interfaces dir: ${with_dbusinterfacedir}
0571e011 516"