diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS index 03898a9eaf65b..8837c8572e97b 100644 --- a/UPGRADING.INTERNALS +++ b/UPGRADING.INTERNALS @@ -151,6 +151,8 @@ PHP 8.4 INTERNALS UPGRADE NOTES PGSQL_LIBS environment variables. When a directory argument is provided to configure options (--with-pgsql=DIR or --with-pdo-pgsql=DIR), it will be used instead of the pkg-config search. + - Removed BC enable_pear variable check due to --enable-pear configure option + once used (use with_pear variable name). c. Windows build system changes - The configure options --with-oci8-11g, --with-oci8-12c, --with-oci8-19 have diff --git a/configure.ac b/configure.ac index 82788679e5a50..2587bbf4579fb 100644 --- a/configure.ac +++ b/configure.ac @@ -1195,11 +1195,6 @@ dnl ---------------------------------------------------------------------------- PHP_HELP_SEPARATOR([PEAR:]) PHP_CONFIGURE_PART(Configuring PEAR) -dnl Compatibility -if test -z "$with_pear" && test "$enable_pear" = "no"; then - with_pear=no -fi - dnl If CLI is disabled disable PEAR. if test "$PHP_CLI" = "no"; then with_pear=no