aboutsummaryrefslogtreecommitdiff
path: root/net/frr/patches/004-cross_libcap_fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'net/frr/patches/004-cross_libcap_fix.patch')
-rw-r--r--net/frr/patches/004-cross_libcap_fix.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/net/frr/patches/004-cross_libcap_fix.patch b/net/frr/patches/004-cross_libcap_fix.patch
deleted file mode 100644
index 58e6bc8e0..000000000
--- a/net/frr/patches/004-cross_libcap_fix.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 2cd3abe419dab2ee32227c0870f96f805d870fe6 Mon Sep 17 00:00:00 2001
-From: Lucian Cristian <lucian.cristian@gmail.com>
-Date: Fri, 13 Sep 2019 07:16:18 +0300
-Subject: [PATCH] clippy: fail libcap test only when !enable_clippy_only when
- building native clippy we don't need libcap
-
-Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
----
- configure.ac | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/configure.ac b/configure.ac
-index 9f37b3e9a9..be3a9c763d 100755
---- a/configure.ac
-+++ b/configure.ac
-@@ -2043,9 +2043,11 @@ if test "${enable_capabilities}" != "no"; then
-
- case "$host_os" in
- linux*)
-+ if test "${enable_clippy_only}" != "yes"; then
- if test "$frr_ac_lcaps" != "yes"; then
- AC_MSG_ERROR([libcap and/or its headers were not found. Running FRR without libcap support built in causes a huge performance penalty.])
- fi
-+ fi
- ;;
- esac
- else