Ok, I have reverted this, as autoconf 2.13 is still widely used.
Nuno
Hi Nuno This patch breaks 2.13... autoconf: Undefined macros: configure.in:825:AC_CONFIG_FILES([$OUTFILES]) [EMAIL PROTECTED] doc$ autoconf --version Autoconf version 2.13 On 9/14/06, Nuno Lopes <[EMAIL PROTECTED]> wrote:nlopess Thu Sep 14 13:16:00 2006 UTC Modified files: /phpdoc configure.in Log: remove warnings in newer autoconf versions. Patch by Richard Quadling http://cvs.php.net/viewvc.cgi/phpdoc/configure.in?r1=1.234&r2=1.235&diff_format=u Index: phpdoc/configure.in diff -u phpdoc/configure.in:1.234 phpdoc/configure.in:1.235 --- phpdoc/configure.in:1.234 Mon Feb 13 20:32:12 2006 +++ phpdoc/configure.in Thu Sep 14 13:16:00 2006 @@ -1,7 +1,7 @@ -dnl $Id: configure.in,v 1.234 2006/02/13 20:32:12 nlopess Exp $ +dnl $Id: configure.in,v 1.235 2006/09/14 13:16:00 nlopess Exp $ dnl autoconf initialisation -AC_INIT() +AC_INIT SRCDIR=$srcdir WORKDIR=`pwd` AC_SUBST(SRCDIR) @@ -578,7 +578,7 @@ else if test ! -d "$srcdir/$withval"; then AC_MSG_RESULT() - AC_MSG_ERROR(Language \"$withval\" not supported!) + AC_MSG_ERROR(Language "$withval" not supported!) fi LANG_HACK_FOR_HE="no" @@ -822,7 +822,8 @@ OUTFILES="$OUTFILES ./$outdir$outfile" fi done -AC_OUTPUT($OUTFILES) +AC_CONFIG_FILES([$OUTFILES]) +AC_OUTPUT find ./scripts -name "*.sh" | tee find.log | xargs chmod u+xdnl }}}
