0.99.20: The primary focus of this release is a fix of SEGV regression in ospfd, which was introduced in 0.99.19. It also features a series of minor improvements, including better RFC compliance in bgpd, better support of FreeBSD and some enhancements to isisd. 0.99.19: This release provides security fixes, which address assorted vulnerabilities in bgpd, ospfd and ospf6d (CVE-2011-3323, CVE-2011-3324, CVE-2011-3325, CVE-2011-3326 and CVE-2011-3327). 0.99.18: This release fixes 2 denial of services in bgpd, which can be remotely triggered by malformed AS-Pathlimit or Extended-Community attributes. These issues have been assigned CVE-2010-1674 and CVE-2010-1675. Support for AS-Pathlimit has been removed with this release. The release includes a number of bug-fixes and enhancements, primarily for ospfd, ospf6d and bgpd.
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
# $NetBSD: options.mk,v 1.4 2011/12/05 17:52:37 gdt Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.quagga
|
|
PKG_SUPPORTED_OPTIONS= inet6
|
|
PKG_SUPPORTED_OPTIONS+= quagga-ospf-opaque-lsa
|
|
PKG_SUGGESTED_OPTIONS+= quagga-ospf-opaque-lsa
|
|
PKG_SUPPORTED_OPTIONS+= quagga-vtysh
|
|
PKG_SUGGESTED_OPTIONS+= quagga-vtysh
|
|
|
|
PKG_OPTIONS_LEGACY_VARS+= USE_ZEBRA_OSPF_OPAQUELSA:quagga-ospf-opaque-lsa
|
|
PKG_OPTIONS_LEGACY_VARS+= USE_ZEBRA_VTYSH: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)
|
|
USE_GNU_READLINE= # uses rl_pending_input
|
|
. 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
|