libs: removed SQLite threadsafe warning

This commit is contained in:
Remy Marquis 2020-05-25 20:52:38 +02:00
parent 113388b231
commit c5d1c33167

View file

@ -88,7 +88,7 @@ endif()
if(WITH_SQLITE_THREADSAFE) if(WITH_SQLITE_THREADSAFE)
add_definitions(-DSQLITE_THREADSAFE=1) add_definitions(-DSQLITE_THREADSAFE=1)
else() else()
message("SQLite3 threadsafe is disabled. WARNING: Use with ET:L only!") message("SQLite3 threadsafe is disabled")
add_definitions(-DSQLITE_THREADSAFE=0) add_definitions(-DSQLITE_THREADSAFE=0)
endif() endif()