diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-05-26 23:34:41 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-05-26 23:34:41 +0000 |
commit | da79cd5096f89156a24ec44a603eb18a46d44473 (patch) | |
tree | 2cd544f2385d1e040a902391d0ffd5254572a3c2 /src/xine-engine/load_plugins.c | |
parent | 54b3c65e50e38fe278c2f539571ac830c133392b (diff) | |
download | xine-lib-da79cd5096f89156a24ec44a603eb18a46d44473.tar.gz xine-lib-da79cd5096f89156a24ec44a603eb18a46d44473.tar.bz2 |
untested cygwin patch
CVS patchset: 4958
CVS date: 2003/05/26 23:34:41
Diffstat (limited to 'src/xine-engine/load_plugins.c')
-rw-r--r-- | src/xine-engine/load_plugins.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index cba8d95ae..b64117f3d 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.152 2003/05/20 14:55:55 mroi Exp $ + * $Id: load_plugins.c,v 1.153 2003/05/26 23:34:41 miguelfreitas Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -286,11 +286,13 @@ static void collect_plugins(xine_t *this, char *path){ */ #if defined(__hpux) if(!strstr(str, ".sl")) +#elif defined(__CYGWIN__) + if(!strstr(str, ".dll")) #else if(!strstr(str, ".so")) #endif break; - + plugin_name = str; lib = NULL; info = _get_cached_plugin ( this->plugin_catalog->cache, |