diff options
author | Quentin Young <qlyoung@users.noreply.github.com> | 2019-09-03 20:55:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-03 20:55:38 +0200 |
commit | 68376178e557809bcba7b5e0d078442e00beeef1 (patch) | |
tree | fd29e0ee23c2aa8a44cddfce662341cee801b310 /configure.ac | |
parent | Merge pull request #4604 from opensourcerouting/mutex-sugar (diff) | |
parent | zebra/fpm: deprecation warning for protobuf (diff) | |
download | frr-68376178e557809bcba7b5e0d078442e00beeef1.tar.xz frr-68376178e557809bcba7b5e0d078442e00beeef1.zip |
Merge pull request #4919 from opensourcerouting/config-warnings
build: error out on implicit missing libcap, warn for protobuf FPM
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index a940739ae..6c1b35b5f 100755 --- a/configure.ac +++ b/configure.ac @@ -2038,6 +2038,20 @@ if test "${enable_capabilities}" != "no"; then -o x"${frr_ac_lcaps}" = x"yes"; then AC_DEFINE([HAVE_CAPABILITIES], [1], [capabilities]) fi + + case "$host_os" in + linux*) + 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 + ;; + esac +else + case "$host_os" in + linux*) + AC_MSG_WARN([Running FRR without libcap support built in causes a huge performance penalty.]) + ;; + esac fi AC_SUBST([LIBCAP]) |