Require sqlite as a system dependency

This purges sqlite from our tree and requires it to be present on the
system for building and running FreeSWITCH.

FS-353
This commit is contained in:
Travis Cross
2014-03-20 22:05:23 +00:00
parent 8574988c3a
commit cde20f6fe6
424 changed files with 13 additions and 210479 deletions

View File

@@ -49,6 +49,7 @@
#endif
#endif
#include <errno.h>
#include <sqlite3.h>
SWITCH_DECLARE_DATA switch_directories SWITCH_GLOBAL_dirs = { 0 };
@@ -1608,6 +1609,10 @@ SWITCH_DECLARE(switch_status_t) switch_core_init(switch_core_flag_t flags, switc
if (!runtime.cpu_count) runtime.cpu_count = 1;
if (sqlite3_initialize() != SQLITE_OK) {
*err = "FATAL ERROR! Could not initialize SQLite\n";
return SWITCH_STATUS_MEMERR;
}
/* INIT APR and Create the pool context */
if (apr_initialize() != SWITCH_STATUS_SUCCESS) {
@@ -2680,6 +2685,8 @@ SWITCH_DECLARE(switch_status_t) switch_core_destroy(void)
apr_terminate();
}
sqlite3_shutdown();
return switch_test_flag((&runtime), SCF_RESTART) ? SWITCH_STATUS_RESTART : SWITCH_STATUS_SUCCESS;
}