Index caches dir too, add caches to Makefile.am

Original commit message from CVS:
Index caches dir too, add caches to Makefile.am
This commit is contained in:
Wim Taymans 2002-11-29 18:16:58 +00:00
parent a02dcd9779
commit 91df0963a7
2 changed files with 4 additions and 2 deletions

View file

@ -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 = \

View file

@ -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");