storage/local: move to src/storage/plugins/
This commit is contained in:
parent
f6682aae77
commit
c8c3f20840
|
@ -419,7 +419,7 @@ noinst_LIBRARIES += libstorage.a
|
||||||
|
|
||||||
libstorage_a_SOURCES = \
|
libstorage_a_SOURCES = \
|
||||||
src/storage/StorageInterface.cxx src/storage/StorageInterface.hxx \
|
src/storage/StorageInterface.cxx src/storage/StorageInterface.hxx \
|
||||||
src/storage/LocalStorage.cxx src/storage/LocalStorage.hxx \
|
src/storage/plugins/LocalStorage.cxx src/storage/plugins/LocalStorage.hxx \
|
||||||
src/storage/FileInfo.hxx
|
src/storage/FileInfo.hxx
|
||||||
|
|
||||||
STORAGE_LIBS = libstorage.a
|
STORAGE_LIBS = libstorage.a
|
||||||
|
|
|
@ -69,7 +69,7 @@
|
||||||
#include "db/DatabaseGlue.hxx"
|
#include "db/DatabaseGlue.hxx"
|
||||||
#include "db/DatabaseSimple.hxx"
|
#include "db/DatabaseSimple.hxx"
|
||||||
#include "db/plugins/SimpleDatabasePlugin.hxx"
|
#include "db/plugins/SimpleDatabasePlugin.hxx"
|
||||||
#include "storage/LocalStorage.hxx"
|
#include "storage/plugins/LocalStorage.hxx"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_NEIGHBOR_PLUGINS
|
#ifdef ENABLE_NEIGHBOR_PLUGINS
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "LocalStorage.hxx"
|
#include "LocalStorage.hxx"
|
||||||
#include "FileInfo.hxx"
|
#include "storage/FileInfo.hxx"
|
||||||
#include "util/Error.hxx"
|
#include "util/Error.hxx"
|
||||||
#include "fs/FileSystem.hxx"
|
#include "fs/FileSystem.hxx"
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#define MPD_STORAGE_LOCAL_HXX
|
#define MPD_STORAGE_LOCAL_HXX
|
||||||
|
|
||||||
#include "check.h"
|
#include "check.h"
|
||||||
#include "StorageInterface.hxx"
|
#include "storage/StorageInterface.hxx"
|
||||||
#include "fs/AllocatedPath.hxx"
|
#include "fs/AllocatedPath.hxx"
|
||||||
#include "fs/DirectoryReader.hxx"
|
#include "fs/DirectoryReader.hxx"
|
||||||
|
|
Loading…
Reference in New Issue