Skip to content

Commit 4694a66

Browse files
committed
Adhere to standard naming convention of Windows libs for PHP
The memcached library is usually named libmemcached.lib, so we should check for this name, too.
1 parent ca0d939 commit 4694a66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.w32

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ARG_ENABLE('memcached-json', 'whether to enable memcached json serializer suppor
88

99
if (PHP_MEMCACHED == "yes") {
1010

11-
if (!CHECK_LIB("memcached.lib", "memcached", PHP_MEMCACHED)) {
11+
if (!CHECK_LIB("memcached.lib;libmemcached.lib", "memcached", PHP_MEMCACHED)) {
1212
ERROR("memcached: library 'memcached' not found");
1313
}
1414

0 commit comments

Comments
 (0)