From 16c850b8d7fa781099315b6a7cc68e6fb5cdeb20 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 16 Jul 2025 09:50:56 +0300 Subject: [PATCH] lib-var-expand-crypt: Fix linking issues This fixes at least OSX linking issues. --- src/lib-var-expand-crypt/Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib-var-expand-crypt/Makefile.am b/src/lib-var-expand-crypt/Makefile.am index dcf501c921..e56727fc9c 100644 --- a/src/lib-var-expand-crypt/Makefile.am +++ b/src/lib-var-expand-crypt/Makefile.am @@ -9,6 +9,7 @@ AM_CPPFLAGS = \ var_expand_crypt_la_SOURCES = \ var-expand-crypt.c +NOPLUGIN_LDFLAGS = var_expand_crypt_la_LDFLAGS = $(MODULE_LIBS) -avoid-version -module pkginc_libdir=$(pkgincludedir) @@ -24,9 +25,11 @@ test_libs = \ $(module_LTLIBRARIES) \ ../lib-dcrypt/libdcrypt.la \ ../lib-var-expand/libvar_expand.la \ + ../lib-json/libjson.la \ ../lib-settings/libsettings.la \ ../lib-dns/libdns.la \ ../lib-test/libtest.la \ + ../lib/liblib.la \ $(DLLIB) test_var_expand_crypt_SOURCES = test-var-expand-crypt.c -- 2.47.3