diff options
author | Rich J Wareham <richwareham@users.sourceforge.net> | 2002-02-02 17:05:43 +0000 |
---|---|---|
committer | Rich J Wareham <richwareham@users.sourceforge.net> | 2002-02-02 17:05:43 +0000 |
commit | 465f37029a8633310c7f89a1917f6cc086dde7e6 (patch) | |
tree | f0c8dd31ff442cce0b946e3674e1008a1d808d33 /src/xine-engine/load_plugins.c | |
parent | ef6e3362fcf60fe345573b883f086411ea0f70b4 (diff) | |
download | xine-lib-465f37029a8633310c7f89a1917f6cc086dde7e6.tar.gz xine-lib-465f37029a8633310c7f89a1917f6cc086dde7e6.tar.bz2 |
Added a new DirectFB output plugin (experimental)
CVS patchset: 1470
CVS date: 2002/02/02 17:05:43
Diffstat (limited to 'src/xine-engine/load_plugins.c')
-rw-r--r-- | src/xine-engine/load_plugins.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index a1831667b..59183304d 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.67 2002/01/08 16:41:39 cvogler Exp $ + * $Id: load_plugins.c,v 1.68 2002/02/02 17:05:43 richwareham Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -684,7 +684,7 @@ char **xine_list_video_output_plugins (int visual_type) { * and finally if all this went through get it's id */ - if(!(plugin = dlopen (str, RTLD_LAZY))) { + if(!(plugin = dlopen (str, RTLD_LAZY | RTLD_GLOBAL))) { printf("load_plugins: cannot load plugin %s:\n%s\n", str, dlerror()); @@ -800,7 +800,7 @@ vo_driver_t *xine_load_video_output_plugin(config_values_t *config, sprintf (str, "%s/%s", XINE_PLUGINDIR, dir_entry->d_name); - if(!(plugin = dlopen (str, RTLD_LAZY))) { + if(!(plugin = dlopen (str, RTLD_LAZY | RTLD_GLOBAL))) { printf("load_plugins: video output plugin %s failed to link:\n%s\n", str, dlerror()); } else { |