From 49b12b0b317952b5c98a89ddc5e8f8d6d9c785f0 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sun, 10 Dec 2023 16:53:33 +0100 Subject: [PATCH] Sync ODBC version When passing `--without-odbcver` or `--with-odbcver=no` to configure, the ODBC version has been designed to be highest supported version (0x0350). This syncs the behavior with the Windows build system. --- ext/odbc/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/odbc/config.m4 b/ext/odbc/config.m4 index b2a3ddcc63b34..dd81e3f663570 100644 --- a/ext/odbc/config.m4 +++ b/ext/odbc/config.m4 @@ -439,7 +439,7 @@ if test "no" != "$PHP_ODBCVER"; then AC_DEFINE_UNQUOTED(ODBCVER, $PHP_ODBCVER, [ The highest supported ODBC version ]) fi else - AC_DEFINE(ODBCVER, 0x0300, [ The highest supported ODBC version ]) + AC_DEFINE(ODBCVER, 0x0350, [ The highest supported ODBC version ]) fi dnl Extension setup