Skip to content

Commit a569d00

Browse files
committed
Hmm actually it seems to be the other way around, Anatol?
1 parent f0f3cb6 commit a569d00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/odbc/config.w32

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// vim:ft=javascript
33

44
ARG_ENABLE("odbc", "ODBC support", "no");
5-
ARG_WITH("odbcver", "Force support for the passed ODBC version. A hex number is expected, default 0x0350. Use the special value of 0 to prevent an explicit ODBCVER to be defined.", "0x0300");
5+
ARG_WITH("odbcver", "Force support for the passed ODBC version. A hex number is expected, default 0x0350. Use the special value of 0 to prevent an explicit ODBCVER to be defined.", "0x0350");
66

77
if (PHP_ODBC == "yes") {
88
if (CHECK_LIB("odbc32.lib", "odbc") && CHECK_LIB("odbccp32.lib", "odbc")
@@ -11,7 +11,7 @@ if (PHP_ODBC == "yes") {
1111
EXTENSION("odbc", "php_odbc.c", PHP_ODBC_SHARED, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
1212
AC_DEFINE("HAVE_UODBC", 1, "ODBC support");
1313
if ("no" == PHP_ODBCVER) {
14-
AC_DEFINE("ODBCVER", "0x0300", "The highest supported ODBC version", false);
14+
AC_DEFINE("ODBCVER", "0x0350", "The highest supported ODBC version", false);
1515
} else if ("0" != PHP_ODBCVER) {
1616
AC_DEFINE("ODBCVER", PHP_ODBCVER, "The highest supported ODBC version", false);
1717
}

0 commit comments

Comments
 (0)