]> granicus.if.org Git - php/commit
Remove PHP_CHECK_CONFIGURE_OPTIONS
authorPeter Kokot <peterkokot@gmail.com>
Tue, 2 Jul 2019 20:15:24 +0000 (22:15 +0200)
committerPeter Kokot <peterkokot@gmail.com>
Tue, 2 Jul 2019 20:15:24 +0000 (22:15 +0200)
commit16df718251cac201e956dee35af8d96f548395e6
treefec129e902450c62203707895bbefa7c9fb85598
parentb1ef50091d81a94e1d0a92010d99a862bb5a58b0
Remove PHP_CHECK_CONFIGURE_OPTIONS

Instead of building a custom macro for checking configure options,
Autoconf 2.62+ already outputs a warning at the beginning and the end
of the output of configure script. It automatically detects correct
and wrong options better.

This is related also to bug #55634.

So now instead a better way is the default Autoconf approach:

This outputs a warning at the beginning and end of the configure output:

    ./configure --with-non-existing

This results in fatal error:

    ./configure --non-existing

    configure: error: unrecognized option: `--non-existing'
    Try `./configure --help' for more information

The `--enable-option-checking=fatal` results in fatal error for all non
existing options:

    ./configure --with-non-existing --enable-option-checking=fatal

    configure: error: unrecognized options: --with-non-existing

Closes GH-4348
build/php.m4
configure.ac