From c2d0f35e7a1a9fbc8cb23a30a191c966b26c140e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 12 Nov 2022 12:19:41 +0100 Subject: [PATCH] storage/meson.build: move StorageState.cxx to "mpd" executable Fixes spurious linker errors. --- meson.build | 1 + src/storage/meson.build | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c7cb2d74f..6fb9b529e 100644 --- a/meson.build +++ b/meson.build @@ -390,6 +390,7 @@ endif if enable_database sources += [ + 'src/storage/StorageState.cxx', 'src/queue/PlaylistUpdate.cxx', 'src/command/StorageCommands.cxx', 'src/command/DatabaseCommands.cxx', diff --git a/src/storage/meson.build b/src/storage/meson.build index 0102d6927..cc214548c 100644 --- a/src/storage/meson.build +++ b/src/storage/meson.build @@ -17,7 +17,6 @@ storage_glue = static_library( 'CompositeStorage.cxx', 'MemoryDirectoryReader.cxx', 'Configured.cxx', - 'StorageState.cxx', include_directories: inc, dependencies: [ boost_dep,