summaryrefslogtreecommitdiffstats
path: root/rules/host-cairo.make
blob: 7cb0ba8b2de01578a864d6434947d03730242394 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
# -*-makefile-*-
#
# Copyright (C) 2018 by Michael Olbrich <m.olbrich@pengutronix.de>
#
# 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_CAIRO) += host-cairo

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

#HOST_CAIRO_CONF_ENV	:= $(HOST_ENV)

#
# autoconf
#
HOST_CAIRO_CONF_TOOL	:= autoconf
HOST_CAIRO_CONF_OPT	:= \
	$(HOST_AUTOCONF) \
	--enable-shared \
	--disable-static \
	--disable-gtk-doc \
	--disable-gtk-doc-html \
	--disable-gtk-doc-pdf \
	--enable-atomic \
	--disable-gcov \
	--disable-valgrind \
	--disable-xlib \
	--disable-xlib-xrender \
	--disable-xcb \
	--disable-xlib-xcb \
	--disable-xcb-shm \
	--disable-qt \
	--disable-quartz \
	--disable-quartz-font \
	--disable-quartz-image \
	--disable-win32 \
	--disable-win32-font \
	--disable-skia \
	--disable-os2 \
	--disable-beos \
	--disable-drm \
	--disable-gallium \
	--disable-png \
	--disable-gl \
	--disable-glesv2 \
	--disable-cogl \
	--disable-directfb \
	--disable-vg \
	--disable-egl \
	--disable-glx \
	--disable-wgl \
	--disable-script \
	--enable-ft \
	--enable-fc \
	--disable-ps \
	--disable-pdf \
	--disable-svg \
	--disable-test-surfaces \
	--disable-tee \
	--disable-xml \
	--enable-pthread \
	--disable-gobject \
	--disable-full-testing \
	--disable-trace \
	--disable-interpreter \
	--disable-symbol-lookup \
	--disable-some-floating-point \
	--without-x

# vim: syntax=make