Skip to content

Commit 1d54097

Browse files
committed
Fix oci8 Oracle Client paths on Windows
This is a copy & paste relict, but we don't fix it for the stable branches, since some may rely on these paths now (unlikely, but still possible).
1 parent 900c94f commit 1d54097

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/oci8/config.w32

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ if (PHP_OCI8_19 != "no") {
164164
oci8_19_inc_paths += oci8_19_dirs[i] + "\\include;";
165165
}
166166

167-
oci8_19_inc_paths += PHP_PHP_BUILD + "\\include\\instantclient_12;"
168-
oci8_19_lib_paths += PHP_PHP_BUILD + "\\lib\\instantclient_12;";
167+
oci8_19_inc_paths += PHP_PHP_BUILD + "\\include\\instantclient_19;"
168+
oci8_19_lib_paths += PHP_PHP_BUILD + "\\lib\\instantclient_19;";
169169

170170
if (CHECK_HEADER_ADD_INCLUDE("oci.h", "CFLAGS_OCI8_19", oci8_19_inc_paths) &&
171171
CHECK_LIB("oci.lib", "oci8_19", oci8_19_lib_paths))

0 commit comments

Comments
 (0)