summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemi Collet <remi@php.net>2015-03-08 07:34:51 +0100
committerJulien Pauli <jpauli@php.net>2015-03-09 10:26:10 +0100
commit10d61a3a3e3087603dfbf45febaca2894a1f2344 (patch)
treedd4015a8f56a7b393685c0796071f05967d03cc6
parente14401decad6794bc714c40877014546b9c99fd7 (diff)
downloadphp-git-10d61a3a3e3087603dfbf45febaca2894a1f2344.tar.gz
Fix odbc build as shared
Broken since a41aa46759d20e23af92df00b917ca66c6102412
-rw-r--r--ext/odbc/config.m49
1 files changed, 5 insertions, 4 deletions
diff --git a/ext/odbc/config.m4 b/ext/odbc/config.m4
index f79c4616db..9555efd39d 100644
--- a/ext/odbc/config.m4
+++ b/ext/odbc/config.m4
@@ -99,6 +99,11 @@ AC_DEFUN([PHP_ODBC_FIND_EMPRESS_BCS_LIBS],[
dnl
dnl configure options
dnl
+
+PHP_ARG_WITH(odbcver,,
+[ --with-odbcver[=HEX] 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 test -z "$ODBC_TYPE"; then
PHP_ARG_WITH(adabas,,
[ --with-adabas[=DIR] Include Adabas D support [/usr/local]])
@@ -490,10 +495,6 @@ PHP_ARG_WITH(dbmaker,,
fi
fi
-PHP_ARG_WITH(odbcver,,
-[ --with-odbcver[=HEX] 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 test "no" != "$PHP_ODBCVER"; then
if test "$PHP_ODBCVER" != "0"; then
AC_DEFINE_UNQUOTED(ODBCVER, $PHP_ODBCVER, [ The highest supported ODBC version ])