summaryrefslogtreecommitdiffstats
path: root/rules/host-c-ares.make
blob: 2e36d5c004b111130e25682cc397f1b27b3fc97e (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
# -*-makefile-*-
#
# Copyright (C) 2018 by Clemens Gruber <clemens.gruber@pqgruber.com>
#
# 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_C_ARES) += host-c-ares

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

#
# autoconf
#
HOST_C_ARES_CONF_TOOL	:= autoconf
HOST_C_ARES_CONF_OPT	:= \
	$(HOST_AUTOCONF) \
	--disable-debug \
	--enable-optimize \
	--enable-warnings \
	--disable-werror \
	--disable-curldebug \
	--enable-symbol-hiding \
	--disable-expose-statics \
	--disable-code-coverage \
	$(GLOBAL_LARGE_FILE_OPTION) \
	--disable-libgcc \
	--enable-nonblocking \
	--disable-tests \
	--with-random=/dev/urandom

# vim: syntax=make