plugins/indexers/Makefile.am: Fixes as part of #317048
authorThomas Vander Stichele <thomas@apestaart.org>
Fri, 13 Jan 2006 14:12:55 +0000 (14:12 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Fri, 13 Jan 2006 14:12:55 +0000 (14:12 +0000)
Original commit message from CVS:

* plugins/indexers/Makefile.am:
Fixes as part of #317048

ChangeLog
plugins/indexers/Makefile.am

index 89997b0..971401b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
 
        * plugins/indexers/Makefile.am:
+         Fixes as part of #317048
+
+2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * plugins/indexers/Makefile.am:
          fix #316086 - compilation when mmap is missing
 
 2006-01-12  Sebastien Moutte  <sebastien@moutte.net>
index ac82695..0af5680 100644 (file)
@@ -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)