8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9a16b5 commit 3aa3c2dCopy full SHA for 3aa3c2d
config.w32
@@ -2,9 +2,15 @@
2
3
ARG_ENABLE("redis", "whether to enable redis support", "yes");
4
ARG_ENABLE("redis-session", "whether to enable sessions", "yes");
5
+ARG_ENABLE("redis-igbinary", "whether to enable igbinary support", "no");
6
7
if (PHP_REDIS != "no") {
- var sources = "redis.c library.c igbinary\\igbinary.c igbinary\\hash_si.c igbinary\\hash_function.c";
8
+ var sources = "redis.c library.c"
9
+
10
+ if (PHP_REDIS_IGBINARY != "no") {
11
+ sources += " igbinary\\igbinary.c igbinary\\hash_si.c igbinary\\hash_function.c";
12
+ }
13
14
if (PHP_REDIS_SESSION != "no") {
15
AC_DEFINE('PHP_SESSION', 1);
16
sources += " redis_session.c";
0 commit comments