aboutsummaryrefslogtreecommitdiffstats
path: root/src/sticker
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-12-12 20:41:36 +0100
committerMax Kellermann <max@duempel.org>2014-12-12 20:41:36 +0100
commit432ecd1b6a73962f17ac96c8133ced06b26f6a7e (patch)
treedc5bd72347785c43d703ce83613c3555a341b73d /src/sticker
parent7d9aa5b7160fa085b1b1595aa4841f0ea2cbb149 (diff)
downloadmpd-432ecd1b6a73962f17ac96c8133ced06b26f6a7e.tar.gz
mpd-432ecd1b6a73962f17ac96c8133ced06b26f6a7e.tar.xz
mpd-432ecd1b6a73962f17ac96c8133ced06b26f6a7e.zip
sticker/Database: require SQLite 3.7.3
SQLite 3.7.3 is the version shipped in Debian Squeeze (oldstable); should be old enough to be the required version. Drop the compatibility #ifdef.
Diffstat (limited to 'src/sticker')
-rw-r--r--src/sticker/StickerDatabase.cxx4
1 files changed, 0 insertions, 4 deletions
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;
};