diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2004-06-05 16:06:12 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2004-06-05 16:06:12 +0000 |
commit | 6613d192c8d75188e97c6e078e77e504c90c4ce9 (patch) | |
tree | 9bec2c8f95c517794d3528bb942c3a4fe178376f /src/xine-engine/load_plugins.c | |
parent | 5cc73fecf51bb01721518d0924ff1074068df731 (diff) | |
download | xine-lib-6613d192c8d75188e97c6e078e77e504c90c4ce9.tar.gz xine-lib-6613d192c8d75188e97c6e078e77e504c90c4ce9.tar.bz2 |
From: Daniel Mack
Mac OSX video out support.
patch to configure.ac to follow
CVS patchset: 6642
CVS date: 2004/06/05 16:06:12
Diffstat (limited to 'src/xine-engine/load_plugins.c')
-rw-r--r-- | src/xine-engine/load_plugins.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 70e7961d9..b7db9fc85 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.176 2004/05/16 17:58:16 tmattern Exp $ + * $Id: load_plugins.c,v 1.177 2004/06/05 16:06:13 jcdutton Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -583,7 +583,10 @@ static void collect_plugins(xine_t *this, char *path){ _("load_plugins: can't get plugin info from %s:\n%s\n"), str, error); } if( lib ) - dlclose(lib); +#ifdef HOST_OS_DARWIN + if (dlsym (lib, "plugin_contains_objc_code") == NULL) +#endif + dlclose(lib); } break; case S_IFDIR: |