0001-fix-includes.patch 455 B

12345678910111213141516
  1. Without this patch, rebar fails to find include file fxml.hrl.
  2. Signed-off-by: Christophe Romain <cromain@process-one.net>
  3. diff --git a/include/xmpp.hrl b/include/xmpp.hrl
  4. index afa5f61..678858e 100644
  5. --- a/include/xmpp.hrl
  6. +++ b/include/xmpp.hrl
  7. @@ -26,7 +26,7 @@
  8. -include("ns.hrl").
  9. -include("jid.hrl").
  10. -include("xmpp_codec.hrl").
  11. --include("fxml.hrl").
  12. +-include_lib("p1_xml/include/fxml.hrl").
  13. -type stanza() :: iq() | presence() | message().