diff options
author | Michael Heimpold <mhei@heimpold.de> | 2019-12-03 00:08:21 +0100 |
---|---|---|
committer | Michael Heimpold <mhei@heimpold.de> | 2019-12-21 16:59:53 +0100 |
commit | 0f10c8c84135eb222b26f0c6dfe561c0b4cefb94 (patch) | |
tree | 7ccd578c88396b852094adcd3540a0bfa6da1fd8 /lang/php7/patches/1003-Fix-dl-cross-compiling-issue.patch | |
parent | 6263f9ec802dfc0fd3304a96c30bb2ebbd898efd (diff) |
php7: major upgrade to 7.4.1
- remove obsolete patches and update other ones
- filter support is now available as an extension module
- php7-mod-hash: this extension is now part of the core binary
and cannot be built as an extension module anymore
- php7-mod-gd:
- do not use bundled libgd, but rely on external one
- this also obsoletes dependencies and configuration options
- php7-mod-zip: requires external libzip now
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
Diffstat (limited to 'lang/php7/patches/1003-Fix-dl-cross-compiling-issue.patch')
-rw-r--r-- | lang/php7/patches/1003-Fix-dl-cross-compiling-issue.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/lang/php7/patches/1003-Fix-dl-cross-compiling-issue.patch b/lang/php7/patches/1003-Fix-dl-cross-compiling-issue.patch deleted file mode 100644 index bd181b81c..000000000 --- a/lang/php7/patches/1003-Fix-dl-cross-compiling-issue.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -422,7 +422,10 @@ PHP_CHECK_FUNC(gethostname, nsl) - PHP_CHECK_FUNC(gethostbyaddr, nsl) - PHP_CHECK_FUNC(yp_get_default_domain, nsl) - --PHP_CHECK_FUNC(dlopen, dl) -+PHP_ADD_LIBRARY(dl) -+PHP_DEF_HAVE(dlopen) -+PHP_DEF_HAVE(libdl) -+ac_cv_func_dlopen=yes - if test "$ac_cv_func_dlopen" = "yes"; then - AC_DEFINE(HAVE_LIBDL, 1, [ ]) - fi ---- a/ext/fileinfo/config.m4 -+++ b/ext/fileinfo/config.m4 -@@ -46,6 +46,10 @@ int main(void) - AC_MSG_RESULT(no) - AC_MSG_NOTICE(using libmagic strcasestr implementation) - libmagic_sources="$libmagic_sources libmagic/strcasestr.c" -+ ],[ -+ dnl cross-compiling; assume not present -+ 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) |