--- modules/presence_dfks/Makefile.orig	2020-10-15 10:22:35 UTC
+++ modules/presence_dfks/Makefile
@@ -6,8 +6,12 @@ auto_gen=
 NAME=presence_dfks.so
 
 ifeq ($(CROSS_COMPILE),)
-LIBS=-lxml2
-DEFS+=-I$(SYSBASE)/include/libxml2
+HAS_XML2CFG=$(shell if which xml2-config >/dev/null 2>/dev/null;then echo YES; fi)
+endif
+
+ifeq ($(HAS_XML2CFG),YES)
+LIBS=$(shell xml2-config --libs)
+DEFS+=$(shell xml2-config --cflags)
 else
 DEFS+=-I$(SYSBASE)/include/libxml2 -I$(LOCALBASE)/include/libxml2 \
       -I$(LOCALBASE)/include
