1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-15 20:03:57 +02:00
Commit Graph

28 Commits

Author SHA1 Message Date
Peter van Dijk
e2f8ac23f6 dnsdist: update to 1.7.1
Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
2022-04-25 12:12:15 -07:00
Peter van Dijk
8ca0439f97 dnsdist: update to 1.7.0
* bump to 1.7.0
* add outgoing DNS over HTTPS support, using new dependency nghttp2

Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
2022-01-19 13:27:16 -08:00
Wout Bertrums
74bea91e5a dnsdist/pdns/pdns-recursor: Remove 010-time_t-check.patch
This patch to remove PowerDNS' check for whether time_t is 64-bit is not needed anymore,
due to OpenWrt now having a more recent musl libc where time_t is 64-bit on all architectures.

Signed-off-by: Wout Bertrums <wout@wbnet.eu>
2021-09-27 07:16:05 -07:00
Wout Bertrums
7cab44e001 dnsdist: Update to v1.6.1
The patch for GCC 11 is not needed anymore because it is upstream now:
https://github.com/PowerDNS/pdns/pull/10400

Signed-off-by: Wout Bertrums <wout@wbnet.eu>
2021-09-27 07:16:05 -07:00
Rosen Penev
e8ae9fb45f dnsdist: fix compilation with GCC11
Missing header.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-07 14:47:12 -07:00
Peter van Dijk
da9aab57ed dnsdist: remove --enable-option-checking=fatal
Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
2021-06-29 12:31:19 +02:00
James Taylor
bdfc242e29 pdns: Change maintainer on pdns packages
Remove myself as maintainer from PowerDNS Related packages and add
Peter van Dijk from PowerDNS as the new maintainer

Signed-off-by: James Taylor <james@jtaylor.id.au>
2021-06-02 22:19:42 +10:00
Philip Prindeville
4b481281ef dnsdist: fix missing quote
Seeing the following error when running 'make defconfig':

tmp/.config-package.in:69874:warning: multi-line strings not supported

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2021-05-31 16:30:16 -06:00
Peter van Dijk
013ae32427 dnsdist: make sodium optional
Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
2021-05-28 23:24:11 +02:00
Peter van Dijk
174ac452a3 dnsdist: make dnstap support (and with it the libfstrm dep) optional
Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
2021-05-28 23:24:11 +02:00
Peter van Dijk
6d8fb2091c dnsdist: make re2 support optional
Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
2021-05-28 23:24:11 +02:00
Peter van Dijk
e8c8c5cce0 dnsdist: make net-snmp support optional
Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
2021-05-28 23:24:11 +02:00
Peter van Dijk
b17cf4199d dnsdist: update to 1.6.0
Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
2021-05-28 23:24:07 +02:00
Rosen Penev
3c1d623606
dnsdist: update to 1.5.1
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-10-10 14:27:27 -07:00
Rosen Penev
d5d13971a7
dnsdist: fix compilation with libcxx 10
string_view is available with both boost and std.

Backported extra patch getting rid of using namespace std.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-06-06 12:49:59 -07:00
Eneas U de Queiroz
dbe11776ed dnsdist: fix default SSL lib spelling
This is cosmetic only, since openssl is the first one being defined, but
it avoids a warning in scripts/config, after upgrading to kconfig-v5.6:
tmp/.config-package.in:102839:warning: choice default symbol
'DNSDIST_OPENSSSL' is not contained in the choice

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2020-04-08 07:43:38 -03:00
Rosen Penev
4bd8f1bae6
dnsdist: fix compilation on PIE ARM64
$(FPIC) evaluates to -fpic on ARM64, breaking compilation:

The dnsdist build system handles it properly anyway. Added --with-pic to
make it explicit.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-02-13 15:48:44 -08:00
Sebastian Kemper
e5b967aa51 dnsdist: add dependency on tinycdb
If libcdb from tinycdb is available dnsdist will link to it. This commit
adds the dependency.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2019-12-15 10:49:22 +01:00
Sebastian Kemper
6374c7d921 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>
2019-12-14 17:39:08 +01:00
Sebastian Kemper
c28357d923 dnsdist: add missing lmdb dep
Currently dnsdist is failing at packaging stage when lmdb is in staging:

make[4]: Leaving directory '/builder/shared-workdir/build/sdk/build_dir/target-x86_64_musl/dnsdist-1.4.0'
Package dnsdist is missing dependencies for the following libraries:
liblmdb.so
Makefile:109: recipe for target '/builder/shared-workdir/build/sdk/bin/packages/x86_64/packages/dnsdist_1.4.0-2_x86_64.ipk' failed

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2019-12-14 17:34:56 +01:00
James Taylor
a771736f85
dnsdist: fix missing quote in menu
Fixes missing double quote in menu

Signed off by: James Taylor <james@jtaylor.id.au>
2019-12-13 19:03:53 +11:00
James Taylor
64b9bd368f dnsdist: add missing dependency on libcap
When present on the build system dnsdist will try to make use of libcap. This
change adds an explicit dependency to ensure it's present at build time, to
prevent build failures when another package brings the dependency in.

Signed-off-by: James Taylor <james@jtaylor.id.au>
2019-12-12 20:31:49 +11:00
James Taylor
32fe1a6741 dnsdist: update to 1.4.0
Update dnsdist to next major release 1.4.0. This release introduces
dependencies on libh2o-evloop and libwslay for support of DNS over
HTTPS.

Release Blog Post: https://blog.powerdns.com/2019/11/20/dnsdist-1-4-0/
Changelog: https://dnsdist.org/changelog.html#change-1.4.0

Also removes compatibility patches required for previous release that have
been incorporated upstream.

Signed-off-by: James Taylor <james@jtaylor.id.au>
2019-12-10 21:33:01 +11:00
James Taylor
fe97f8a80e dnsdist: Add PKG_CPE_ID field to Makefile
Adding the PKG_CPE_ID field to the Makefile for dnsdist

Signed-off-by: James Taylor <james@jtaylor.id.au>
2019-06-25 21:01:51 +10:00
James Taylor
eed1c945fa
dnsdist: Move into IP Adresses and Names
Moving the DNSDIST package into the IP Addresses and Names subcategory under Network. This will make it easier to find since it will be with other DNS tools.

Signed-off-by: James Taylor <james@jtaylor.id.au>
2019-06-07 02:39:57 +10:00
Rosen Penev
3e6e4b622e dnsdist: Fix several issues
Add patch that detects when -latomic is needed.

Fix compilation without deprecated OpenSSL APIs.

Hard-code lua to avoid luajit dependency.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-29 13:35:31 -07:00
James Taylor
bb76f5cdd1 dnsdist: add missing dependency for libatomic
libatomic is required on mips* targets. This change will fix buildbot failures in #8548
for dnsdist

Signed-off-by: James Taylor <james@jtaylor.id.au>
2019-05-27 18:53:20 +10:00
James Taylor
5ee9364eaf dnsdist: add package
Maintainer: me
Compile tested: armv7l, OpenWRT SDK
Run tested: armv7l  Linksys WRT1900ACS, OpenWrt SNAPSHOT, r9987-655fff1571 -
confirmed dnsdist links correctly against dependencies and doesn't experience
errors at run-time when enabling features.

Description:
dnsdist is a highly DNS-, DoS- and abuse-aware loadbalancer. Its goal in life is
to route traffic to the best server, delivering top performance to legitimate
users while shunting or blocking abusive traffic.

dnsdist is dynamic, its configuration language is Lua and it can be changed at
runtime, and its statistics can be queried from a console-like interface or an
HTTP API.

https://dnsdist.org/

Closes: PowerDNS/pdns#3294

Signed-off-by: James Taylor <james@jtaylor.id.au>
2019-05-21 01:38:56 +10:00