From b249024ae7de8433704f26157c4be3e800a6723b Mon Sep 17 00:00:00 2001 From: Jan-E Date: Sun, 6 Sep 2015 10:15:29 +0200 Subject: [PATCH] Fix config,w32 The 'no' in line 3 is needed to make the extension shared on a snapshot build. The omission at line 25 was really curious. --- config.w32 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.w32 b/config.w32 index 254122c..36844fa 100644 --- a/config.w32 +++ b/config.w32 @@ -1,6 +1,6 @@ // vim: ft=javascript: -ARG_ENABLE("redis", "whether to enable redis support", "yes"); +ARG_ENABLE("redis", "whether to enable redis support", "no"); ARG_ENABLE("redis-session", "whether to enable sessions", "yes"); ARG_ENABLE("redis-igbinary", "whether to enable igbinary serializer support", "no"); @@ -22,7 +22,7 @@ if (PHP_REDIS != "no") { WARNING("redis igbinary support not enabled"); } } - + EXTENSION("redis", sources); }