Mike Frysinger wrote:

how about the attached patch ?
-mike


------------------------------------------------------------------------

Index: src/lib/image.c
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/imlib2/src/lib/image.c,v
retrieving revision 1.2
diff -u -p -r1.2 image.c
--- src/lib/image.c     16 Jan 2005 18:23:46 -0000      1.2
+++ src/lib/image.c     3 Sep 2005 21:01:58 -0000
@@ -663,7 +663,11 @@ __imlib_TrimLoaderList(char **list, int if (!list[i])
            continue;
         ext = strrchr(list[i], '.');
-        if ((ext) && (!strcasecmp(ext, ".so")))
+        if ((ext) && (!strcasecmp(ext, ".so"))
+#ifndef __linux__
+            && (!strcasecmp(ext, ".dll"))
+#endif
+           )
           {
              /* Don't add the same loader multiple times... */
              if (!__imlib_ItemInList(ret, size, list[i]))

Shouldn't that be ifdef __win32__ or something?

Sebastian


-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to