Home > Archive > PHP Documentation > September 2006 > Re: [PHP-DOC] cvs: phpdoc / configure.in
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Re: [PHP-DOC] cvs: phpdoc / configure.in
|
|
| Hannes Magnusson 2006-09-14, 6:58 pm |
| Hi Nuno
This patch breaks 2.13...
autoconf: Undefined macros:
configure.in:825:AC_CONFIG_FILES([$OUTFILES])
bjori@lindsay doc$ autoconf --version
Autoconf version 2.13
On 9/14/06, Nuno Lopes <nlopess@php.net> 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/phpdo...5&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+x
> dnl }}}
>
>
| |
| Nuno Lopes 2006-09-14, 6:58 pm |
| Ok, I have reverted this, as autoconf 2.13 is still widely used.
Nuno
[color=darkred]
> Hi Nuno
> This patch breaks 2.13...
>
> autoconf: Undefined macros:
> configure.in:825:AC_CONFIG_FILES([$OUTFILES])
> bjori@lindsay doc$ autoconf --version
> Autoconf version 2.13
>
> On 9/14/06, Nuno Lopes <nlopess@php.net> wrote:
|
|
|
|
|