diff options
| author | Anatol Belski <ab@php.net> | 2015-02-06 20:00:26 +0100 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2015-02-06 20:00:26 +0100 |
| commit | 47af2381ebc487949f30888c6673b40511d1b2b3 (patch) | |
| tree | 5a0634f433ef24c4bacf3cfab0de3804034084bb | |
| parent | 0f9b686eb2e6b27158bf4bb7384fb006a924cfbd (diff) | |
| parent | 464667153d7ca35ac9ffecdc4891f8a9469aebcb (diff) | |
| download | php-git-47af2381ebc487949f30888c6673b40511d1b2b3.tar.gz | |
Merge branch 'PHP-5.6'
* PHP-5.6:
fix setting default ODBCVER value in config.w32
| -rw-r--r-- | ext/odbc/config.w32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/odbc/config.w32 b/ext/odbc/config.w32 index 70a541f83b..9e969852c2 100644 --- a/ext/odbc/config.w32 +++ b/ext/odbc/config.w32 @@ -2,7 +2,7 @@ // vim:ft=javascript ARG_ENABLE("odbc", "ODBC support", "yes"); -ARG_WITH("odbcver", "Force support for the passed ODBC version. A hex number is expected, default 0x0300. Use the special value of 0 to prevent an explicit ODBCVER to be defined."); +ARG_WITH("odbcver", "Force support for the passed ODBC version. A hex number is expected, default 0x0300. Use the special value of 0 to prevent an explicit ODBCVER to be defined.", "0x0300"); if (PHP_ODBC == "yes") { if (CHECK_LIB("odbc32.lib", "odbc") && CHECK_LIB("odbccp32.lib", "odbc") |
