]> git.proxmox.com Git - mirror_frr.git/commitdiff
debianpkg: enable rtrlib by default
authorDavid Lamparter <equinox@diac24.net>
Mon, 10 Dec 2018 21:15:22 +0000 (22:15 +0100)
committerDavid Lamparter <equinox@diac24.net>
Tue, 19 Feb 2019 20:30:53 +0000 (21:30 +0100)
librtr is in Debian unstable now, so this should default on.

Signed-off-by: David Lamparter <equinox@diac24.net>
debianpkg/README.Debian
debianpkg/control
debianpkg/rules

index 99003b7d088fcb5af74fbd1c9aa35a80121fa80b..6d6c60bef12236a63012a4257037b9792cd92c1a 100644 (file)
@@ -27,11 +27,11 @@ Zebra was developed by Kunihiro Ishiguro.
 
 The following Build Profiles have been added:
 
-- pkg.frr.rtrlib (pkg.frr.nortrlib)
+- pkg.frr.nortrlib (pkg.frr.rtrlib)
   controls whether the RPKI module is built.
   Will be enabled by default at some point, adds some extra dependencies.
 
-- pkg.frr.snmp (pkg.frr.nosnmp)
+- pkg.frr.nosnmp (pkg.frr.snmp)
   controls whether the SNMP module is built, see below for license issues.
   Will remain default-off as long as the license issue persists.
 
index 9fa1d6b699c7e02fa4839432f1fba349631943f5..d706665754b01537b99160182e34ed5936139eee 100644 (file)
@@ -21,9 +21,9 @@ Build-Depends:
  libpcre3-dev,
  libpython3-dev,
  libreadline-dev,
- librtr-dev <pkg.frr.rtrlib>,
+ librtr-dev <!pkg.frr.nortrlib>,
  libsnmp-dev,
- libssh-dev <pkg.frr.rtrlib>,
+ libssh-dev <!pkg.frr.nortrlib>,
  libsystemd-dev <!pkg.frr.nosystemd>,
  pkg-config,
  python3,
@@ -85,7 +85,7 @@ Description: FRRouting suite - BGP RPKI support (rtrlib)
  used to prevent hijacking of networks on the wider internet.  It is only
  relevant to internet service providers using their own autonomous system
  number.
-Build-Profiles: <pkg.frr.rtrlib>
+Build-Profiles: <!pkg.frr.nortrlib>
 
 Package: frr-doc
 Section: doc
index 16587f110b5978d2b78f00aa8e5e2b40cfc662f5..f46041834a007588d1b6dbe8ee4db854c47d8d54 100755 (executable)
@@ -15,10 +15,10 @@ endif
 
 # package-specific build profiles
 
-ifeq ($(filter pkg.frr.rtrlib,$(DEB_BUILD_PROFILES)),)
-  CONF_RPKI=--disable-rpki
-else
+ifeq ($(filter pkg.frr.nortrlib,$(DEB_BUILD_PROFILES)),)
   CONF_RPKI=--enable-rpki
+else
+  CONF_RPKI=--disable-rpki
 endif
 
 ifeq ($(filter pkg.frr.nosystemd,$(DEB_BUILD_PROFILES)),)