Skip to content

Commit 8e89f92

Browse files
Fix library name for MaxMind DB Reader PHP extension
1 parent ee572d7 commit 8e89f92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/config.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG_WITH("maxminddb", "Enable MaxMind DB Reader extension support", "no");
22

33
if (PHP_MAXMINDDB == "yes") {
44
if (CHECK_HEADER_ADD_INCLUDE("maxminddb.h", "CFLAGS_MAXMINDDB", PHP_MAXMINDDB + ";" + PHP_PHP_BUILD + "\\include\\maxminddb") &&
5-
CHECK_LIB("libmaxminddb.lib", "maxminddb", PHP_MAXMINDDB)) {
5+
CHECK_LIB("maxminddb.lib", "maxminddb", PHP_MAXMINDDB)) {
66
EXTENSION("maxminddb", "maxminddb.c");
77
} else {
88
WARNING('Could not find maxminddb.h or libmaxminddb.lib; skipping');

0 commit comments

Comments
 (0)