diff options
author | Sebastian Kemper <sebastian_ml@gmx.net> | 2019-12-14 17:37:56 +0100 |
---|---|---|
committer | Sebastian Kemper <sebastian_ml@gmx.net> | 2019-12-14 17:39:08 +0100 |
commit | 6374c7d921fbe5a223c5178908f2c2e62e6dd008 (patch) | |
tree | bacb0db934683f746648855c8ae609ecc1a6e616 /net | |
parent | c28357d92341aa71b4eb6ebb23e0e57244c826c3 (diff) |
dnsdist: add missing build dep on protoc
The build needs protoc, otherwise it fails.
checking if we need to link in protobuf... yes
checking for PROTOBUF... yes
checking for protoc... no
configure: error: Protobuf requested but the protobuf compiler was not found
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/dnsdist/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/dnsdist/Makefile b/net/dnsdist/Makefile index 0ec409b38..53a94f658 100644 --- a/net/dnsdist/Makefile +++ b/net/dnsdist/Makefile @@ -15,6 +15,8 @@ PKG_CPE_ID:=cpe:/a:powerdns:dnsdist PKG_INSTALL:=1 +PKG_BUILD_DEPENDS:=protobuf/host + PKG_CONFIG_DEPENDS:= \ CONFIG_DNSDIST_GNUTLS \ CONFIG_DNSDIST_OPENSSL |