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
97391fd4
Commit
97391fd4
authored
Jan 24, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DespotifyUtils, Expat: move to lib/
parent
68eda787
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
18 additions
and
17 deletions
+18
-17
Makefile.am
Makefile.am
+10
-9
Device.cxx
src/db/plugins/upnp/Device.cxx
+1
-1
Directory.cxx
src/db/plugins/upnp/Directory.cxx
+1
-1
DespotifyInputPlugin.cxx
src/input/plugins/DespotifyInputPlugin.cxx
+1
-1
DespotifyUtils.cxx
src/lib/despotify/DespotifyUtils.cxx
+0
-0
DespotifyUtils.hxx
src/lib/despotify/DespotifyUtils.hxx
+0
-0
ExpatParser.cxx
src/lib/expat/ExpatParser.cxx
+1
-1
ExpatParser.hxx
src/lib/expat/ExpatParser.hxx
+0
-0
AsxPlaylistPlugin.cxx
src/playlist/plugins/AsxPlaylistPlugin.cxx
+1
-1
DespotifyPlaylistPlugin.cxx
src/playlist/plugins/DespotifyPlaylistPlugin.cxx
+1
-1
RssPlaylistPlugin.cxx
src/playlist/plugins/RssPlaylistPlugin.cxx
+1
-1
XspfPlaylistPlugin.cxx
src/playlist/plugins/XspfPlaylistPlugin.cxx
+1
-1
No files found.
Makefile.am
View file @
97391fd4
...
...
@@ -230,7 +230,8 @@ endif
if
ENABLE_DESPOTIFY
src_mpd_SOURCES
+=
\
src/DespotifyUtils.cxx src/DespotifyUtils.hxx
src/lib/despotify/DespotifyUtils.cxx
\
src/lib/despotify/DespotifyUtils.hxx
endif
if
ENABLE_INOTIFY
...
...
@@ -1092,7 +1093,7 @@ endif
if
HAVE_EXPAT
libplaylist_plugins_a_SOURCES
+=
\
src/
Expat.cxx src/Expat
.hxx
\
src/
lib/expat/ExpatParser.cxx src/lib/expat/ExpatParser
.hxx
\
src/playlist/plugins/XspfPlaylistPlugin.cxx
\
src/playlist/plugins/XspfPlaylistPlugin.hxx
\
src/playlist/plugins/AsxPlaylistPlugin.cxx
\
...
...
@@ -1256,7 +1257,7 @@ test_DumpDatabase_SOURCES = test/DumpDatabase.cxx \
src/SongFilter.cxx
if
HAVE_LIBUPNP
test_DumpDatabase_SOURCES
+=
src/
Expat
.cxx
test_DumpDatabase_SOURCES
+=
src/
lib/expat/ExpatParser
.cxx
endif
test_run_input_LDADD
=
\
...
...
@@ -1295,7 +1296,7 @@ test_visit_archive_SOURCES = test/visit_archive.cxx \
src/input/InputStream.cxx
if
ENABLE_DESPOTIFY
test_visit_archive_SOURCES
+=
src/DespotifyUtils.cxx
test_visit_archive_SOURCES
+=
src/
lib/despotify/
DespotifyUtils.cxx
endif
endif
...
...
@@ -1422,11 +1423,11 @@ test_run_filter_SOURCES = test/run_filter.cxx \
src/AudioCompress/compress.c
if
ENABLE_DESPOTIFY
test_read_tags_SOURCES
+=
src/DespotifyUtils.cxx
test_run_input_SOURCES
+=
src/DespotifyUtils.cxx
test_dump_text_file_SOURCES
+=
src/DespotifyUtils.cxx
test_dump_playlist_SOURCES
+=
src/DespotifyUtils.cxx
test_run_decoder_SOURCES
+=
src/DespotifyUtils.cxx
test_read_tags_SOURCES
+=
src/
lib/despotify/
DespotifyUtils.cxx
test_run_input_SOURCES
+=
src/
lib/despotify/
DespotifyUtils.cxx
test_dump_text_file_SOURCES
+=
src/
lib/despotify/
DespotifyUtils.cxx
test_dump_playlist_SOURCES
+=
src/
lib/despotify/
DespotifyUtils.cxx
test_run_decoder_SOURCES
+=
src/
lib/despotify/
DespotifyUtils.cxx
endif
if
ENABLE_ENCODER
...
...
src/db/plugins/upnp/Device.cxx
View file @
97391fd4
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "Device.hxx"
#include "Util.hxx"
#include "
Expat
.hxx"
#include "
lib/expat/ExpatParser
.hxx"
#include "util/Error.hxx"
#include <stdlib.h>
...
...
src/db/plugins/upnp/Directory.cxx
View file @
97391fd4
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "Directory.hxx"
#include "Util.hxx"
#include "
Expat
.hxx"
#include "
lib/expat/ExpatParser
.hxx"
#include "Tags.hxx"
#include "tag/TagBuilder.hxx"
#include "tag/TagTable.hxx"
...
...
src/input/plugins/DespotifyInputPlugin.cxx
View file @
97391fd4
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "DespotifyInputPlugin.hxx"
#include "DespotifyUtils.hxx"
#include "
lib/despotify/
DespotifyUtils.hxx"
#include "../InputStream.hxx"
#include "../InputPlugin.hxx"
#include "tag/Tag.hxx"
...
...
src/DespotifyUtils.cxx
→
src/
lib/despotify/
DespotifyUtils.cxx
View file @
97391fd4
File moved
src/DespotifyUtils.hxx
→
src/
lib/despotify/
DespotifyUtils.hxx
View file @
97391fd4
File moved
src/
Expat
.cxx
→
src/
lib/expat/ExpatParser
.cxx
View file @
97391fd4
...
...
@@ -18,7 +18,7 @@
*/
#include "config.h"
#include "Expat.hxx"
#include "Expat
Parser
.hxx"
#include "input/InputStream.hxx"
#include "util/ASCII.hxx"
#include "util/Error.hxx"
...
...
src/
Expat
.hxx
→
src/
lib/expat/ExpatParser
.hxx
View file @
97391fd4
File moved
src/playlist/plugins/AsxPlaylistPlugin.cxx
View file @
97391fd4
...
...
@@ -24,7 +24,7 @@
#include "tag/TagBuilder.hxx"
#include "util/ASCII.hxx"
#include "util/Error.hxx"
#include "
Expat
.hxx"
#include "
lib/expat/ExpatParser
.hxx"
#include "Log.hxx"
/**
...
...
src/playlist/plugins/DespotifyPlaylistPlugin.cxx
View file @
97391fd4
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "DespotifyPlaylistPlugin.hxx"
#include "DespotifyUtils.hxx"
#include "
lib/despotify/
DespotifyUtils.hxx"
#include "../PlaylistPlugin.hxx"
#include "../MemorySongEnumerator.hxx"
#include "tag/Tag.hxx"
...
...
src/playlist/plugins/RssPlaylistPlugin.cxx
View file @
97391fd4
...
...
@@ -24,7 +24,7 @@
#include "tag/TagBuilder.hxx"
#include "util/ASCII.hxx"
#include "util/Error.hxx"
#include "
Expat
.hxx"
#include "
lib/expat/ExpatParser
.hxx"
#include "Log.hxx"
/**
...
...
src/playlist/plugins/XspfPlaylistPlugin.cxx
View file @
97391fd4
...
...
@@ -26,7 +26,7 @@
#include "tag/TagBuilder.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "
Expat
.hxx"
#include "
lib/expat/ExpatParser
.hxx"
#include "Log.hxx"
#include <string.h>
...
...
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