View | Details | Raw Unified | Return to bug 247717 | Differences between
and this patch

Collapse All | Expand All

(-)b/databases/pecl-redis/Makefile (+1 lines)
Lines 2-7 Link Here
2
PORTNAME=      redis
2
PORTNAME=      redis
3
PORTVERSION=   5.3.0
3
PORTVERSION=   5.3.0
4
PORTREVISION=  1
4
CATEGORIES=    databases
5
CATEGORIES=    databases
5
MAINTAINER=    daniel@blodan.se
6
MAINTAINER=    daniel@blodan.se
(-)b/databases/pecl-redis/files/patch-redis.c (+17 lines)
Added Link Here
1
fix #1796 missing include #1800
2
3
Include ext/hash/php_hash.h that would otherwise have been
4
not included, causing runtime error:
5
6
Undefined symbol "php_hash_bin2hex"
7
8
--- redis.c.orig       2020-07-02 14:54:24 UTC
9
+++ redis.c
10
@@ -29,6 +29,7 @@
11
 #include "redis_sentinel.h"
12
 #include <zend_exceptions.h>
13
 #include <ext/standard/info.h>
14
+#include <ext/hash/php_hash.h>
15
16
 #ifdef PHP_SESSION
17
 #include <ext/session/php_session.h>

Return to bug 247717