Greetings,<br><br>I can build the newest pet under Ubuntu dapper and edgy with autoconf 2.60<br>and automake 1.9. It sounds like your problems are being caused by how<br>autoconf is being called. When I rebuild the configuration script, I usually call
<br>aclocal followed by autoconf. aclocal takes care of setting all of the version-<br>related flags in the configuration file based on version information pulled from<br>your system. You might want to try calling aclocal before calling autoconf.
<br><br>If it is Ubuntu packages you are after, I have already packaged the latest and<br>greatest PET with selective unpacking. You can use the following repository:<br><br>
        deb <a href="http://cl.naist.jp/~eric-n/ubuntu-nlp">http://cl.naist.jp/~eric-n/ubuntu-nlp</a> dapper delph-in<br>
        deb-src <a href="http://cl.naist.jp/~eric-n/ubuntu-nlp">http://cl.naist.jp/~eric-n/ubuntu-nlp</a> dapper delph-in<br><br>Eric<br><br><div><span class="gmail_quote">On 11/13/06, <b class="gmail_sendername">Timothy Baldwin
</b> &lt;<a href="mailto:tim@csse.unimelb.edu.au">tim@csse.unimelb.edu.au</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi Stephan,<br><br><br>&gt; given a flurry of recent activity, i think you should get latest and<br>&gt; greatest versions of everything: the ERG, LKB, and [incr tsdb()] (in<br>&gt; the LinGO CVS repository); plus PET (from SVN).&nbsp;&nbsp;the ERG that dan put
<br>&gt; out yesterday includes a new MEM file `jhpstg.mem', which is active by<br>&gt; default.&nbsp;&nbsp;it was trainined on an up-to-date treebank of 7000 sentences<br>&gt; of hiking text (the LOGON corpus) and uses three-level grandparenting;
<br>&gt; thanks to zhang yi (of CoLi), the latest PET can take advantage of the<br>&gt; enriched feature set in this model, though only in selective unpacking<br>&gt; mode.<br><br>We've been playing around with the latest and greatest version of PET and
<br>having various problems getting it to build. This may be a simple<br>demonstration of our (my) ignorance of the subtleties of things like autoconf<br>and automake, but when we run autoconf (v2.5.9) over the original <a href="http://configure.ac">
configure.ac</a><br>we get errors relating to automake (AM_*) commands:<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;If this token and others are legitimate, please use m4_pattern_allow.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;See the Autoconf documentation.<br><a href="http://configure.ac:168">
configure.ac:168</a>: error: possibly undefined macro: AM_CONDITIONAL<br><br>which we were able to remove by adding the following to <a href="http://configure.ac">configure.ac</a>:<br><br>m4_pattern_allow([^AM_])<br><br>when we then run ./configure (parameterised variously), we get a bunch more
<br>errors relating to automake, which happily go away when all of the AM_*<br>command lines are removed from configure, but configure then complains about<br>not finding install.sh and the various <a href="http://Makefile.in">
Makefile.in</a> files in each<br>directory. automake (v1.9.2) is independently grumpy about the contents of the<br>various <a href="http://Makefile.am">Makefile.am</a> files:<br><br><br># automake<br><a href="http://configure.ac">
configure.ac</a>: no proper invocation of AM_INIT_AUTOMAKE was found.<br><a href="http://configure.ac">configure.ac</a>: You should verify that <a href="http://configure.ac">configure.ac</a> invokes AM_INIT_AUTOMAKE,<br><a href="http://configure.ac">
configure.ac</a>: that aclocal.m4 is present in the top-level directory,<br><a href="http://configure.ac">configure.ac</a>: and that aclocal.m4 was recently regenerated (using aclocal).<br><a href="http://configure.ac">configure.ac
</a>: required file `./missing' not found<br>cheap/Makefile.am:79: TOMABECHI_UNIFIER does not appear in AM_CONDITIONAL<br>cheap/Makefile.am:83: SIMPLE_UNIFIER does not appear in AM_CONDITIONAL<br>cheap/Makefile.am:96: ECL does not appear in AM_CONDITIONAL
<br>cheap/Makefile.am:98: ECLPREPROC does not appear in AM_CONDITIONAL<br>cheap/Makefile.am:99: ICU does not appear in AM_CONDITIONAL<br>cheap/Makefile.am:106: ECLMRS does not appear in AM_CONDITIONAL<br>cheap/Makefile.am:130: XML does not appear in AM_CONDITIONAL
<br>cheap/Makefile.am:135: ICU does not appear in AM_CONDITIONAL<br>cheap/Makefile.am:140: LEXDB does not appear in AM_CONDITIONAL<br>cheap/Makefile.am:145: YY does not appear in AM_CONDITIONAL<br>cheap/Makefile.am: required file `./depcomp' not found
<br>/usr/share/automake-1.9/am/depend2.am: am__fastdepCC does not appear in AM_CONDITIONAL<br>/usr/share/automake-1.9/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL<br>cheap/Makefile.am:43: `CFLAGS' is a user variable, you should not override it;
<br>cheap/Makefile.am:43: use `AM_CFLAGS' instead.<br>/usr/share/automake-1.9/am/depend2.am: am__fastdepCXX does not appear in AM_CONDITIONAL<br>cheap/Makefile.am:42: `CXXFLAGS' is a user variable, you should not override it;
<br>cheap/Makefile.am:42: use `AM_CXXFLAGS' instead.<br>/usr/share/automake-1.9/am/depend2.am: am__fastdepCXX does not appear in AM_CONDITIONAL<br>/usr/share/automake-1.9/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL
<br>/usr/share/automake-1.9/am/depend2.am: am__fastdepCC does not appear in AM_CONDITIONAL<br>/usr/share/automake-1.9/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL<br>fspp/Makefile.am:31: `CFLAGS' is a user variable, you should not override it;
<br>fspp/Makefile.am:31: use `AM_CFLAGS' instead.<br>/usr/share/automake-1.9/am/depend2.am: am__fastdepCXX does not appear in AM_CONDITIONAL<br>fspp/Makefile.am:30: `CXXFLAGS' is a user variable, you should not override it;
<br>fspp/Makefile.am:30: use `AM_CXXFLAGS' instead.<br><a href="http://Makefile.am:2">Makefile.am:2</a>: ECL does not appear in AM_CONDITIONAL<br><a href="http://Makefile.am:3">Makefile.am:3</a>: ECLPREPROC does not appear in AM_CONDITIONAL
<br><a href="http://Makefile.am:4">Makefile.am:4</a>: ICU does not appear in AM_CONDITIONAL<br><a href="http://Makefile.am">Makefile.am</a>: required file `./INSTALL' not found<br><a href="http://Makefile.am">Makefile.am</a>
: required file `./NEWS' not found<br><a href="http://Makefile.am">Makefile.am</a>: required file `./AUTHORS' not found<br><a href="http://Makefile.am">Makefile.am</a>: required file `./ChangeLog' not found<br><a href="http://Makefile.am">
Makefile.am</a>: required file `./COPYING' not found<br><br><br>I'm not sure if we are just using old versions of the various packages<br>(although RedHat AS and Ubuntu dapper seemed equally grumpy), or just going<br>about things the wrong way, but we'd appreciate it if anyone could offer any
<br>wisdom to help us out.<br><br><br>Tim<br></blockquote></div><br><br clear="all"><br>-- <br>--Eric Nichols