# -*-makefile-*- # # Copyright (C) 2014 by Juergen Beisert # # 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