diff --git a/Makefile b/Makefile index f9ef3b5a7..4b8fb4051 100644 --- a/Makefile +++ b/Makefile @@ -175,7 +175,8 @@ MODULES += \ src/emucore \ src/emucore/tia \ src/emucore/tia/frame-manager \ - src/common/repository/sqlite + src/common/repository/sqlite \ + src/sqlite ###################################################################### # The build rules follow - normally you should have no need to diff --git a/configure b/configure index 2ba2ef7e0..df9105403 100755 --- a/configure +++ b/configure @@ -22,7 +22,6 @@ _build_joystick=yes _build_cheats=yes _build_png=yes _build_zip=yes -_build_sqlite=no _build_static=no _build_profile=no _build_debug=no @@ -206,7 +205,6 @@ Optional Features: --disable-png --enable-zip enable/disable ZIP file support [enabled] --disable-zip - --sqlite-builtin always use builtin version of sqlite --enable-windowed enable/disable windowed rendering modes [enabled] --disable-windowed --enable-shared build shared binary [enabled] @@ -221,7 +219,6 @@ Optional Libraries: --with-sdl-prefix=DIR Prefix where the sdl2-config script is installed (optional) --with-libpng-prefix=DIR Prefix where libpng is installed (optional) --with-zlib-prefix=DIR Prefix where zlib is installed (optional) - --with-sqlite-prefix=DIR PREFIX where sqlite is installed (optional) Some influential environment variables: LDFLAGS linker flags, e.g. -L if you have libraries in a @@ -252,7 +249,6 @@ for ac_option in $@; do --disable-png) _build_png=no ;; --enable-zip) _build_zip=yes ;; --disable-zip) _build_zip=no ;; - --sqlite-builtin) _sqlite_builtin=yes ;; --enable-windowed) _build_windowed=yes ;; --disable-windowed) _build_windowed=no ;; --enable-shared) _build_static=no ;; @@ -278,11 +274,6 @@ for ac_option in $@; do ZLIB_CFLAGS="-I$_prefix/include" ZLIB_LIBS="-L$_prefix/lib" ;; - --with-sqlite-prefix=*) - _prefix=`echo $ac_option | cut -d '=' -f 2` - SQLITE_CFLAGS="-I$_prefix/include" - SQLITE_LIBS="-L$_prefix/lib" - ;; --host=*) _host=`echo $ac_option | cut -d '=' -f 2` ;; @@ -664,25 +655,6 @@ else _build_png=no fi -# -# Check for SQLite -# -echocheck "SQLite" -_sqlite=no -if test "$_sqlite_builtin" != yes ; then - cat > $TMPC << EOF -#include -#include -int main(void) { printf("%s\n", SQLITE_VERSION); } -EOF - cc_check $LDFLAGS $CXXFLAGS $SQLITE_CFLAGS $SQLITE_LIBS -lsqlite3 && _sqlite=yes -fi -if test "$_sqlite" = yes ; then - echo "$_sqlite" -else - echo "builtin" -fi - # # figure out installation directories # @@ -809,7 +781,7 @@ SQLITE_REPO="$SRC/common/repository/sqlite" SQLITE_LIB="$SRC/sqlite" JSON="$SRC/json" -INCLUDES="-I$CORE -I$COMMON -I$TV -I$TIA -I$TIA_FRAME_MANAGER -I$JSON -I$SQLITE_REPO" +INCLUDES="-I$CORE -I$COMMON -I$TV -I$TIA -I$TIA_FRAME_MANAGER -I$JSON -I$SQLITE_REPO -I$SQLITE_LIB" INCLUDES="$INCLUDES `$_sdlconfig --cflags`" if test "$_build_static" = yes ; then @@ -893,13 +865,6 @@ if test "$_build_png" = yes ; then fi fi -if test "$_sqlite" = yes; then - LIBS="$LIBS -lsqlite3" -else - MODULES="$MODULES $SQLITE_LIB" - INCLUDES="$INCLUDES -I$SQLITE_LIB" -fi - if test "$_build_zip" = yes ; then DEFINES="$DEFINES -DZIP_SUPPORT" if test "$_zlib" = yes ; then diff --git a/src/common/repository/sqlite/SqliteDatabase.cxx b/src/common/repository/sqlite/SqliteDatabase.cxx index 8c96b70d7..0e405d3ae 100644 --- a/src/common/repository/sqlite/SqliteDatabase.cxx +++ b/src/common/repository/sqlite/SqliteDatabase.cxx @@ -69,7 +69,6 @@ void SqliteDatabase::initialize() } exec("PRAGMA journal_mode=WAL"); - exec("PRAGMA synchronous=1"); switch (sqlite3_wal_checkpoint_v2(myHandle, nullptr, SQLITE_CHECKPOINT_TRUNCATE, nullptr, nullptr)) { case SQLITE_OK: diff --git a/src/common/repository/sqlite/SqliteStatement.cxx b/src/common/repository/sqlite/SqliteStatement.cxx index ea6ae1dc9..d3f93d1c4 100644 --- a/src/common/repository/sqlite/SqliteStatement.cxx +++ b/src/common/repository/sqlite/SqliteStatement.cxx @@ -17,6 +17,10 @@ #include "SqliteStatement.hxx" #include "SqliteError.hxx" +#ifdef __clang__ +#pragma clang diagnostic ignored "-Wold-style-cast" +#endif + // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SqliteStatement::SqliteStatement(sqlite3* handle, const string& sql) : myHandle{handle} diff --git a/src/sqlite/sqlite3.c b/src/sqlite/sqlite3.c index ee1a97b4a..ea7909b22 100644 --- a/src/sqlite/sqlite3.c +++ b/src/sqlite/sqlite3.c @@ -15,11 +15,7 @@ // this file, and for a DISCLAIMER OF ALL WARRANTIES. //============================================================================ -#ifndef SQLITE_LIB_CXX -#define SQLITE_LIB_CXX - -// Linux and libretro doesn't build unless this is enabled -#define SQLITE_OMIT_LOAD_EXTENSION 1 +#include "sqlite_options.h" /* * We can't control the quality of code from outside projects, so for now @@ -33,5 +29,3 @@ #else #include "source/sqlite3.c" #endif - -#endif // SQLITE_LIB_CXX diff --git a/src/sqlite/sqlite3.h b/src/sqlite/sqlite3.h index fd7c72578..dc7061c97 100644 --- a/src/sqlite/sqlite3.h +++ b/src/sqlite/sqlite3.h @@ -18,6 +18,8 @@ #ifndef SQLITE_LIB_HXX #define SQLITE_LIB_HXX +#include "sqlite_options.h" + /* * We can't control the quality of code from outside projects, so for now * just disable warnings for it. diff --git a/src/sqlite/sqlite_options.h b/src/sqlite/sqlite_options.h new file mode 100644 index 000000000..093bd02c5 --- /dev/null +++ b/src/sqlite/sqlite_options.h @@ -0,0 +1,9 @@ +// https://www.sqlite.org/compile.html + +#define SQLITE_DQS 0 +#define SQLITE_DEFAULT_MEMSTATUS 0 +#define SQLITE_DEFAULT_WAL_SYNCHRONOUS 1 +#define SQLITE_USE_ALLOCA 1 +#define SQLITE_OMIT_LOAD_EXTENSION 1 +#define SQLITE_OMIT_DEPRECATED 1 +#define SQLITE_OMIT_DECLTYPE 1