From 4a60797d1a4479fad75949c7eec77fd1a9e33f71 Mon Sep 17 00:00:00 2001 From: George Sapkin Date: Sun, 10 May 2026 02:59:18 +0300 Subject: [PATCH] pdns: update config arguments Remove old and add updated configuration arguments. Signed-off-by: George Sapkin --- net/pdns/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/net/pdns/Makefile b/net/pdns/Makefile index 32f931804c..a4c4b5de1d 100644 --- a/net/pdns/Makefile +++ b/net/pdns/Makefile @@ -1,8 +1,10 @@ +# SPDX-License-Identifier: GPL-2.0-only + include $(TOPDIR)/rules.mk PKG_NAME:=pdns PKG_VERSION:=4.9.7 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=https://downloads.powerdns.com/releases/ @@ -176,13 +178,13 @@ TARGET_CXX+=-std=c++17 CONFIGURE_ARGS+= \ --sysconfdir=/etc/powerdns \ --libdir=/usr/lib/powerdns \ + --with-boost=$(STAGING_DIR)/usr/include \ --with-dynmodules="$(foreach backend,$(PDNS_BACKENDS),$(if $(CONFIG_PACKAGE_pdns-backend-$(backend)),$(PDNS_BACKEND_$(backend)_LIB),))" \ --with-lua="lua" \ --with-modules="bind" \ --with-mysql-lib=$(STAGING_DIR)/usr \ --with-mysql-includes=$(STAGING_DIR)/usr \ $(if $(CONFIG_PACKAGE_pdns-tools),--enable-tools,) \ - --with-protobuf \ --without-libsodium \ --enable-experimental-pkcs11 \ --enable-lua-records \