summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2016-12-22 05:53:13 +0100
committerKalle Sommer Nielsen <kalle@php.net>2016-12-22 05:53:13 +0100
commita569d003e268dabf3a681f04e58313a13a51e59a (patch)
tree4eb2bb7732936f9164a1f84ded6709902248f303
parentf0f3cb6ab5f6db1221beecc2b0e69085d08ac637 (diff)
downloadphp-git-a569d003e268dabf3a681f04e58313a13a51e59a.tar.gz
Hmm actually it seems to be the other way around, Anatol?
-rw-r--r--ext/odbc/config.w324
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/odbc/config.w32 b/ext/odbc/config.w32
index 703eab6711..9b45e1eb67 100644
--- a/ext/odbc/config.w32
+++ b/ext/odbc/config.w32
@@ -2,7 +2,7 @@
// vim:ft=javascript
ARG_ENABLE("odbc", "ODBC support", "no");
-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");
+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");
if (PHP_ODBC == "yes") {
if (CHECK_LIB("odbc32.lib", "odbc") && CHECK_LIB("odbccp32.lib", "odbc")
@@ -11,7 +11,7 @@ if (PHP_ODBC == "yes") {
EXTENSION("odbc", "php_odbc.c", PHP_ODBC_SHARED, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
AC_DEFINE("HAVE_UODBC", 1, "ODBC support");
if ("no" == PHP_ODBCVER) {
- AC_DEFINE("ODBCVER", "0x0300", "The highest supported ODBC version", false);
+ AC_DEFINE("ODBCVER", "0x0350", "The highest supported ODBC version", false);
} else if ("0" != PHP_ODBCVER) {
AC_DEFINE("ODBCVER", PHP_ODBCVER, "The highest supported ODBC version", false);
}