2a10e22d1e
Changes by Thomas Petazzoni <thomas.petazzoni@free-electrons.com> * Installation to target is the default * No installation to staging is the default * The QUAGGA_HEADERS option does not exist * BOA_INSTALL_TARGETS_CMDS wouldn't work in the Quagga package, and was anyway doing the default action * The QUAGGA_BINARY/QUAGGA_TARGET_BINARY variables were not used * Bump to 0.99.16, which fixes a problem when IPv6 is not enabled Signed-off-by: cmchao <cmchao@gmail.com> merge quagga
94 lines
1.9 KiB
Makefile
94 lines
1.9 KiB
Makefile
#############################################################
|
|
#
|
|
# quagga suite
|
|
#
|
|
#############################################################
|
|
QUAGGA_VERSION:=0.99.16
|
|
QUAGGA_SOURCE:=quagga-$(QUAGGA_VERSION).tar.gz
|
|
QUAGGA_SITE:=http://www.quagga.net/download/
|
|
|
|
QUAGGA_DEPENDENCIES = host-gawk
|
|
QUAGGA_LIBTOOL_PATCH = NO
|
|
QUAGGA_CONF_OPT = --program-transform-name=''
|
|
|
|
ifeq ($(BR2_PACKAGE_QUAGGA_ZEBRA),y)
|
|
QUAGGA_CONF_OPT+=--enable-zebra
|
|
else
|
|
QUAGGA_CONF_OPT+=--disable-zebra
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_QUAGGA_BGPD),y)
|
|
QUAGGA_CONF_OPT+=--enable-bgpd
|
|
else
|
|
QUAGGA_CONF_OPT+=--disable-bgpd
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_QUAGGA_RIPD),y)
|
|
QUAGGA_CONF_OPT+=--enable-ripd
|
|
else
|
|
QUAGGA_CONF_OPT+=--disable-ripd
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_QUAGGA_RIPNGD),y)
|
|
QUAGGA_CONF_OPT+=--enable-ripngd
|
|
else
|
|
QUAGGA_CONF_OPT+=--disable-ripngd
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_QUAGGA_OSPFD),y)
|
|
QUAGGA_CONF_OPT+=--enable-ospfd
|
|
else
|
|
QUAGGA_CONF_OPT+=--disable-ospfd
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_QUAGGA_OSPF6D),y)
|
|
QUAGGA_CONF_OPT+=--enable-ospf6d
|
|
else
|
|
QUAGGA_CONF_OPT+=--disable-ospf6d
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_QUAGGA_WATCHQUAGGA),y)
|
|
QUAGGA_CONF_OPT+=--enable-watchquagga
|
|
else
|
|
QUAGGA_CONF_OPT+=--disable-watchquagga
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_QUAGGA_ISISD),y)
|
|
QUAGGA_CONF_OPT+=--enable-isisd
|
|
else
|
|
QUAGGA_CONF_OPT+=--disable-isisd
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_QUAGGA_BGP_ANNOUNCE),y)
|
|
QUAGGA_CONF_OPT+=--enable-bgp-announce
|
|
else
|
|
QUAGGA_CONF_OPT+=--disable-bgp-announce
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_QUAGGA_NETLINK),y)
|
|
QUAGGA_CONF_OPT+=--enable-netlink
|
|
else
|
|
QUAGGA_CONF_OPT+=--disable-netlink
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_QUAGGA_SNMP),y)
|
|
QUAGGA_CONF_OPT+=--enable-snmp
|
|
QUAGGA_DEPENDENCIES+=netsnmp
|
|
else
|
|
QUAGGA_CONF_OPT+=--disable-snmp
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_QUAGGA_TCP_ZEBRA),y)
|
|
QUAGGA_CONF_OPT+=--enable-tcp-zebra
|
|
else
|
|
QUAGGA_CONF_OPT+=--disable-tcp-zebra
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_QUAGGA_OPAGUE_LSA),y)
|
|
QUAGGA_CONF_OPT+=--enable-opaque-lsa
|
|
else
|
|
QUAGGA_CONF_OPT+=--disable-opaque-lsa
|
|
endif
|
|
|
|
$(eval $(call AUTOTARGETS,package,quagga))
|