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.
This commit is contained in:
Jan-E
2015-09-06 10:15:29 +02:00
committed by michael-grunder
parent 5b26312347
commit b249024ae7

View File

@@ -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);
}