diff options
author | Max Kellermann <max@duempel.org> | 2014-02-08 14:03:25 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-08 14:24:47 +0100 |
commit | b3663b5da2ebcd87f0b1cb498ddd9ea7aff6eeb5 (patch) | |
tree | cf0caf1f038c49575d1942033ede3f812f994c50 /src/storage/Registry.cxx | |
parent | d761d8b168bb245ab382b93142a8f9595bbb6404 (diff) | |
download | mpd-b3663b5da2ebcd87f0b1cb498ddd9ea7aff6eeb5.tar.gz mpd-b3663b5da2ebcd87f0b1cb498ddd9ea7aff6eeb5.tar.xz mpd-b3663b5da2ebcd87f0b1cb498ddd9ea7aff6eeb5.zip |
storage/nfs: new storage plugin
Diffstat (limited to 'src/storage/Registry.cxx')
-rw-r--r-- | src/storage/Registry.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/storage/Registry.cxx b/src/storage/Registry.cxx index b81349510..b3fdd1642 100644 --- a/src/storage/Registry.cxx +++ b/src/storage/Registry.cxx @@ -22,6 +22,7 @@ #include "StoragePlugin.hxx" #include "plugins/LocalStorage.hxx" #include "plugins/SmbclientStorage.hxx" +#include "plugins/NfsStorage.hxx" #include "util/Error.hxx" #include <assert.h> @@ -32,6 +33,9 @@ const StoragePlugin *const storage_plugins[] = { #ifdef ENABLE_SMBCLIENT &smbclient_storage_plugin, #endif +#ifdef ENABLE_NFS + &nfs_storage_plugin, +#endif nullptr }; |