mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
Remove external dependency on sqlite3 for macos
On macos, erlang-sqlite3 is built using amalgamated sqlite3 library, there is no external sqlite3 dependency required
This commit is contained in:
parent
bd08f408ca
commit
1f60f5d8af
19
configure.ac
19
configure.ac
@ -270,12 +270,19 @@ AC_ARG_ENABLE(zlib,
|
|||||||
*) AC_MSG_ERROR(bad value ${enableval} for --enable-zlib) ;;
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-zlib) ;;
|
||||||
esac],[if test "x$zlib" = "x"; then zlib=true; fi])
|
esac],[if test "x$zlib" = "x"; then zlib=true; fi])
|
||||||
|
|
||||||
if test "$sqlite" = "true"; then
|
case "`uname`" in
|
||||||
AX_LIB_SQLITE3([3.6.19])
|
"Darwin")
|
||||||
if test "x$SQLITE3_VERSION" = "x"; then
|
# Darwin (macos) erlang-sqlite is built using amalgamated lib, so no external dependency
|
||||||
AC_MSG_ERROR(SQLite3 library >= 3.6.19 was not found)
|
;;
|
||||||
fi
|
*)
|
||||||
fi
|
if test "$sqlite" = "true"; then
|
||||||
|
AX_LIB_SQLITE3([3.6.19])
|
||||||
|
if test "x$SQLITE3_VERSION" = "x"; then
|
||||||
|
AC_MSG_ERROR(SQLite3 library >= 3.6.19 was not found)
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
enabled_backends=""
|
enabled_backends=""
|
||||||
for backend in odbc mysql pgsql sqlite redis mssql; do
|
for backend in odbc mysql pgsql sqlite redis mssql; do
|
||||||
|
Loading…
Reference in New Issue
Block a user