From 0caf30679f1987ed8131c8e418440b7cc6f21e32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tilman=20Keskin=C3=B6z?= Date: Thu, 22 May 2025 18:59:55 +0200 Subject: [PATCH] buildfix If libxml2 is in a non-default directory, it needs to be added to LDFLAGS --- tools/rules-check/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/rules-check/Makefile.am b/tools/rules-check/Makefile.am index c79a6256..80804117 100644 --- a/tools/rules-check/Makefile.am +++ b/tools/rules-check/Makefile.am @@ -26,7 +26,8 @@ modsec_rules_check_LDFLAGS = \ $(LMDB_LDFLAGS) \ $(LUA_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ - $(YAJL_LDFLAGS) + $(YAJL_LDFLAGS) \ + $(LIBXML2_LDFLAGS) modsec_rules_check_CPPFLAGS = \ -I$(top_builddir)/headers \