aboutsummaryrefslogtreecommitdiffstats
path: root/community/php7/allow-build-recode-and-imap-together.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-04-29 16:06:34 +0200
committerJakub Jirutka <jakub@jirutka.cz>2017-05-02 01:04:51 +0200
commite0390b10a7758e4b6de38035b6867bd9cfe782f4 (patch)
treeb37b4dfc639d4f09a6fb707b63e1b8f20caf8f10 /community/php7/allow-build-recode-and-imap-together.patch
parent687a2f8a9603f64d7b8ee5b0dd7b5b7f2cdc8586 (diff)
community/php7: build recode extension as shared
Diffstat (limited to 'community/php7/allow-build-recode-and-imap-together.patch')
-rw-r--r--community/php7/allow-build-recode-and-imap-together.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/community/php7/allow-build-recode-and-imap-together.patch b/community/php7/allow-build-recode-and-imap-together.patch
new file mode 100644
index 00000000000..555092f4524
--- /dev/null
+++ b/community/php7/allow-build-recode-and-imap-together.patch
@@ -0,0 +1,20 @@
+Extensions recode and imap can't be loaded together, but they can be build
+together, and that's what we want.
+
+Source: https://src.fedoraproject.org/cgit/rpms/php.git/tree/php-5.3.0-recode.patch?h=f26
+--- a/ext/recode/config9.m4
++++ b/ext/recode/config9.m4
+@@ -4,13 +4,6 @@ dnl
+
+ dnl Check for extensions with which Recode can not work
+ if test "$PHP_RECODE" != "no"; then
+- test "$PHP_IMAP" != "no" && recode_conflict="$recode_conflict imap"
+-
+- if test -n "$MYSQL_LIBNAME"; then
+- PHP_CHECK_LIBRARY($MYSQL_LIBNAME, hash_insert, [
+- recode_conflict="$recode_conflict mysql"
+- ])
+- fi
+
+ if test -n "$recode_conflict"; then
+ AC_MSG_ERROR([recode extension can not be configured together with:$recode_conflict])