1
0
Fork 0
mirror of https://github.com/processone/ejabberd synced 2025-10-03 01:39:35 +02:00

Fix support for MSSQL testing

This commit is contained in:
Badlop 2022-01-26 16:58:01 +01:00
parent adbccbe852
commit 3b30d5b0ed
3 changed files with 4 additions and 2 deletions

View file

@ -146,7 +146,7 @@ AC_ARG_ENABLE(mssql,
yes) db_type=mssql; mssql=true ;;
no) db_type=generic; mssql=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-mssql) ;;
esac],[db_type=generic])
esac],[if test "x$mssql" = "x"; then db_type=generic; mysql=false; fi])
AC_ARG_ENABLE(mysql,
[AS_HELP_STRING([--enable-mysql],[enable MySQL support (default: no)])],
@ -285,6 +285,7 @@ AC_SUBST(new_sql_schema)
AC_SUBST(full_xml)
AC_SUBST(db_type)
AC_SUBST(odbc)
AC_SUBST(mssql)
AC_SUBST(mysql)
AC_SUBST(pgsql)
AC_SUBST(sqlite)