请高手指教:./buildconf --force
Forcing buildconf
using default Zend directory
buildconf: checking installation...
buildconf: autoconf version 2.59 (ok)
buildconf: Your version of autoconf likely contains buggy cache code.
           Running cvsclean for you.
           To avoid this, install autoconf-2.13.
rebuilding configure
aclocal.m4:2056: PHP_PROG_LEX is expanded from...
怎么解决? 
需要把autoconf降级么?

解决方案 »

  1.   

    The best autoconf version ever is 2.13. Anything above is slow, buggy
    and utter crap. And as it works, why fix it? So just install the old
    version and you're done. Newer is not always better..Free hint: You can have multiple autoconf versions around. Just set
    PHP_AUTOCONF and PHP_AUTOHEADER to point to the old versions, something
    like this:# export PHP_AUTOCONF=/usr/bin/autoconf213
    # export PHP_AUTOHEADER=/usr/bin/autoheader213Then buildconf and phpize stuff will use the old (working) versions. :)参考:http://bugs.php.net/bug.php?id=43384&edit=1不用降级,再装一个autoconf,然后指定下目录就OK。
      

  2.   

    安装了2.13.版本。而且不用自己制定目录。php会自己关联想要的版本。问题解决。