Mercurial > audlegacy-plugins
diff src/xspf/Makefile @ 641:3f0a3c24f2b9 trunk
[svn] libxspf improvements:
- now libxspf can parse relative path with xml:base notation.
- backward compatibility support for base64 and locale_to_utf8 has been removed.
- make use of libxml2's url encoding/decoding.
- now mtime is always recorded even if the value is 0.
- tentative support for "staticlist".
-- if a mtime entry for each track is set to 0, metadata for corresponding track will not be updated automatically.
-- if there is an element shown below in the playlist-element, all mtime entries in the playlist will be regarded as 0 so that whole metadata in the playlist will be conserved.
staticlist element:
<extension application="audacious">
<options staticlist="true"/>
</extension>
author | yaz |
---|---|
date | Mon, 12 Feb 2007 20:02:17 -0800 |
parents | 550c9e382cf8 |
children | 71698fb39d29 |
line wrap: on
line diff
--- a/src/xspf/Makefile Mon Feb 12 12:54:12 2007 -0800 +++ b/src/xspf/Makefile Mon Feb 12 20:02:17 2007 -0800 @@ -5,11 +5,11 @@ LIBDIR = $(plugindir)/$(CONTAINER_PLUGIN_DIR) -SOURCES = xspf.c base64.c urlencode.c +SOURCES = xspf.c OBJECTS = ${SOURCES:.c=.o} -CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ARCH_DEFINES) $(XML_CPPFLAGS) -I../../intl -I../.. +CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ARCH_DEFINES) $(XML_CPPFLAGS) -I../../intl -I../.. -Wall CXXFLAGS = $(CFLAGS)