diff options
author | Remi Collet <remi@remirepo.net> | 2024-09-23 15:31:00 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-09-23 15:31:00 +0200 |
commit | 740a14090dec83951484a2705d7ffc7555ebb768 (patch) | |
tree | 7768a1c01872b781aaa4d530dd0cac8fe3bd7e3d /php-8.4.0-phpize.patch | |
parent | 16b62b61c0de11f9b89c4805a9b37e9bbc2ec12f (diff) |
update to 8.4.0beta5
drop oci8, pdo_oci8, pspell and imap extensions
disable ZTS build
Diffstat (limited to 'php-8.4.0-phpize.patch')
-rw-r--r-- | php-8.4.0-phpize.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/php-8.4.0-phpize.patch b/php-8.4.0-phpize.patch new file mode 100644 index 0000000..76c3ed5 --- /dev/null +++ b/php-8.4.0-phpize.patch @@ -0,0 +1,35 @@ +diff -up ./scripts/phpize.in.headers ./scripts/phpize.in +--- ./scripts/phpize.in.headers 2019-07-23 10:05:11.000000000 +0200 ++++ ./scripts/phpize.in 2019-07-23 10:18:13.648098089 +0200 +@@ -166,6 +166,15 @@ phpize_autotools() + $PHP_AUTOHEADER || exit 1 + } + ++phpize_check_headers() ++{ ++ if test ! -f $includedir/main/php.h; then ++ echo "Can't find PHP headers in $includedir" ++ echo "The php-devel package is required for use of this command." ++ exit 1 ++ fi ++} ++ + # Main script + + case "$1" in +@@ -184,12 +193,15 @@ case "$1" in + + # Version + --version|-v) ++ phpize_check_headers + phpize_print_api_numbers + exit 0 + ;; + + # Default + *) ++ phpize_check_headers ++ + phpize_check_configm4 0 + + phpize_check_build_files |