From 40fbabf0fe3486a8e91f3caf2fbb40e341ba69aa Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 17 Oct 2024 17:11:53 +0900 Subject: Remove check for obsolete sqlite support. Check only for aqlite3 Signed-off-by: Michele Calgaro (cherry picked from commit d572a3f536f3cb283303c161095c5e83d4dc27da) --- src/backends/recipedb.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/backends/recipedb.cpp') diff --git a/src/backends/recipedb.cpp b/src/backends/recipedb.cpp index fbc0ff4..ab540b7 100644 --- a/src/backends/recipedb.cpp +++ b/src/backends/recipedb.cpp @@ -46,7 +46,7 @@ #include "MySQL/mysqlrecipedb.h" #endif -#if HAVE_SQLITE || HAVE_SQLITE3 +#if HAVE_SQLITE3 #include "SQLite/literecipedb.h" #endif @@ -119,18 +119,18 @@ RecipeDB* RecipeDB::createDatabase( const TQString &dbType, const TQString &host if ( 0 ) ; //we need some condition here -#if HAVE_SQLITE || HAVE_SQLITE3 +#if HAVE_SQLITE3 else if ( dbType == "SQLite" ) { database = new LiteRecipeDB( file ); } -#endif //HAVE_SQLITE || HAVE_SQLITE3 - #if HAVE_MYSQL +#endif // HAVE_SQLITE3 +#if HAVE_MYSQL else if ( dbType == "MySQL" ) { database = new MySQLRecipeDB( host, user, pass, dbname, port ); } #endif //HAVE_MYSQL - #if HAVE_POSTGRESQL +#if HAVE_POSTGRESQL else if ( dbType == "PostgreSQL" ) { database = new PSqlRecipeDB( host, user, pass, dbname, port ); } -- cgit v1.2.3