Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
432ecd1b
Commit
432ecd1b
authored
Dec 12, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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.
parent
7d9aa5b7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
5 deletions
+1
-5
configure.ac
configure.ac
+1
-1
StickerDatabase.cxx
src/sticker/StickerDatabase.cxx
+0
-4
No files found.
configure.ac
View file @
432ecd1b
...
@@ -690,7 +690,7 @@ dnl ---------------------------------------------------------------------------
...
@@ -690,7 +690,7 @@ dnl ---------------------------------------------------------------------------
dnl ---------------------------------- sqlite ---------------------------------
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],
[SQLite database support], [sqlite not found],
[$database_auto])
[$database_auto])
...
...
src/sticker/StickerDatabase.cxx
View file @
432ecd1b
...
@@ -32,10 +32,6 @@
...
@@ -32,10 +32,6 @@
#include <sqlite3.h>
#include <sqlite3.h>
#include <assert.h>
#include <assert.h>
#if SQLITE_VERSION_NUMBER < 3003009
#define sqlite3_prepare_v2 sqlite3_prepare
#endif
struct
sticker
{
struct
sticker
{
std
::
map
<
std
::
string
,
std
::
string
>
table
;
std
::
map
<
std
::
string
,
std
::
string
>
table
;
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment