comparison 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
comparison
equal deleted inserted replaced
640:0fde94f6285f 641:3f0a3c24f2b9
3 3
4 OBJECTIVE_LIBS = libxspf$(SHARED_SUFFIX) 4 OBJECTIVE_LIBS = libxspf$(SHARED_SUFFIX)
5 5
6 LIBDIR = $(plugindir)/$(CONTAINER_PLUGIN_DIR) 6 LIBDIR = $(plugindir)/$(CONTAINER_PLUGIN_DIR)
7 7
8 SOURCES = xspf.c base64.c urlencode.c 8 SOURCES = xspf.c
9 9
10 OBJECTS = ${SOURCES:.c=.o} 10 OBJECTS = ${SOURCES:.c=.o}
11 11
12 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ARCH_DEFINES) $(XML_CPPFLAGS) -I../../intl -I../.. 12 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ARCH_DEFINES) $(XML_CPPFLAGS) -I../../intl -I../.. -Wall
13 13
14 CXXFLAGS = $(CFLAGS) 14 CXXFLAGS = $(CFLAGS)
15 15
16 LIBADD = $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) $(XML_LIBS) 16 LIBADD = $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) $(XML_LIBS)
17 17