git: 9e3726b1e03d - main - net/lavinmq: switch to dynamic build

From: Dave Cottlehuber <dch_at_FreeBSD.org>
Date: Tue, 25 Nov 2025 17:13:48 UTC
The branch main has been updated by dch:

URL: https://cgit.FreeBSD.org/ports/commit/?id=9e3726b1e03daf85cd9e8842fe881035dd50d3ef

commit 9e3726b1e03daf85cd9e8842fe881035dd50d3ef
Author:     Dave Cottlehuber <dch@FreeBSD.org>
AuthorDate: 2025-11-25 15:43:23 +0000
Commit:     Dave Cottlehuber <dch@FreeBSD.org>
CommitDate: 2025-11-25 17:13:33 +0000

    net/lavinmq: switch to dynamic build
    
    devel/pcre2 removed static .a which net/lavinmq implicitly depended on.
    
    Fixes: 10271f602b65504ee8a6661fc68736dbe5f94ad5
    
    Sponsored by:   SkunkWerks, GmbH
---
 net/lavinmq/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net/lavinmq/Makefile b/net/lavinmq/Makefile
index 63b22fd6f118..f82333c4fa81 100644
--- a/net/lavinmq/Makefile
+++ b/net/lavinmq/Makefile
@@ -47,10 +47,10 @@ WWW=		https://www.lavinmq.com/
 LICENSE=	APACHE20
 
 BUILD_DEPENDS=	crystal:lang/crystal \
-		liblz4>0:archivers/liblz4 \
 		help2man:misc/help2man \
-		pcre2>0:devel/pcre2 \
 		shards:devel/shards
+LIB_DEPENDS=	liblz4.so:archivers/liblz4 \
+		libpcre2-8.so:devel/pcre2
 
 USES=		pkgconfig ssl:build
 USE_GITHUB=	yes
@@ -71,7 +71,7 @@ PORTDOCS=	CHANGELOG.md NOTICE README.md SECURITY.md
 OPTIONS_DEFINE=	DOCS
 
 SHARDS_ENV=	--time --verbose --production --release --no-color --stats \
-		--static -Dgc_none --error-on-warnings -Dpreview_mt -Dexecution_context
+		-Dgc_none --error-on-warnings -Dpreview_mt -Dexecution_context
 
 .include <bsd.port.options.mk>