diff options
author | olivier <olivier@FreeBSD.org> | 2018-05-26 14:08:38 +0800 |
---|---|---|
committer | olivier <olivier@FreeBSD.org> | 2018-05-26 14:08:38 +0800 |
commit | 7f7b68925bf5dd195b468d2df597e24e56e29ae4 (patch) | |
tree | f12b942744c7c0d0fc73c6fec51f9f1f12764e3a | |
parent | 220bcd989d2557d1f0a1bf48be811456261d5395 (diff) | |
download | freebsd-ports-gnome-7f7b68925bf5dd195b468d2df597e24e56e29ae4.tar.gz freebsd-ports-gnome-7f7b68925bf5dd195b468d2df597e24e56e29ae4.tar.zst freebsd-ports-gnome-7f7b68925bf5dd195b468d2df597e24e56e29ae4.zip |
Forgot to enable RPKI (Resource Public Key Infrastructure) support
PR: 228371
Submitted by: Felix Annen <freebsd@bodems.net>
-rw-r--r-- | net/bird2/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/bird2/Makefile b/net/bird2/Makefile index 26be50d2cf36..6977af410949 100644 --- a/net/bird2/Makefile +++ b/net/bird2/Makefile @@ -3,7 +3,7 @@ PORTNAME= bird DISTVERSION= 2.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= ftp://bird.network.cz/pub/bird/ PKGNAMESUFFIX= 2 @@ -28,7 +28,7 @@ MAKE_JOBS_UNSAFE= yes OPTIONS_MULTI= RP RP_DESC= Routing Protocols -OPTIONS_MULTI_RP= BFD BABEL BGP OSPF PIPE RADV RIP STATIC +OPTIONS_MULTI_RP= BFD BABEL BGP OSPF PIPE RADV RIP RPKI STATIC OPTIONS_DEFAULT= ${OPTIONS_MULTI_RP} BFD_DESC= Bidirectional Forwarding Detection @@ -38,6 +38,7 @@ OSPF_DESC= Open Short Path First PIPE_DESC= PIPE routing RADV_DESC= Router Advertisement RIP_DESC= Routing Information Protocol +RPKI_DESC= Resource Public Key Infrastructure STATIC_DESC= Static routing BFD_VARS= rt_prot+=bfd @@ -47,6 +48,7 @@ OSPF_VARS= rt_prot+=ospf PIPE_VARS= rt_prot+=pipe RADV_VARS= rt_prot+=radv RIP_VARS= rt_prot+=rip +RPKI_VARS= rt_prot+=rpki STATIC_VARS= rt_prot+=static CONFIGURE_ARGS+=--with-protocols="${RT_PROT}" |