summaryrefslogtreecommitdiffstats
path: root/rules/host-dbus.make
blob: 407da479f7801710230e624f2e9cea548929367b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# -*-makefile-*-
#
# Copyright (C) 2006 by Robert Schwebel
#
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
HOST_PACKAGES-$(PTXCONF_HOST_DBUS) += host-dbus

#
# Paths and names
#
HOST_DBUS_DIR	= $(HOST_BUILDDIR)/$(DBUS)

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

#
# autoconf
#
HOST_DBUS_CONF_TOOL	:= autoconf
HOST_DBUS_CONF_OPT	:= \
	$(HOST_AUTOCONF) \
	--enable-silent-rules \
	--disable-developer \
	--disable-debug \
	--enable-largefile \
	--disable-static \
	--disable-ansi \
	--disable-verbose-mode \
	--disable-asserts \
	--disable-checks \
	--disable-xml-docs \
	--disable-doxygen-docs \
	--disable-ducktype-docs \
	--disable-selinux \
	--disable-apparmor \
	--disable-libaudit \
	--disable-inotify \
	--disable-kqueue \
	--disable-console-owner-file \
	--disable-launchd \
	--disable-systemd \
	--disable-embedded-tests \
	--disable-modular-tests \
	--disable-tests \
	--disable-installed-tests \
	--disable-code-coverage \
	--disable-epoll \
	--disable-x11-autolaunch \
	--disable-compile-warnings \
	--disable-Werror \
	--disable-relocation \
	--disable-stats \
	--disable-user-session \
	--without-valgrind \
	--without-x

# vim: syntax=make