mirror of
https://github.com/openwrt/packages.git
synced 2025-02-12 04:38:06 +00:00
Changelog: https://www.knot-resolver.cz/2023-01-26-knot-resolver-5.6.0.html https://www.knot-resolver.cz/2023-08-22-knot-resolver-5.7.0.html Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
21 lines
931 B
Diff
21 lines
931 B
Diff
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('------------------------------')
|