I&#39;m working on the package for vtk 5-4-0 in macports (vtk-devel).  The src/Wrapping/README.txt indicates a dependency on yacc (byacc) and flex.  I have the following available (through macports), which dependency should I use?<br>
<br>*****************************************************************************<br>
<br>bison @2.4.1 (devel)<br>    general-purpose parser generator<br><br>bison1 @1.875 (devel, lang)<br>    general-purpose parser generator<br><br>byacc @20090221 (devel)<br>    Berkeley Yacc<br><br>flex @2.5.35 (devel)<br>
    Fast lexical analyser generator<br><br>py-bison @0.1.8 (python, lang)<br>    Python-based parsing at the speed of C<br><br>*****************************************************************************<br>
<br>bison @2.4.1 (devel)<br>Variants:    universal, yacc<br><br>Bison is a general-purpose parser generator that converts a grammar description for an LALR context-free grammar into a C program to<br>parse that grammar. Once you are proficient with Bison, you can use it to develop a wide range of language parsers, from those used in<br>
simple desk calculators to complex programming languages.<br>Homepage:    <a href="http://www.gnu.org/software/bison/">http://www.gnu.org/software/bison/</a><br><br>Library Dependencies: gettext, m4, libiconv<br>Platforms:            darwin<br>
Maintainers:          <a href="mailto:mww@macports.org">mww@macports.org</a><br><br>*****************************************************************************<br><br>byacc @20090221 (devel)<br>Variants:    universal<br>
<br>Berkeley Yacc (byacc) is generally conceded to be the best yacc variant available. In contrast to bison, it is written to avoid<br>dependencies upon a particular compiler.<br>Homepage:    <a href="http://invisible-island.net/byacc/">http://invisible-island.net/byacc/</a><br>
<br>Platforms:            darwin<br>Maintainers:          <a href="mailto:toby@macports.org">toby@macports.org</a><br><br>*****************************************************************************<br>
<br><br>Furthermore, if both bison yacc and byacc are installed, how are they called; ie, how do we control which one is used?<br><br>Thanks in advance,<br>Darren<br><br><br><br><br><br><div class="gmail_quote">On Mon, May 4, 2009 at 1:17 PM, David Thompson <span dir="ltr">&lt;<a href="mailto:dcthomp@sandia.gov">dcthomp@sandia.gov</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im">&gt; Does the python (and other lang) wrapping depend on swig?<br>
</div>No, the wrapping in VTK is a parser written in C with the help of lex<br>
and yacc. It was written before SWIG existed, as I recall.<br>
<font color="#888888"><br>
        David<br>
</font><div><div></div><div class="h5"><br>
&gt; On Mon, May 4, 2009 at 11:27 AM, pat marion &lt;<a href="mailto:pat.marion@kitware.com">pat.marion@kitware.com</a>&gt;<br>
&gt; wrote:<br>
&gt;         Another helpful detail- you can tell the wrapper to ignore<br>
&gt;         certain<br>
&gt;         files by using this in your CMakeLists.txt:<br>
&gt;<br>
&gt;         SET_SOURCE_FILES_PROPERTIES(<br>
&gt;          vtkMyUnwrappableClass.cxx<br>
&gt;          WRAP_EXCLUDE<br>
&gt;         )<br>
&gt;<br>
&gt;         Pat<br>
&gt;<br>
&gt;<br>
&gt;         On Mon, May 4, 2009 at 1:22 PM, David E DeMarle<br>
&gt;         &lt;<a href="mailto:dave.demarle@kitware.com">dave.demarle@kitware.com</a>&gt; wrote:<br>
&gt;         &gt; A search on markmail turned up a fairly recent discussion of<br>
&gt;         the topic.<br>
&gt;         &gt;<br>
&gt;         &gt; <a href="http://vtk.markmail.org/search/?q=wrapping#query:wrapping" target="_blank">http://vtk.markmail.org/search/?q=wrapping#query:wrapping</a><br>
&gt;         +page:1+mid:plwydwprhlreh24s+state:results<br>
&gt;         &gt;<br>
&gt;         &gt; It doesn&#39;t look the the wiki page was ever moved over to<br>
&gt;         <a href="http://vtk.org" target="_blank">vtk.org</a>. I<br>
&gt;         &gt; will do that now.<br>
&gt;         &gt;<br>
&gt;         &gt; David E DeMarle<br>
&gt;         &gt; Kitware, Inc.<br>
&gt;         &gt; R&amp;D Engineer<br>
&gt;         &gt; 28 Corporate Drive<br>
&gt;         &gt; Clifton Park, NY 12065-8662<br>
&gt;         &gt; Phone: 518-371-3971 x109<br>
&gt;         &gt;<br>
&gt;         &gt;<br>
&gt;         &gt;<br>
&gt;         &gt; On Mon, May 4, 2009 at 1:12 PM, kent williams<br>
&gt;         &lt;<a href="mailto:nkwmailinglists@gmail.com">nkwmailinglists@gmail.com</a>&gt; wrote:<br>
&gt;         &gt;&gt; Maybe I&#39;m just missing the tree I need for the forest, but<br>
&gt;         I went<br>
&gt;         &gt;&gt; looking for documentation on VTK Wrapping, and came up<br>
&gt;         empty.<br>
&gt;         &gt;&gt;<br>
&gt;         &gt;&gt; In fact, in the top ten hits for google search on &quot;vtk<br>
&gt;         wrapping&quot;  my<br>
&gt;         &gt;&gt; own posts to the VTK-Users come up, the ones where I claim<br>
&gt;         that VTK<br>
&gt;         &gt;&gt; wrapping are driving me insane.<br>
&gt;         &gt;&gt;<br>
&gt;         &gt;&gt; I&#39;ve acquired the bare minimum knowledge necessary to<br>
&gt;         survive VTK<br>
&gt;         &gt;&gt; wrapping for KWWidgets applications --- use //BTX and //ETX<br>
&gt;         to keep<br>
&gt;         &gt;&gt; the wrapping parser from losing its mind, always name<br>
&gt;         classes with a<br>
&gt;         &gt;&gt; &#39;vtk&#39; prefix, limit argument types to built-in scalar types<br>
&gt;         and char *<br>
&gt;         &gt;&gt; -- but is VTK wrapping actually documented anywhere?<br>
&gt;         &gt;&gt; _______________________________________________<br>
&gt;         &gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;         &gt;&gt;<br>
&gt;         &gt;&gt; Visit other Kitware open-source projects at<br>
&gt;         <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;         &gt;&gt;<br>
&gt;         &gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;         &gt;&gt; <a href="http://www.vtk.org/mailman/listinfo/vtk-developers" target="_blank">http://www.vtk.org/mailman/listinfo/vtk-developers</a><br>
&gt;         &gt;&gt;<br>
&gt;         &gt;&gt;<br>
&gt;         &gt; _______________________________________________<br>
&gt;         &gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;         &gt;<br>
&gt;         &gt; Visit other Kitware open-source projects at<br>
&gt;         <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;         &gt;<br>
&gt;         &gt; Follow this link to subscribe/unsubscribe:<br>
&gt;         &gt; <a href="http://www.vtk.org/mailman/listinfo/vtk-developers" target="_blank">http://www.vtk.org/mailman/listinfo/vtk-developers</a><br>
&gt;         &gt;<br>
&gt;         &gt;<br>
&gt;         _______________________________________________<br>
&gt;         Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt;         Visit other Kitware open-source projects at<br>
&gt;         <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt;         Follow this link to subscribe/unsubscribe:<br>
&gt;         <a href="http://www.vtk.org/mailman/listinfo/vtk-developers" target="_blank">http://www.vtk.org/mailman/listinfo/vtk-developers</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
<br>
<br>
</div></div></blockquote></div><br>