diff options
author | Adam Duskett <Aduskett@gmail.com> | 2018-12-27 12:49:03 -0500 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-12-28 14:04:00 +0100 |
commit | cd6c2f41ef0e58d0b797039512d5c0f07c7239ab (patch) | |
tree | f05a9ba9248c86f835e30434bbbda1d1fcbaf46a /package/php/0005-ext-fileinfo-config.m4-allow-cache-answer-for-strcas.patch | |
parent | 24a13885d67fe7dc020b753f3ff00b8870d76b2e (diff) | |
download | buildroot-cd6c2f41ef0e58d0b797039512d5c0f07c7239ab.tar.gz buildroot-cd6c2f41ef0e58d0b797039512d5c0f07c7239ab.zip |
package/php: bump version to 7.3.0
Other changes:
- Update patches so they cleanly apply.
- Remove patch 5, as it no longer applies.
- Remove conf env option ac_cv_func_strcasestr=yes because of the
above.
- libzip is no longer bundled with php, because of this, libzip must
now be selected and depended on if the zip extension is selected.
Signed-off-by: Adam Duskett <Aduskett@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/php/0005-ext-fileinfo-config.m4-allow-cache-answer-for-strcas.patch')
-rw-r--r-- | package/php/0005-ext-fileinfo-config.m4-allow-cache-answer-for-strcas.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/package/php/0005-ext-fileinfo-config.m4-allow-cache-answer-for-strcas.patch b/package/php/0005-ext-fileinfo-config.m4-allow-cache-answer-for-strcas.patch deleted file mode 100644 index 257ac70f4f..0000000000 --- a/package/php/0005-ext-fileinfo-config.m4-allow-cache-answer-for-strcas.patch +++ /dev/null @@ -1,37 +0,0 @@ -From a874ba472151c6811018de322a5787d0ca6148c9 Mon Sep 17 00:00:00 2001 -From: Gustavo Zacarias <gustavo@zacarias.com.ar> -Date: Tue, 9 Aug 2016 11:52:51 +0200 -Subject: [PATCH] ext/fileinfo/config.m4: allow cache answer for strcasestr - discovery - -Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> -[aduskett@gmail.com: Update for 7.2.2] -Signed-off-by: Adam Duskett <aduskett@gmail.com> ---- - ext/fileinfo/config.m4 | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/ext/fileinfo/config.m4 b/ext/fileinfo/config.m4 -index 7e98d62..8561962 100644 ---- a/ext/fileinfo/config.m4 -+++ b/ext/fileinfo/config.m4 -@@ -15,6 +15,7 @@ libmagic/readcdf.c libmagic/softmagic.c libmagic/der.c" - - AC_MSG_CHECKING([for strcasestr]) -+ AC_CACHE_VAL(ac_cv_func_strcasestr, - AC_TRY_RUN([ - #include <string.h> - #include <strings.h> - #include <stdlib.h> -@@ -46,7 +47,7 @@ int main(void) - AC_MSG_RESULT(no) - AC_MSG_NOTICE(using libmagic strcasestr implementation) - libmagic_sources="$libmagic_sources libmagic/strcasestr.c" -- ]) -+ ])) - - PHP_NEW_EXTENSION(fileinfo, fileinfo.c $libmagic_sources, $ext_shared,,-I@ext_srcdir@/libmagic) - PHP_ADD_BUILD_DIR($ext_builddir/libmagic) --- -2.7.4 - |