knot-resolver: drop LMDB build workaround
authorMichał Kępień <redacted>
Fri, 3 Apr 2026 10:26:26 +0000 (12:26 +0200)
committerAlexandru Ardelean <redacted>
Fri, 3 Apr 2026 10:27:39 +0000 (13:27 +0300)
Drop the meson.build workaround needed before commit
8aa78ebebfb6727c46334a69e32fc76576376a09, which fixed the
underlying issue.

Link: https://github.com/openwrt/packages/pull/29047
Signed-off-by: Michał Kępień <redacted>
net/knot-resolver/Makefile
net/knot-resolver/patches/010-fix-lmdb.patch [deleted file]

index 39c3b24e9d30cb90405877b9364698f328e1d133..098e5b3013e31f2f33cb1052c16cdf86a1e44bd3 100644 (file)
@@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=knot-resolver
 PKG_VERSION:=5.7.6
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 PKG_SOURCE_URL:=https://secure.nic.cz/files/knot-resolver
diff --git a/net/knot-resolver/patches/010-fix-lmdb.patch b/net/knot-resolver/patches/010-fix-lmdb.patch
deleted file mode 100644 (file)
index 2b0f0c0..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-This is just workaround. It should be removed after proper fixing in upstream.
-Patch fixes problem with lmdb pkg confing. It also adds workaround for get_option
-which is now not propagated in OpenWrt meson host package.
---- a/meson.build
-+++ b/meson.build
-@@ -23,10 +23,10 @@ libknot = dependency('libknot', version:
- libdnssec = dependency('libdnssec', version: knot_version)
- libzscanner = dependency('libzscanner', version: knot_version)
- libuv = dependency('libuv', version: '>=1.7')
--lmdb = dependency('lmdb', required: false)
--if not lmdb.found()  # darwin workaround: missing pkgconfig
--  lmdb = meson.get_compiler('c').find_library('lmdb')
--endif
-+##lmdb = dependency('lmdb', required: false)
-+##if not lmdb.found()  # darwin workaround: missing pkgconfig
-+lmdb = meson.get_compiler('c').find_library('lmdb')
-+##endif
- gnutls = dependency('gnutls')
- luajit = dependency('luajit')
- message('------------------------------')
git clone https://git.99rst.org/PROJECT