summaryrefslogtreecommitdiffstats
path: root/rules/host-m4.make
blob: 9264fe5c9740a2c57d77b5cc922f0d1ffacad35d (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
# -*-makefile-*-
#
# Copyright (C) 2014 by Juergen Beisert <jbe@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
HOST_PACKAGES-$(PTXCONF_HOST_M4) += host-m4

#
# Paths and names
#
HOST_M4_VERSION	:= 1.4.18
HOST_M4_MD5	:= 730bb15d96fffe47e148d1e09235af82
HOST_M4		:= m4-$(HOST_M4_VERSION)
HOST_M4_SUFFIX	:= tar.xz
HOST_M4_URL	:= http://ftp.gnu.org/gnu/m4/$(HOST_M4).$(HOST_M4_SUFFIX)
HOST_M4_SOURCE	:= $(SRCDIR)/$(HOST_M4).$(HOST_M4_SUFFIX)
HOST_M4_DIR	:= $(HOST_BUILDDIR)/$(HOST_M4)
HOST_M4_LICENSE	:= GPL-3.0-only

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

#
# autoconf
#
HOST_M4_CONF_TOOL	:= autoconf
HOST_M4_CONF_OPT	:= \
	$(HOST_AUTOCONF) \
	--enable-threads=posix \
	--disable-gcc-warnings \
	--enable-assert \
	--disable-rpath \
	--disable-c++ \
	--disable-changeword \
	--without-included-regex \
	--with-syscmd-shell=/bin/sh \
	--without-dmalloc

# vim: syntax=make