summaryrefslogtreecommitdiffstats
path: root/rules/host-gettext.make
blob: 5159c263c7d00480159e64d447480c5855a6f42e (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
# -*-makefile-*-
#
# Copyright (C) 2007 by Robert Schwebel
#               2009 by Marc Kleine-Budde <mkl@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
HOST_PACKAGES-$(PTXCONF_HOST_GETTEXT) += host-gettext

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

#
# autoconf
#
HOST_GETTEXT_CONF_TOOL := autoconf
HOST_GETTEXT_CONF_OPT := \
	$(HOST_AUTOCONF) \
	--disable-java \
	--disable-csharp \
	--enable-threads=posix \
	--disable-static \
	--disable-nls \
	--disable-rpath \
	--disable-c++ \
	--enable-cross-guesses=conservative \
	--enable-relocatable \
	--disable-libasprintf \
	--disable-curses \
	--enable-namespacing \
	--disable-openmp \
	--disable-acl \
	--with-included-libunistring \
	--with-included-libxml \
	--with-included-regex \
	--without-emacs \
	--without-git \
	--without-cvs \
	--without-bzip2 \
	--without-xz

# vim: syntax=make