summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-12-13 19:01:42 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-12-13 19:01:42 +0000
commit1dc71f66ca23249a4b2be870db09586367feaace (patch)
treeca9c525c3d82c08fc06dca23618421c209df429a
parentcbf84e9f0e3fbfe1db57242d8dc63e49f1fd3ffa (diff)
downloadxine-lib-1dc71f66ca23249a4b2be870db09586367feaace.tar.gz
xine-lib-1dc71f66ca23249a4b2be870db09586367feaace.tar.bz2
disable cache log
CVS patchset: 3511 CVS date: 2002/12/13 19:01:42
-rw-r--r--src/xine-engine/load_plugins.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c
index 5dbf5441f..6eefa974a 100644
--- a/src/xine-engine/load_plugins.c
+++ b/src/xine-engine/load_plugins.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: load_plugins.c,v 1.119 2002/12/08 20:53:02 miguelfreitas Exp $
+ * $Id: load_plugins.c,v 1.120 2002/12/13 19:01:42 miguelfreitas Exp $
*
*
* Load input/demux/audio_out/video_out/codec plugins
@@ -289,11 +289,13 @@ static void collect_plugins(xine_t *this, char *path){
#ifdef USE_CACHED_CATALOG
info = _get_cached_plugin ( this->plugin_catalog->cache,
str, &statbuffer, NULL);
+#ifdef LOG
if( info )
printf("load_plugins: using cached %s\n", str);
else
printf("load_plugins: %s not cached\n", str);
#endif
+#endif
if(!info && !(lib = dlopen (str, RTLD_LAZY | RTLD_GLOBAL))) {