From c5d1c33167492afe5dc896e8da1486e330809002 Mon Sep 17 00:00:00 2001 From: Remy Marquis Date: Mon, 25 May 2020 20:52:38 +0200 Subject: [PATCH] libs: removed SQLite threadsafe warning --- sqlite3/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite3/CMakeLists.txt b/sqlite3/CMakeLists.txt index c3561726..11292ab4 100644 --- a/sqlite3/CMakeLists.txt +++ b/sqlite3/CMakeLists.txt @@ -88,7 +88,7 @@ endif() if(WITH_SQLITE_THREADSAFE) add_definitions(-DSQLITE_THREADSAFE=1) else() - message("SQLite3 threadsafe is disabled. WARNING: Use with ET:L only!") + message("SQLite3 threadsafe is disabled") add_definitions(-DSQLITE_THREADSAFE=0) endif()