4744ff0173
Apply upstream patch ("keepalived/ip_vs: fix integer types") removing non standard integer types that musl does not provide. Fixes: http://autobuild.buildroot.net/results/503/5038874be985ad2b6588150071ced0d6589af601/ http://autobuild.buildroot.net/results/6e9/6e9f5885de99847a24cc1c3a17adf0cd1606b316/ http://autobuild.buildroot.net/results/b61/b61c2cfa949c2a20f0702522857d78651207e6d2/ Cc: Ilias Apalodimas <apalos@gmail.com> Cc: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
35 lines
957 B
Makefile
35 lines
957 B
Makefile
################################################################################
|
|
#
|
|
# keepalived
|
|
#
|
|
################################################################################
|
|
|
|
KEEPALIVED_VERSION = 1.3.2
|
|
KEEPALIVED_SITE = http://www.keepalived.org/software
|
|
KEEPALIVED_DEPENDENCIES = host-pkgconf openssl popt
|
|
KEEPALIVED_LICENSE = GPLv2+
|
|
KEEPALIVED_LICENSE_FILES = COPYING
|
|
KEEPALIVED_CONF_OPTS += --disable-dbus
|
|
|
|
KEEPALIVED_PATCH = https://github.com/acassen/keepalived/commit/5d98b7b69fcbba84fa69e5b5e9a019bfbcb76e8b.patch
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBNL),y)
|
|
KEEPALIVED_DEPENDENCIES += libnfnetlink
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_IPSET),y)
|
|
KEEPALIVED_DEPENDENCIES += ipset
|
|
KEEPALIVED_CONF_OPTS += --enable-libipset
|
|
else
|
|
KEEPALIVED_CONF_OPTS += --disable-libipset
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_IPTABLES),y)
|
|
KEEPALIVED_DEPENDENCIES += iptables
|
|
KEEPALIVED_CONF_OPTS += --enable-libiptc
|
|
else
|
|
KEEPALIVED_CONF_OPTS += --disable-libiptc
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|