Blame 0001-Allow-fxml.hrl-to-be-found-from-system-libs.patch

3f15c9c
From 5b99ba2d85fbf1c665823583fd8045d5bbfa120f Mon Sep 17 00:00:00 2001
3f15c9c
From: Randy Barlow <randy@electronsweatshop.com>
3f15c9c
Date: Sat, 31 Dec 2016 13:43:36 -0500
3f15c9c
Subject: [PATCH] Allow fxml.hrl to be found from system libs.
3f15c9c
3f15c9c
This commit adjusts an include() call to be include_lib() so that
3f15c9c
fxml.hrl can be found when it is installed in /usr/lib rather than
3f15c9c
in a local deps folder.
3f15c9c
---
3f15c9c
 include/xmpp.hrl | 2 +-
3f15c9c
 1 file changed, 1 insertion(+), 1 deletion(-)
3f15c9c
3f15c9c
diff --git include/xmpp.hrl include/xmpp.hrl
3f15c9c
index 4236f6c..955c825 100644
3f15c9c
--- include/xmpp.hrl
3f15c9c
+++ include/xmpp.hrl
3f15c9c
@@ -26,7 +26,7 @@
3f15c9c
 -include("ns.hrl").
3f15c9c
 -include("jid.hrl").
3f15c9c
 -include("xmpp_codec.hrl").
3f15c9c
--include("fxml.hrl").
3f15c9c
+-include_lib("fast_xml/include/fxml.hrl").
3f15c9c
 
3f15c9c
 -type stanza() :: iq() | presence() | message().
3f15c9c
 
3f15c9c
-- 
3f15c9c
2.11.0
3f15c9c