summaryrefslogtreecommitdiffstats
path: root/rules/host-freetype.make
blob: 3c3e7d27011fcb20cc3310a93a144d9ff3019f48 (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
# -*-makefile-*-
#
# Copyright (C) 2006 by Marc Kleine-Budde <mkl@pengutronix.de>
#           (C) 2010 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_FREETYPE) += host-freetype

#
# Paths and names
#
HOST_FREETYPE_DIR	= $(HOST_BUILDDIR)/$(FREETYPE)

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

#
# autoconf
#
HOST_FREETYPE_CONF_TOOL	:= autoconf
HOST_FREETYPE_CONF_OPT	:= \
	$(HOST_AUTOCONF) \
	--disable-static \
	--disable-biarch-config \
	--enable-freetype-config \
	--enable-mmap \
	--without-zlib \
	--without-bzip2 \
	--without-png \
	--without-harfbuzz \
	--without-old-mac-fonts \
	--without-fsspec \
	--without-fsref \
	--without-quickdraw-toolbox \
	--without-quickdraw-carbon \
	--without-ats

# vim: syntax=make