<pre style='margin:0'>
Ryan Schmidt (ryandesign) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/de9df3f4cc370cb35d34b54d42f5e1da54f414a5">https://github.com/macports/macports-ports/commit/de9df3f4cc370cb35d34b54d42f5e1da54f414a5</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new de9df3f  expat: Disable the use of docbook at build time
</span>de9df3f is described below

<span style='display:block; white-space:pre;color:#808000;'>commit de9df3f4cc370cb35d34b54d42f5e1da54f414a5
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Fri Aug 17 23:52:15 2018 -0500

<span style='display:block; white-space:pre;color:#404040;'>    expat: Disable the use of docbook at build time
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Fixes build failure if docbook-utils is installed and active.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Expat uses the docbook2man program to convert the xmlwf manpage from
</span><span style='display:block; white-space:pre;color:#404040;'>    its docbook xml source code into troff format. But there are two
</span><span style='display:block; white-space:pre;color:#404040;'>    different versions of this program: one provided by docbook2X, and
</span><span style='display:block; white-space:pre;color:#404040;'>    another provided by docbook-utils. expat only works with the one from
</span><span style='display:block; white-space:pre;color:#404040;'>    docbook2X, so it checks at configure time whether the docbook2man it
</span><span style='display:block; white-space:pre;color:#404040;'>    found is the right one. If not, it complains.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Since we build expat from a release download which already includes a
</span><span style='display:block; white-space:pre;color:#404040;'>    pre-generated xmlwf.1 troff file, we don't need to regenerate it from
</span><span style='display:block; white-space:pre;color:#404040;'>    docbook xml at all, so we can bypass the configure check.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    See: https://github.com/libexpat/libexpat/issues/188
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Closes: https://trac.macports.org/ticket/56988
</span>---
 textproc/expat/Portfile | 2 ++
 1 file changed, 2 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/textproc/expat/Portfile b/textproc/expat/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 105557c..3725955 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/textproc/expat/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/textproc/expat/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -24,6 +24,8 @@ homepage            http://www.libexpat.org/
</span> master_sites        sourceforge:project/${name}/${name}/${version}
 use_bzip2           yes
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+configure.args      --without-docbook
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> use_parallel_build  yes
 
 test.run            yes
</pre><pre style='margin:0'>

</pre>