Search
lxdream.org :: lxdream/src/plugin.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/plugin.c
changeset 1075:1a21750d300c
prev1071:182cfe43c09e
next1296:30ecee61f811
author nkeynes
date Mon Mar 05 11:41:03 2012 +1000 (12 years ago)
permissions -rw-r--r--
last change Small cleanups:
Refactor the post-windowing setup into gl_init_driver() in video_gl.c
Move gl_sl.c into src/drivers and tidy up a bit.
Fix OS X compiling plugins with -mdynamic-no-pic
file annotate diff log raw
1.1 --- a/src/plugin.c Tue Jul 21 20:21:52 2009 +1000
1.2 +++ b/src/plugin.c Mon Mar 05 11:41:03 2012 +1000
1.3 @@ -102,7 +102,7 @@
1.4 dlclose(so);
1.5 return FALSE;
1.6 }
1.7 - INFO("Loaded %s '%s'", plugin_type_string[plugin->type], plugin->name);
1.8 + DEBUG("Loaded %s '%s'", plugin_type_string[plugin->type], plugin->name);
1.9 return TRUE;
1.10 }
1.11
1.12 @@ -152,6 +152,6 @@
1.13 path = get_plugin_path();
1.14 }
1.15
1.16 - INFO( "Plugin directory: %s", path );
1.17 + DEBUG( "Plugin directory: %s", path );
1.18 return plugin_load_all( path );
1.19 }
.