From d6e691a78166c05d4ff226946d567fd28c0cd326 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Fri, 13 Jan 2006 14:12:55 +0000 Subject: [PATCH] plugins/indexers/Makefile.am: Fixes as part of #317048 Original commit message from CVS: * plugins/indexers/Makefile.am: Fixes as part of #317048 --- ChangeLog | 5 +++++ plugins/indexers/Makefile.am | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 89997b0632..971401b0ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-01-13 Thomas Vander Stichele + + * plugins/indexers/Makefile.am: + Fixes as part of #317048 + 2006-01-13 Thomas Vander Stichele * plugins/indexers/Makefile.am: diff --git a/plugins/indexers/Makefile.am b/plugins/indexers/Makefile.am index ac82695956..0af5680b1f 100644 --- a/plugins/indexers/Makefile.am +++ b/plugins/indexers/Makefile.am @@ -1,17 +1,21 @@ plugin_LTLIBRARIES = libgstcoreindexers.la + # file index uses xml if HAVE_MMAP if GST_DISABLE_LOADSAVE GST_LOADSAVE_SRC = +GST_FILEINDEX_LIBS = else GST_LOADSAVE_SRC = gstfileindex.c +GST_FILEINDEX_LIBS = $(XML_LIBS) endif else GST_LOADSAVE_SRC = +GST_FILEINDEX_LIBS = endif libgstcoreindexers_la_DEPENDENCIES = $(top_builddir)/gst/libgstreamer-@GST_MAJORMINOR@.la libgstcoreindexers_la_SOURCES = gstindexers.c gstmemindex.c $(GST_LOADSAVE_SRC) libgstcoreindexers_la_CFLAGS = $(GST_OBJ_CFLAGS) -libgstcoreindexers_la_LIBADD = $(GST_OBJ_LIBS) +libgstcoreindexers_la_LIBADD = $(GST_OBJ_LIBS) $(GST_FILEINDEX_LIBS) libgstcoreindexers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)