From 91df0963a7d7071932e8cb47bf3a1932026144dc Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 29 Nov 2002 18:16:58 +0000 Subject: [PATCH] Index caches dir too, add caches to Makefile.am Original commit message from CVS: Index caches dir too, add caches to Makefile.am --- gst/Makefile.am | 4 ++-- gst/gst.c | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gst/Makefile.am b/gst/Makefile.am index 68de824fa4..8f3a85e29a 100644 --- a/gst/Makefile.am +++ b/gst/Makefile.am @@ -43,8 +43,8 @@ endif EXTRA_libgstreamer_la_SOURCES = gstcpuid_i386.s gstmarshal.list gstxml.c gsttypefind.c gstparse.c gstautoplug.c gsttrace.c -SUBDIRS = parse registries . $(GST_AUTOPLUG_DIRS) elements schedulers types -DIST_SUBDIRS = autoplug elements parse registries schedulers types +SUBDIRS = parse registries . $(GST_AUTOPLUG_DIRS) elements schedulers types caches +DIST_SUBDIRS = autoplug elements parse registries schedulers types caches libcothreads_la_SOURCES = cothreads.c libgstreamer_la_SOURCES = \ diff --git a/gst/gst.c b/gst/gst.c index 1573a459c2..0b8ba1da47 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -341,6 +341,7 @@ init_pre (void) gst_registry_add_path (_global_registry, PLUGINS_BUILDDIR "/gst/types"); gst_registry_add_path (_global_registry, PLUGINS_BUILDDIR "/gst/autoplug"); gst_registry_add_path (_global_registry, PLUGINS_BUILDDIR "/gst/schedulers"); + gst_registry_add_path (_global_registry, PLUGINS_BUILDDIR "/gst/caches"); #else /* add the main (installed) library path */ gst_registry_add_path (_global_registry, PLUGINS_DIR); @@ -447,6 +448,7 @@ init_post (void) #ifndef GST_DISABLE_AUTOPLUG gst_autoplug_factory_get_type (); #endif + gst_cache_factory_get_type (); plugin_path = g_getenv ("GST_PLUGIN_PATH");