# HG changeset patch # User yaz # Date 1171203740 28800 # Node ID 4b022820566b096c11a1a9b1389c47b2da5f6d58 # Parent 65606ed19c7641c2fe6d49355993f7284bc5538f [svn] - add rpath to make sure that plugins pick libid3tag up from libdir. diff -r 65606ed19c76 -r 4b022820566b ChangeLog --- a/ChangeLog Sun Feb 11 05:39:56 2007 -0800 +++ b/ChangeLog Sun Feb 11 06:22:20 2007 -0800 @@ -1,3 +1,14 @@ +2007-02-11 13:39:56 +0000 Yoshiki Yazawa + revision [1354] + - make use of integrated libid3tag + + trunk/configure.ac | 15 +++------------ + trunk/src/madplug/Makefile | 2 +- + trunk/src/madplug/fileinfo.c | 2 +- + trunk/src/tta/Makefile | 2 +- + 4 files changed, 6 insertions(+), 15 deletions(-) + + 2007-02-11 10:44:18 +0000 William Pitcock revision [1352] - filter out .ogg extension diff -r 65606ed19c76 -r 4b022820566b src/madplug/Makefile --- a/src/madplug/Makefile Sun Feb 11 05:39:56 2007 -0800 +++ b/src/madplug/Makefile Sun Feb 11 06:22:20 2007 -0800 @@ -19,6 +19,8 @@ CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ARCH_DEFINES) $(MAD_CFLAGS) -I../../intl -I../.. +LDFLAGS += -Wl,-rpath=$(libdir) + LIBADD = -L$(libdir) -lid3tag $(MAD_LIBS) $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) include ../../mk/objective.mk diff -r 65606ed19c76 -r 4b022820566b src/tta/Makefile --- a/src/tta/Makefile Sun Feb 11 05:39:56 2007 -0800 +++ b/src/tta/Makefile Sun Feb 11 06:22:20 2007 -0800 @@ -11,6 +11,8 @@ CFLAGS += -fPIC -DPIC $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I../../intl -I../.. +LDFLAGS += -Wl,-rpath=$(libdir) + LIBADD = -L$(libdir) -lid3tag $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) include ../../mk/objective.mk