From 95967c2077762985235e47db1fe9949bed5cbe8f Mon Sep 17 00:00:00 2001 From: Muhammad Moinur Rahman Date: Sat, 10 Jun 2023 13:59:03 +0200 Subject: */*php83*: Sunrise Please DO NOT use this version in production, it is an early test version. For upgrade notes please visit: https://github.com/php/php-src/blob/php-8.3.0alpha1/UPGRADING Changelog: https://github.com/php/php-src/blob/php-8.3.0alpha1/NEWS Sponsored by: Bounce Experts --- mail/php83-imap/files/patch-config.m4 | 47 +++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 mail/php83-imap/files/patch-config.m4 (limited to 'mail/php83-imap/files') diff --git a/mail/php83-imap/files/patch-config.m4 b/mail/php83-imap/files/patch-config.m4 new file mode 100644 index 000000000000..18c6da8e6e00 --- /dev/null +++ b/mail/php83-imap/files/patch-config.m4 @@ -0,0 +1,47 @@ +--- config.m4.orig 2023-06-06 15:54:29 UTC ++++ config.m4 +@@ -117,6 +117,13 @@ PHP_ARG_WITH([imap-ssl], + [no], + [no]) + ++PHP_ARG_WITH([pcre-dir], ++ [pcre install prefix], ++ [AS_HELP_STRING([[--with-pcre-dir]], ++ [IMAP: pcre install prefix])], ++ [no], ++ [no]) ++ + if test "$PHP_IMAP" != "no"; then + PHP_SUBST(IMAP_SHARED_LIBADD) + PHP_NEW_EXTENSION(imap, php_imap.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1) +@@ -131,6 +138,30 @@ if test "$PHP_IMAP" != "no"; then + el[]IMAP_INC_CHK(/c-client) + fi + done ++ ++ dnl This is PECL build, check if bundled PCRE library is used ++ old_CPPFLAGS=$CPPFLAGS ++ CPPFLAGS=$INCLUDES ++ AC_EGREP_CPP(yes,[ ++#include
++#if defined(HAVE_BUNDLED_PCRE) && !defined(COMPILE_DL_PCRE) ++yes ++#endif ++ ],[ ++ PHP_PCRE_REGEX=yes ++ ],[ ++ AC_EGREP_CPP(yes,[ ++#include
++#if defined(HAVE_PCRE) && !defined(COMPILE_DL_PCRE) ++yes ++#endif ++ ],[ ++ PHP_PCRE_REGEX=pecl ++ PHP_ADD_INCLUDE($PHP_PCRE_DIR/include) ++ ],[ ++ PHP_PCRE_REGEX=no ++ ]) ++ ]) + + dnl Check for c-client version 2004 + AC_EGREP_HEADER(mail_fetch_overview_sequence, $IMAP_INC_DIR/mail.h, [ -- cgit v1.2.3