diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index a63c9d1d7..7db87fd98 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1016,11 +1016,13 @@ libplaylist_plugins_a_SOURCES = \ src/playlist/EmbeddedCuePlaylistPlugin.hxx \ src/PlaylistRegistry.cxx src/PlaylistRegistry.hxx libplaylist_plugins_a_CPPFLAGS = $(AM_CPPFLAGS) \ + $(EXPAT_CFLAGS) \ $(YAJL_CFLAGS) \ $(patsubst -I%/FLAC,-I%,$(FLAC_CFLAGS)) PLAYLIST_LIBS = \ libplaylist_plugins.a \ + $(EXPAT_LIBS) \ $(FLAC_LIBS) if ENABLE_DESPOTIFY @@ -1036,10 +1038,9 @@ libplaylist_plugins_a_SOURCES += \ PLAYLIST_LIBS += $(YAJL_LIBS) endif -if HAVE_GLIB +if HAVE_EXPAT libplaylist_plugins_a_SOURCES += \ - src/playlist/PlsPlaylistPlugin.cxx \ - src/playlist/PlsPlaylistPlugin.hxx \ + src/Expat.cxx src/Expat.hxx \ src/playlist/XspfPlaylistPlugin.cxx \ src/playlist/XspfPlaylistPlugin.hxx \ src/playlist/AsxPlaylistPlugin.cxx \ @@ -1048,6 +1049,12 @@ libplaylist_plugins_a_SOURCES += \ src/playlist/RssPlaylistPlugin.hxx endif +if HAVE_GLIB +libplaylist_plugins_a_SOURCES += \ + src/playlist/PlsPlaylistPlugin.cxx \ + src/playlist/PlsPlaylistPlugin.hxx +endif + # # Filter plugins # |