]> git.ipfire.org Git - thirdparty/systemd.git/blame - configure.ac
service: parse insserv.conf and plugs its system facilities into systemd.
[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
fd42f6e0 20AC_INIT([systemd],[32],[systemd-devel@lists.freedesktop.org])
e99e38bb 21AC_CONFIG_SRCDIR([src/main.c])
47be870b
LP
22AC_CONFIG_MACRO_DIR([m4])
23AC_CONFIG_HEADERS([config.h])
4db6d587 24AC_USE_SYSTEM_EXTENSIONS
907dd195 25AC_SYS_LARGEFILE
47be870b 26
b60e6bbf 27AM_INIT_AUTOMAKE([foreign 1.11 -Wall -Wno-portability silent-rules tar-pax subdir-objects dist-bzip2])
47be870b 28
1b322bdb 29AC_SUBST(PACKAGE_URL, [http://www.freedesktop.org/wiki/Software/systemd])
47be870b
LP
30
31AC_CANONICAL_HOST
22be093f 32AC_DEFINE_UNQUOTED([CANONICAL_HOST], "$host", [Canonical host string.])
d59d0a2b 33AS_IF([test "x$host_cpu" = "xmips" || test "x$host_cpu" = "xmipsel" ||
34 test "x$host_cpu" = "xmips64" || test "x$host_cpu" = "xmips64el"],
35 [AC_DEFINE(ARCH_MIPS, [], [Whether on mips arch])])
47be870b
LP
36
37AM_SILENT_RULES([yes])
38
39AC_CHECK_PROG([STOW], [stow], [yes], [no])
40
41AS_IF([test "x$STOW" = "xyes" && test -d /usr/local/stow], [
42 AC_MSG_NOTICE([*** Found /usr/local/stow: default install prefix set to /usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION} ***])
43 ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
44])
45
1c7dde3e
BN
46# i18n stuff for the PolicyKit policy files
47IT_PROG_INTLTOOL([0.40.0])
48
49GETTEXT_PACKAGE=systemd
50AC_SUBST(GETTEXT_PACKAGE)
51
e9da3678
LP
52AC_PROG_MKDIR_P
53AC_PROG_LN_S
54AC_PROG_SED
f975e971 55AC_PROG_AWK
e9da3678 56
47be870b
LP
57AC_PROG_CC
58AC_PROG_CC_C99
59AM_PROG_CC_C_O
60AC_PROG_GCC_TRADITIONAL
47be870b 61
9a60da28
TR
62AC_CHECK_TOOL(OBJCOPY, objcopy)
63AC_CHECK_TOOL(STRINGS, strings)
f975e971 64AC_CHECK_TOOL(GPERF, gperf)
9a60da28 65
d1ab0ca0 66CC_CHECK_CFLAGS_APPEND([ \
be1a67d9 67 -pipe \
d1ab0ca0
LP
68 -Wall \
69 -W \
70 -Wextra \
27765dfc 71 -Wno-inline \
d1ab0ca0 72 -Wvla \
d1ab0ca0
LP
73 -Wundef \
74 -Wformat=2 \
75 -Wlogical-op \
76 -Wsign-compare \
77 -Wformat-security \
78 -Wmissing-include-dirs \
79 -Wformat-nonliteral \
80 -Wold-style-definition \
81 -Wpointer-arith \
82 -Winit-self \
83 -Wdeclaration-after-statement \
84 -Wfloat-equal \
85 -Wmissing-prototypes \
86 -Wstrict-prototypes \
87 -Wredundant-decls \
88 -Wmissing-declarations \
89 -Wmissing-noreturn \
90 -Wshadow \
91 -Wendif-labels \
92 -Wcast-align \
93 -Wstrict-aliasing=2 \
94 -Wwrite-strings \
be1a67d9
LP
95 -Wno-long-long \
96 -Wno-overlength-strings \
d1ab0ca0 97 -Wno-unused-parameter \
be1a67d9 98 -Wno-missing-field-initializers \
8745297f 99 -Wno-unused-result \
d1ab0ca0 100 -Wp,-D_FORTIFY_SOURCE=2 \
be1a67d9 101 -ffast-math \
d1ab0ca0
LP
102 -fno-common \
103 -fdiagnostics-show-option \
9b85fc6a
GSB
104 -fno-strict-aliasing \
105 -fvisibility=hidden \
106 -ffunction-sections \
107 -fdata-sections \
108 -Wl,--as-needed \
109 -Wl,--gc-sections])
47be870b 110
139be57d
LP
111LT_PREREQ(2.2)
112LT_INIT
113
47be870b 114AC_SEARCH_LIBS([clock_gettime], [rt], [], [AC_MSG_ERROR([*** POSIX RT library not found])])
afea26ad 115AC_SEARCH_LIBS([dlsym], [dl], [], [AC_MSG_ERROR([*** Dynamic linking loader library not found])])
85f19d82
MB
116
117save_LIBS="$LIBS"
118LIBS=
47be870b
LP
119AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
120AC_CHECK_HEADERS([sys/capability.h], [], [AC_MSG_ERROR([*** POSIX caps headers not found])])
85f19d82
MB
121CAP_LIBS="$LIBS"
122LIBS="$save_LIBS"
123AC_SUBST(CAP_LIBS)
47be870b 124
b237ef2c 125# This makes sure pkg.m4 is available.
a9b5b032 126m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
d1ab0ca0 127
309c2a2c 128PKG_CHECK_MODULES(UDEV, [ libudev >= 172 ])
47be870b
LP
129AC_SUBST(UDEV_CFLAGS)
130AC_SUBST(UDEV_LIBS)
131
83bda358 132PKG_CHECK_MODULES(DBUS, [ dbus-1 >= 1.3.2 ])
47be870b
LP
133AC_SUBST(DBUS_CFLAGS)
134AC_SUBST(DBUS_LIBS)
135
591622d7
LP
136have_selinux=no
137AC_ARG_ENABLE(selinux, AS_HELP_STRING([--disable-selinux], [Disable optional SELINUX support]))
138if test "x$enable_selinux" != "xno"; then
139 PKG_CHECK_MODULES(SELINUX, [ libselinux ],
140 [AC_DEFINE(HAVE_SELINUX, 1, [Define if SELinux is available]) have_selinux=yes], have_selinux=no)
141 AC_SUBST(SELINUX_CFLAGS)
142 AC_SUBST(SELINUX_LIBS)
143 if test "x$have_selinux" = xno -a "x$enable_selinux" = xyes; then
144 AC_MSG_ERROR([*** SELinux support requested but libraries not found])
145 fi
56cf987f 146fi
591622d7 147AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
56cf987f 148
0213c3f8
LP
149AC_ARG_ENABLE([tcpwrap],
150 AS_HELP_STRING([--disable-tcpwrap],[Disable optional TCP wrappers support]),
151 [case "${enableval}" in
5b6319dc
LP
152 yes) have_tcpwrap=yes ;;
153 no) have_tcpwrap=no ;;
0213c3f8
LP
154 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tcpwrap) ;;
155 esac],
5b6319dc 156 [have_tcpwrap=auto])
0213c3f8 157
5b6319dc 158if test "x${have_tcpwrap}" != xno ; then
0213c3f8
LP
159 ACX_LIBWRAP
160 if test "x${LIBWRAP_LIBS}" = x ; then
5b6319dc
LP
161 if test "x$have_tcpwrap" = xyes ; then
162 AC_MSG_ERROR([*** TCP wrappers support not found.])
0213c3f8 163 fi
812cce32 164 have_tcpwrap=no
0213c3f8 165 else
5b6319dc 166 have_tcpwrap=yes
0213c3f8
LP
167 fi
168else
5b6319dc 169 LIBWRAP_LIBS=
0213c3f8 170fi
0213c3f8
LP
171AC_SUBST(LIBWRAP_LIBS)
172
5b6319dc
LP
173AC_ARG_ENABLE([pam],
174 AS_HELP_STRING([--disable-pam],[Disable optional PAM support]),
175 [case "${enableval}" in
176 yes) have_pam=yes ;;
177 no) have_pam=no ;;
178 *) AC_MSG_ERROR(bad value ${enableval} for --disable-pam) ;;
179 esac],
180 [have_pam=auto])
181
182if test "x${have_pam}" != xno ; then
183 AC_CHECK_HEADERS(
184 [security/pam_modules.h security/pam_modutil.h security/pam_ext.h],
185 [have_pam=yes],
186 [if test "x$have_pam" = xyes ; then
187 AC_MSG_ERROR([*** PAM headers not found.])
188 fi])
189
190 AC_CHECK_LIB(
191 [pam],
192 [pam_syslog],
193 [have_pam=yes],
194 [if test "x$have_pam" = xyes ; then
195 AC_MSG_ERROR([*** libpam not found.])
196 fi])
197
198 if test "x$have_pam" = xyes ; then
199 PAM_LIBS="-lpam -lpam_misc"
200 AC_DEFINE(HAVE_PAM, 1, [PAM available])
812cce32
LP
201 else
202 have_pam=no
5b6319dc
LP
203 fi
204else
205 PAM_LIBS=
206fi
207AC_SUBST(PAM_LIBS)
208AM_CONDITIONAL([HAVE_PAM], [test "x$have_pam" != xno])
209
5eda94dd
LP
210AC_ARG_ENABLE([acl],
211 AS_HELP_STRING([--disable-acl],[Disable optional ACL support]),
212 [case "${enableval}" in
213 yes) have_acl=yes ;;
214 no) have_acl=no ;;
215 *) AC_MSG_ERROR(bad value ${enableval} for --disable-acl) ;;
216 esac],
217 [have_acl=auto])
218
219if test "x${have_acl}" != xno ; then
220 AC_CHECK_HEADERS(
221 [sys/acl.h acl/libacl.h],
222 [have_acl=yes],
223 [if test "x$have_acl" = xyes ; then
224 AC_MSG_ERROR([*** ACL headers not found.])
225 fi])
226
227 AC_CHECK_LIB(
228 [acl],
229 [acl_get_file],
230 [have_acl=yes],
231 [if test "x$have_acl" = xyes ; then
232 AC_MSG_ERROR([*** libacl not found.])
233 fi])
234
235 if test "x$have_acl" = xyes ; then
236 ACL_LIBS="-lacl"
237 AC_DEFINE(HAVE_ACL, 1, [ACL available])
238 else
239 have_acl=no
240 fi
241else
242 ACL_LIBS=
243fi
244AC_SUBST(ACL_LIBS)
245AM_CONDITIONAL([HAVE_ACL], [test "x$have_acl" != xno])
246
4927fcae
LP
247AC_ARG_ENABLE([audit],
248 AS_HELP_STRING([--disable-audit],[Disable optional AUDIT support]),
249 [case "${enableval}" in
250 yes) have_audit=yes ;;
251 no) have_audit=no ;;
252 *) AC_MSG_ERROR(bad value ${enableval} for --disable-audit) ;;
253 esac],
254 [have_audit=auto])
255
256if test "x${have_audit}" != xno ; then
257 AC_CHECK_HEADERS(
258 [libaudit.h],
259 [have_audit=yes],
260 [if test "x$have_audit" = xyes ; then
261 AC_MSG_ERROR([*** AUDIT headers not found.])
262 fi])
263
264 AC_CHECK_LIB(
265 [audit],
266 [audit_open],
267 [have_audit=yes],
268 [if test "x$have_audit" = xyes ; then
269 AC_MSG_ERROR([*** libaudit not found.])
270 fi])
271
272 if test "x$have_audit" = xyes ; then
273 AUDIT_LIBS="-laudit"
274 AC_DEFINE(HAVE_AUDIT, 1, [AUDIT available])
275 else
276 have_audit=no
277 fi
278else
279 AUDIT_LIBS=
280fi
281AC_SUBST(AUDIT_LIBS)
282
7f4e0805
LP
283have_libcryptsetup=no
284AC_ARG_ENABLE(libcryptsetup, AS_HELP_STRING([--disable-libcryptsetup], [disable libcryptsetup tools]))
285if test "x$enable_libcryptsetup" != "xno"; then
286 PKG_CHECK_MODULES(LIBCRYPTSETUP, [ libcryptsetup ],
287 [AC_DEFINE(HAVE_LIBCRYPTSETUP, 1, [Define if libcryptsetup is available]) have_libcryptsetup=yes], have_libcryptsetup=no)
288 AC_SUBST(LIBCRYPTSETUP_CFLAGS)
289 AC_SUBST(LIBCRYPTSETUP_LIBS)
290 if test "x$have_libcryptsetup" = xno -a "x$enable_libcryptsetup" = xyes; then
591622d7 291 AC_MSG_ERROR([*** libcryptsetup support requested but libraries not found])
7f4e0805
LP
292 fi
293fi
294AM_CONDITIONAL(HAVE_LIBCRYPTSETUP, [test "$have_libcryptsetup" = "yes"])
295
27669061
MV
296have_binfmt=no
297AC_ARG_ENABLE(binfmt, AS_HELP_STRING([--disable-binfmt], [disable binfmt tool]))
298if test "x$enable_binfmt" != "xno"; then
299 have_binfmt=yes
300fi
301AM_CONDITIONAL(ENABLE_BINFMT, [test "$have_binfmt" = "yes"])
302
a9b5b032
MT
303have_gtk=no
304AC_ARG_ENABLE(gtk, AS_HELP_STRING([--disable-gtk], [disable GTK tools]))
305if test "x$enable_gtk" != "xno"; then
26742b3f 306 PKG_CHECK_MODULES(GTK, [ gtk+-2.0 glib-2.0 > 2.26 gio-unix-2.0 ],
a9b5b032
MT
307 [AC_DEFINE(HAVE_GTK, 1, [Define if GTK is available]) have_gtk=yes], have_gtk=no)
308 AC_SUBST(GTK_CFLAGS)
309 AC_SUBST(GTK_LIBS)
310 if test "x$have_gtk" = xno -a "x$enable_gtk" = xyes; then
26742b3f 311 AC_MSG_ERROR([*** gtk support requested but libraries not found])
a9b5b032
MT
312 fi
313fi
314AM_CONDITIONAL(HAVE_GTK, [test "$have_gtk" = "yes"])
315
010e310f 316if test "$have_gtk" = "yes"; then
ab85c225
MB
317 PKG_CHECK_MODULES(LIBNOTIFY, [ libnotify ])
318 PKG_CHECK_EXISTS([ libnotify >= 0.7.0 ], [ libnotify07=yes ])
319
2fa47da5
LP
320 AC_SUBST(LIBNOTIFY_CFLAGS)
321 AC_SUBST(LIBNOTIFY_LIBS)
010e310f 322fi
ab85c225 323AM_CONDITIONAL(LIBNOTIFY07, [ test "$libnotify07" = "yes" ])
010e310f 324
db040a61 325AM_PROG_VALAC([0.10])
47be870b 326AC_SUBST(VAPIDIR)
42e39f0b 327AM_CONDITIONAL(HAVE_VALAC, test x"$VALAC" != x)
47be870b 328
d1ab0ca0
LP
329AC_PATH_PROG([XSLTPROC], [xsltproc])
330AM_CONDITIONAL(HAVE_XSLTPROC, test x"$XSLTPROC" != x)
331
5e6afdd3
LP
332AC_PATH_PROG([M4], [m4])
333
a338bab5 334AC_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
335if test "z$with_distro" = "z"; then
336 if test "$cross_compiling" = yes; then
337 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)])
338 else
8d7cb6e0
LDM
339 test -f "/etc/redhat-release" && with_distro="fedora"
340 test -f "/etc/SuSE-release" && with_distro="suse"
341 test -f "/etc/debian_version" && with_distro="debian"
342 test -f "/etc/arch-release" && with_distro="arch"
343 test -f "/etc/gentoo-release" && with_distro="gentoo"
344 test -f "/etc/slackware-version" && with_distro="slackware"
345 test -f "/etc/frugalware-release" && with_distro="frugalware"
a338bab5 346 test -f "/etc/altlinux-release" && with_distro="altlinux"
1de4d79b 347 test -f "/etc/mandriva-release" && with_distro="mandriva"
54e4fdef 348 test -f "/etc/meego-release" && with_distro="meego"
1bd8b818 349 test -f "/etc/angstrom-version" && with_distro="angstrom"
858dae18
AE
350 if test "x`lsb_release -is 2>/dev/null`" = "xUbuntu"; then
351 with_distro="ubuntu"
352 fi
0571e011
LP
353 fi
354 if test "z$with_distro" = "z"; then
355 with_distro=`uname -s`
356 fi
357fi
358with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]' `
7d568925 359AC_DEFINE_UNQUOTED(DISTRIBUTION, ["${with_distro}"], [Target Distribution])
0571e011 360
34eff652
LP
361# Location of the init scripts as mandated by LSB
362SYSTEM_SYSVINIT_PATH=/etc/init.d
f1dd0c3f 363SYSTEM_SYSVRCND_PATH=/etc/rc.d
34eff652 364
f975e971 365M4_DEFINES=
e05b415e 366have_plymouth=no
12e84679 367
0571e011
LP
368case $with_distro in
369 fedora)
370 SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
2c696a96 371 AC_DEFINE(TARGET_FEDORA, [], [Target is Fedora/RHEL])
f975e971 372 M4_DEFINES=-DTARGET_FEDORA=1
e05b415e 373 have_plymouth=yes
0571e011
LP
374 ;;
375 suse)
0571e011 376 SYSTEM_SYSVRCND_PATH=/etc/init.d
634826b5 377 AC_DEFINE(TARGET_SUSE, [], [Target is openSUSE/SLE])
f975e971 378 M4_DEFINES=-DTARGET_SUSE=1
e05b415e 379 have_plymouth=yes
0571e011
LP
380 ;;
381 debian)
0571e011 382 SYSTEM_SYSVRCND_PATH=/etc
858dae18 383 AC_DEFINE(TARGET_DEBIAN, [], [Target is Debian])
f975e971 384 M4_DEFINES=-DTARGET_DEBIAN=1
0571e011 385 ;;
858dae18
AE
386 ubuntu)
387 SYSTEM_SYSVRCND_PATH=/etc
858dae18 388 AC_DEFINE(TARGET_UBUNTU, [], [Target is Ubuntu])
f975e971 389 M4_DEFINES=-DTARGET_UBUNTU=1
858dae18 390 ;;
d7c114c0
DR
391 arch)
392 SYSTEM_SYSVINIT_PATH=/etc/rc.d
393 SYSTEM_SYSVRCND_PATH=/etc
d7c114c0 394 AC_DEFINE(TARGET_ARCH, [], [Target is ArchLinux])
f975e971 395 M4_DEFINES=-DTARGET_ARCH=1
d7c114c0 396 ;;
f2b4af1c 397 gentoo)
07459bb6
FF
398 SYSTEM_SYSVINIT_PATH=
399 SYSTEM_SYSVRCND_PATH=
f2b4af1c 400 AC_DEFINE(TARGET_GENTOO, [], [Target is Gentoo])
f975e971 401 M4_DEFINES=-DTARGET_GENTOO=1
f2b4af1c 402 ;;
65c8976a
MS
403 slackware)
404 SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
65c8976a 405 AC_DEFINE(TARGET_SLACKWARE, [], [Target is Slackware])
f975e971 406 M4_DEFINES=-DTARGET_SLACKWARE=1
65c8976a 407 ;;
f5c88ec1
MV
408 frugalware)
409 SYSTEM_SYSVINIT_PATH=/etc/rc.d
f5c88ec1 410 AC_DEFINE(TARGET_FRUGALWARE, [], [Target is Frugalware])
f975e971 411 M4_DEFINES=-DTARGET_FRUGALWARE=1
e05b415e 412 have_plymouth=yes
f5c88ec1 413 ;;
a338bab5
AS
414 altlinux)
415 SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
a338bab5 416 AC_DEFINE(TARGET_ALTLINUX, [], [Target is ALTLinux])
f975e971 417 M4_DEFINES=-DTARGET_ALTLINUX=1
e05b415e 418 have_plymouth=yes
a338bab5 419 ;;
1de4d79b
AB
420 mandriva)
421 SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
1de4d79b 422 AC_DEFINE(TARGET_MANDRIVA, [], [Target is Mandriva])
f975e971 423 M4_DEFINES=-DTARGET_MANDRIVA=1
e05b415e 424 have_plymouth=yes
1de4d79b 425 ;;
54e4fdef
CF
426 meego)
427 SYSTEM_SYSVINIT_PATH=
428 SYSTEM_SYSVRCND_PATH=
429 AC_DEFINE(TARGET_MEEGO, [], [Target is MeeGo])
f975e971 430 M4_DEFINES=-DTARGET_MEEGO=1
54e4fdef 431 ;;
1bd8b818
KK
432 angstrom)
433 SYSTEM_SYSVRCND_PATH=/etc
434 AC_DEFINE(TARGET_ANGSTROM, [], [Target is Ångström])
f975e971 435 M4_DEFINES=-DTARGET_ANGSTROM=1
1bd8b818 436 ;;
bf024b02 437 other)
0571e011
LP
438 ;;
439 *)
bf024b02 440 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
441 ;;
442esac
443
136337ff
TFH
444AC_ARG_WITH([sysvinit-path],
445 [AS_HELP_STRING([--with-sysvinit-path=PATH],
446 [Specify the path to where the SysV init scripts are located @<:@default=based on distro@:>@])],
447 [SYSTEM_SYSVINIT_PATH="$withval"],
448 [])
449
450AC_ARG_WITH([sysvrcd-path],
451 [AS_HELP_STRING([--with-sysvrcd-path=PATH],
452 [Specify the path to the base directory for the SysV rcN.d directories @<:@default=based on distro@:>@])],
453 [SYSTEM_SYSVRCND_PATH="$withval"],
454 [])
455
0571e011 456AC_SUBST(SYSTEM_SYSVINIT_PATH)
d64b723a 457AC_SUBST(SYSTEM_SYSVRCND_PATH)
f975e971 458AC_SUBST(M4_DEFINES)
0571e011 459
07459bb6
FF
460if test "x${SYSTEM_SYSVINIT_PATH}" != "x" -a "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
461 AC_DEFINE(HAVE_SYSV_COMPAT, [], [SysV init scripts and rcN.d links are supported.])
462 SYSTEM_SYSV_COMPAT="yes"
f975e971 463 M4_DEFINES="$M4_DEFINES -DHAVE_SYSV_COMPAT"
07459bb6
FF
464elif test "x${SYSTEM_SYSVINIT_PATH}" != "x" -o "x${SYSTEM_SYSVRCND_PATH}" != "x"; then
465 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.])
466else
467 SYSTEM_SYSV_COMPAT="no"
468fi
469
bef2733f 470AC_ARG_WITH([tty-gid],
a05ea46d 471 [AS_HELP_STRING([--with-tty-gid=GID],
bef2733f
LP
472 [Specify the numeric GID of the 'tty' group])],
473 [AC_DEFINE_UNQUOTED(TTY_GID, [$withval], [GID of the 'tty' group])],
474 [])
475
e05b415e
HG
476AC_ARG_ENABLE(plymouth, AS_HELP_STRING([--enable-plymouth], [enable plymouth support]))
477if test -n "$enable_plymouth"; then
478 have_plymouth="$enable_plymouth"
479fi
480
0571e011
LP
481AM_CONDITIONAL(TARGET_FEDORA, test x"$with_distro" = xfedora)
482AM_CONDITIONAL(TARGET_SUSE, test x"$with_distro" = xsuse)
483AM_CONDITIONAL(TARGET_DEBIAN, test x"$with_distro" = xdebian)
858dae18
AE
484AM_CONDITIONAL(TARGET_UBUNTU, test x"$with_distro" = xubuntu)
485AM_CONDITIONAL(TARGET_DEBIAN_OR_UBUNTU, test x"$with_distro" = xdebian -o x"$with_distro" = xubuntu)
d7c114c0 486AM_CONDITIONAL(TARGET_ARCH, test x"$with_distro" = xarch)
f2b4af1c 487AM_CONDITIONAL(TARGET_GENTOO, test x"$with_distro" = xgentoo)
65c8976a 488AM_CONDITIONAL(TARGET_SLACKWARE, test x"$with_distro" = xslackware)
f5c88ec1 489AM_CONDITIONAL(TARGET_FRUGALWARE, test x"$with_distro" = xfrugalware)
a338bab5 490AM_CONDITIONAL(TARGET_ALTLINUX, test x"$with_distro" = xaltlinux)
1de4d79b 491AM_CONDITIONAL(TARGET_MANDRIVA, test x"$with_distro" = xmandriva)
54e4fdef 492AM_CONDITIONAL(TARGET_MEEGO, test x"$with_distro" = xmeego)
1bd8b818 493AM_CONDITIONAL(TARGET_ANGSTROM, test x"$with_distro" = xangstrom)
0571e011 494
e05b415e 495AM_CONDITIONAL(HAVE_PLYMOUTH, test "$have_plymouth" = "yes")
cca4aeee 496AM_CONDITIONAL(HAVE_SYSV_COMPAT, test "$SYSTEM_SYSV_COMPAT" = "yes")
cd3f8b7d 497
d2d12cd1
LP
498AC_ARG_WITH([dbuspolicydir],
499 AS_HELP_STRING([--with-dbuspolicydir=DIR], [D-Bus policy directory]),
500 [],
501 [with_dbuspolicydir=`pkg-config --variable=sysconfdir dbus-1`/dbus-1/system.d])
d122948d 502
d2d12cd1
LP
503AC_ARG_WITH([dbussessionservicedir],
504 AS_HELP_STRING([--with-dbussessionservicedir=DIR], [D-Bus session service directory]),
505 [],
506 [with_dbussessionservicedir=`pkg-config --variable=session_bus_services_dir dbus-1`])
d122948d 507
d2d12cd1
LP
508AC_ARG_WITH([dbussystemservicedir],
509 AS_HELP_STRING([--with-dbussystemservicedir=DIR], [D-Bus system service directory]),
510 [],
511 [with_dbussystemservicedir=`pkg-config --variable=session_bus_services_dir dbus-1`/../system-services])
d122948d 512
d2d12cd1
LP
513AC_ARG_WITH([dbusinterfacedir],
514 AS_HELP_STRING([--with-dbusinterfacedir=DIR], [D-Bus interface directory]),
515 [],
516 [with_dbusinterfacedir=`pkg-config --variable=session_bus_services_dir dbus-1`/../interfaces])
d122948d 517
d1ab0ca0
LP
518AC_ARG_WITH([udevrulesdir],
519 AS_HELP_STRING([--with-udevrulesdir=DIR], [Diectory for udev rules]),
520 [],
8c6db833
LP
521 [with_udevrulesdir=`pkg-config --variable=udevdir udev`/rules.d])
522
523AC_ARG_WITH([pamlibdir],
524 AS_HELP_STRING([--with-pamlibdir=DIR], [Diectory for PAM modules]),
525 [],
526 [with_pamlibdir=/lib/`$CC -print-multi-os-directory`/security])
d1ab0ca0 527
8c4a3079
LP
528AC_ARG_WITH([rootdir],
529 AS_HELP_STRING([--with-rootdir=DIR], [Root directory for files necessary for boot]),
530 [],
a6baa3f6 531 [with_rootdir=${ac_default_prefix}])
d2d12cd1 532
ae446765
KS
533AC_ARG_WITH([rootlibdir],
534 AS_HELP_STRING([--with-rootlibdir=DIR], [Root directory for libraries necessary for boot]),
535 [],
536 [with_rootlibdir=${libdir}])
537
d2d12cd1
LP
538AC_SUBST([dbuspolicydir], [$with_dbuspolicydir])
539AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir])
540AC_SUBST([dbussystemservicedir], [$with_dbussystemservicedir])
541AC_SUBST([dbusinterfacedir], [$with_dbusinterfacedir])
542AC_SUBST([udevrulesdir], [$with_udevrulesdir])
8c6db833 543AC_SUBST([pamlibdir], [$with_pamlibdir])
8c4a3079 544AC_SUBST([rootdir], [$with_rootdir])
ae446765 545AC_SUBST([rootlibdir], [$with_rootlibdir])
8c4a3079 546
1c7dde3e 547AC_CONFIG_FILES([Makefile po/Makefile.in])
a45a909f 548AC_OUTPUT
ae446765 549AC_MSG_RESULT([
0571e011
LP
550 $PACKAGE_NAME $VERSION
551
2c696a96 552 Distribution: ${with_distro}
07459bb6 553 SysV compatibility: ${SYSTEM_SYSV_COMPAT}
0571e011
LP
554 SysV init scripts: ${SYSTEM_SYSVINIT_PATH}
555 SysV rc?.d directories: ${SYSTEM_SYSVRCND_PATH}
a9b5b032 556 Gtk: ${have_gtk}
7f4e0805 557 libcryptsetup: ${have_libcryptsetup}
5b6319dc
LP
558 tcpwrap: ${have_tcpwrap}
559 PAM: ${have_pam}
12716238
LP
560 AUDIT: ${have_audit}
561 SELinux: ${have_selinux}
5eda94dd 562 ACL: ${have_acl}
27669061 563 binfmt: ${have_binfmt}
e05b415e 564 plymouth: ${have_plymouth}
8c4a3079
LP
565 prefix: ${prefix}
566 root dir: ${with_rootdir}
ae446765
KS
567 lib dir: ${libdir}
568 rootlib dir: ${with_rootlibdir}
8c6db833 569 pam modules dir: ${with_pamlibdir}
ae446765 570 udev rules dir: ${with_udevrulesdir}
d2d12cd1
LP
571 dbus policy dir: ${with_dbuspolicydir}
572 dbus session dir: ${with_dbussessionservicedir}
573 dbus system dir: ${with_dbussystemservicedir}
574 dbus interfaces dir: ${with_dbusinterfacedir}
ae446765 575])