Skip to content

Commit

Permalink
Fixed load order issue in sqlsrv
Browse files Browse the repository at this point in the history
  • Loading branch information
david-puglielli committed Feb 5, 2019
1 parent d9b6e05 commit 9e49a17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/sqlsrv/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if test "$PHP_SQLSRV" != "no"; then
shared/StringFunctions.cpp \
"
AC_MSG_CHECKING([for SQLSRV headers])
if test -f $srcdir/ext/pdo_sqlsrv/shared/core_sqlsrv.h && test "$PHP_PDO_SQLSRV" != "no"; then
if test -f $srcdir/ext/pdo_sqlsrv/shared/core_sqlsrv.h && test "$PHP_PDO_SQLSRV" != "no" && test "$PHP_PDO_SQLSRV_SHARED" == "no"; then
pdo_sqlsrv_inc_path=$srcdir/ext/pdo_sqlsrv/shared/
shared_src_class=""
elif test -f $srcdir/ext/sqlsrv/shared/core_sqlsrv.h; then
Expand Down

0 comments on commit 9e49a17

Please sign in to comment.