Skip to content

Commit c85d902

Browse files
authored
Fix --disable-memcached-session by ifdef-ing session INI handler callbacks (#420)
Resolves #396
1 parent 3529243 commit c85d902

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

php_memcached.c

+2
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@ static PHP_INI_MH(OnUpdateSerializer)
302302
return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
303303
}
304304

305+
#ifdef HAVE_MEMCACHED_SESSION
305306
static
306307
PHP_INI_MH(OnUpdateDeprecatedLockValue)
307308
{
@@ -342,6 +343,7 @@ PHP_INI_MH(OnUpdateConsistentHash)
342343
}
343344
return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
344345
}
346+
#endif // HAVE_MEMCACHED_SESSION
345347

346348
#define MEMC_INI_ENTRY(key, default_value, update_fn, gkey) \
347349
STD_PHP_INI_ENTRY("memcached."key, default_value, PHP_INI_ALL, update_fn, memc.gkey, zend_php_memcached_globals, php_memcached_globals)

0 commit comments

Comments
 (0)