From: Noah Meyerhans Date: Fri, 4 Jul 2025 16:23:16 +0000 (-0400) Subject: knot-resolver: disable jemalloc support X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=3413d5bd9c45e1f0cb53bf233bdb318434df62e0;p=feed%2Fpackages.git knot-resolver: disable jemalloc support knot-resolver will attempt to use jemalloc if it's available. Jemalloc was added to openwrt packages in PR: Add jemalloc and integrate into bind #26721 [1]. At this time, we would rather continue linking with the libc malloc, so this PR disables jemalloc support explicitly in the knot-resolver build configuration. [1] https://github.com/openwrt/packages/pull/26721#issuecomment-2973865778 Signed-off-by: Noah Meyerhans --- diff --git a/net/knot-resolver/Makefile b/net/knot-resolver/Makefile index fdeb0f7afc..fe1e508e6f 100644 --- a/net/knot-resolver/Makefile +++ b/net/knot-resolver/Makefile @@ -66,7 +66,8 @@ MESON_ARGS+= \ -Dkeyfile_default=/etc/knot-resolver/root.keys \ -Dprefix=/usr \ -Dunit_tests=disabled \ - -Dutils=disabled + -Dutils=disabled \ + -Dmalloc=disabled define Package/knot-resolver/install $(INSTALL_DIR) $(1)/usr/sbin