diff options
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/sticker/StickerDatabase.cxx | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 6c525062a..7c38db9b3 100644 --- a/configure.ac +++ b/configure.ac @@ -690,7 +690,7 @@ dnl --------------------------------------------------------------------------- dnl ---------------------------------- sqlite --------------------------------- -MPD_ENABLE_AUTO_PKG(sqlite, SQLITE, [sqlite3], +MPD_ENABLE_AUTO_PKG(sqlite, SQLITE, [sqlite3 >= 3.7.3], [SQLite database support], [sqlite not found], [$database_auto]) diff --git a/src/sticker/StickerDatabase.cxx b/src/sticker/StickerDatabase.cxx index ec1c478a7..226579969 100644 --- a/src/sticker/StickerDatabase.cxx +++ b/src/sticker/StickerDatabase.cxx @@ -32,10 +32,6 @@ #include <sqlite3.h> #include <assert.h> -#if SQLITE_VERSION_NUMBER < 3003009 -#define sqlite3_prepare_v2 sqlite3_prepare -#endif - struct sticker { std::map<std::string, std::string> table; }; |