Browse Source

pua_xmpp: Makefile - use pkg-config if xml2-config is not found

- GH #2199
Daniel-Constantin Mierla 5 năm trước cách đây
mục cha
commit
d40a924bd6
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      src/modules/pua_xmpp/Makefile

+ 6 - 0
src/modules/pua_xmpp/Makefile

@@ -8,6 +8,12 @@ LIBS=
 
 ifeq ($(CROSS_COMPILE),)
 XML2CFG=$(shell which xml2-config)
+ifeq ($(XML2CFG),)
+XML2CFG=$(shell \
+	if pkg-config --exists libxml-2.0; then \
+		echo 'pkg-config libxml-2.0'; \
+	fi)
+endif
 endif
 
 ifneq ($(XML2CFG),)