summaryrefslogtreecommitdiff
path: root/mail/php73-imap/files/patch-config.m4
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2022-01-25 18:06:01 -0600
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2022-01-25 18:20:01 -0600
commitcc378fb60bd6ff39ac810093b5fc83cf330c1d92 (patch)
tree7bafa7aa53795dec5c06d1af55dffa895e6ef8ce /mail/php73-imap/files/patch-config.m4
parentgraphics/R-cran-DiagrammeR: Update to 1.0.8 (diff)
lang/php73: Remove port
- EOL reached on 2021-12-06 https://www.php.net/eol.php PR: 260624 Approved by: tz (private email) ale portmgr (blanket) Sponsored by: Bounce Experts
Diffstat (limited to 'mail/php73-imap/files/patch-config.m4')
-rw-r--r--mail/php73-imap/files/patch-config.m442
1 files changed, 0 insertions, 42 deletions
diff --git a/mail/php73-imap/files/patch-config.m4 b/mail/php73-imap/files/patch-config.m4
deleted file mode 100644
index ab7120b2c8c8..000000000000
--- a/mail/php73-imap/files/patch-config.m4
+++ /dev/null
@@ -1,42 +0,0 @@
---- config.m4.orig 2010-02-07 14:06:54.000000000 +0100
-+++ config.m4 2010-03-08 11:56:24.000000000 +0100
-@@ -103,6 +103,8 @@
- PHP_ARG_WITH(imap-ssl,for IMAP SSL support,
- [ --with-imap-ssl[=DIR] IMAP: Include SSL support. DIR is the OpenSSL install prefix], no, no)
-
-+PHP_ARG_WITH(pcre-dir, pcre install prefix,
-+[ --with-pcre-dir IMAP: pcre install prefix], no, no)
-
- if test "$PHP_IMAP" != "no"; then
- PHP_SUBST(IMAP_SHARED_LIBADD)
-@@ -119,6 +121,30 @@
- fi
- done
-
-+ dnl This is PECL build, check if bundled PCRE library is used
-+ old_CPPFLAGS=$CPPFLAGS
-+ CPPFLAGS=$INCLUDES
-+ AC_EGREP_CPP(yes,[
-+#include <main/php_config.h>
-+#if defined(HAVE_BUNDLED_PCRE) && !defined(COMPILE_DL_PCRE)
-+yes
-+#endif
-+ ],[
-+ PHP_PCRE_REGEX=yes
-+ ],[
-+ AC_EGREP_CPP(yes,[
-+#include <main/php_config.h>
-+#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, [
- AC_DEFINE(HAVE_IMAP2004,1,[ ])