diff options
author | Max Kellermann <max@duempel.org> | 2014-01-28 11:26:59 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-28 11:27:32 +0100 |
commit | d5f46a846adaa9e881c91fddaad78369b1abc2e5 (patch) | |
tree | 239b2a4593d2cd4f2097c4fa6475dee22a371265 | |
parent | f5a923b9d16e4c63942a033d1bdb2ab150aae342 (diff) | |
download | mpd-d5f46a846adaa9e881c91fddaad78369b1abc2e5.tar.gz mpd-d5f46a846adaa9e881c91fddaad78369b1abc2e5.tar.xz mpd-d5f46a846adaa9e881c91fddaad78369b1abc2e5.zip |
Makefile.am: make libneighbor.a conditional
Fixes non-Linux build without neighbor plugins.
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 23974e23c..536bf4105 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,7 +17,6 @@ noinst_LIBRARIES = \ libtag.a \ libinput.a \ libfs.a \ - libneighbor.a \ libdb_plugins.a \ libplaylist_plugins.a \ libdecoder_plugins.a \ @@ -415,6 +414,8 @@ src_mpd_SOURCES += \ src/command/NeighborCommands.cxx \ src/command/NeighborCommands.hxx +noinst_LIBRARIES += libneighbor.a + libneighbor_a_SOURCES = \ src/neighbor/Registry.cxx src/neighbor/Registry.hxx \ src/neighbor/Glue.cxx src/neighbor/Glue.hxx \ |