0166ad163c
Update HOMEPAGE, MASTER_SITES. Set USE_GNU_READLINE to catch up to 2012Q3 devel/readline builtin detection. 0.99.22.3 basically contains a security bugfix for OSPF-API. 0.99.22.2 was not released. 0.99.22.1 contains a few non-security bugfixes. Changes in 0.99.22 since 0.99.21: - [bgpd] The semantics of default-originate route-map have changed. The route-map is now used to advertise the default route conditionally. The old behaviour which allowed to set attributes on the originated default route is no longer supported. - [bgpd] There is now a replace-as option to neighbor ... local-as ... no-prepend. For details, refer to the user documentation. - [zebra] An FPM interface has been added. This provides an alternate interface to routing information and is geared at OpenFlow & co. - [snmp] AgentX is now supported; the old smux backend is considered deprecated. ospf6d has also had OSPFV3-MIB added. - [*] several issues with configuration save/load/apply have been fixed, in particular on ospf "max-metric router-lsa administrative" and "distribute-list", bgpd "no neighbor activate", isisd "metric-style", - [*] a lot of bugs have been fixed, please refer to the git log
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# $NetBSD: options.mk,v 1.8 2013/08/07 14:05:15 gdt Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.quagga
|
|
PKG_SUPPORTED_OPTIONS= inet6
|
|
PKG_SUPPORTED_OPTIONS+= quagga-ospf-opaque-lsa
|
|
PKG_SUPPORTED_OPTIONS+= quagga-vtysh
|
|
PKG_SUGGESTED_OPTIONS= inet6
|
|
PKG_SUGGESTED_OPTIONS+= quagga-ospf-opaque-lsa
|
|
PKG_SUGGESTED_OPTIONS+= quagga-vtysh
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### IPv6 support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
PLIST_CAT+= ${PKGDIR}/PLIST.v6
|
|
RCD_SCRIPTS+= ospf6d ripngd
|
|
. for _file_ in ospf6d.conf ripngd.conf
|
|
CONF_FILES_PERMS+= ${PREFIX}/share/examples/quagga/log_syslog.conf \
|
|
${PKG_SYSCONFDIR}/${_file_} quagga quagga 0600
|
|
. endfor
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ospf6d
|
|
CONFIGURE_ARGS+= --disable-ripngd
|
|
.endif
|
|
|
|
###
|
|
### Include 'vtysh' program.
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mquagga-vtysh)
|
|
# uses rl_pending_input
|
|
USE_GNU_READLINE= yes
|
|
. include "../../devel/readline/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-vtysh
|
|
PLIST_CAT+= ${PKGDIR}/PLIST.vtysh
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-vtysh
|
|
.endif
|
|
|
|
###
|
|
### Include Opaque LSA support in OSPF (RFC2370).
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mquagga-ospf-opaque-lsa)
|
|
# opaque-lsa is now the upstream default.
|
|
PLIST_CAT+= ${PKGDIR}/PLIST.opaquelsa
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-opaque-lsa
|
|
.endif
|