Re: [E-devel] IMLIB2 ported to mingw+msys

2008-11-01 Thread Vincent Torri
On Thu, 30 Oct 2008, Kim Woelders wrote: On Tue, 28 Oct 2008 17:45:10 +0100, carlo.bramix [EMAIL PROTECTED] wrote: Hello, I got the sources of your newly released Imlib2 1.4.2 and I did again the fixes for Mingw+Msys. I think I also fixed my bugs with: 1) bad mmap() detection 2)

Re: [E-devel] IMLIB2 ported to mingw+msys

2008-11-01 Thread carlo.bramix
Bramini. -- Initial Header --- From : Vincent Torri [EMAIL PROTECTED] To : Kim Woelders [EMAIL PROTECTED] Cc : enlightenment-devel enlightenment-devel@lists.sourceforge.net Date : Sat, 1 Nov 2008 08:23:50 +0100 (CET) Subject : Re: [E-devel] IMLIB2

Re: [E-devel] IMLIB2 ported to mingw+msys

2008-11-01 Thread Vincent Torri
Hey, The mmap() problem with TGA file loader: I could do it natively on Windows too (with CreateFileMapping(), MapViewOfFile(), etc) but I do not think this is what you really want... So, this is a good reason for adding the dependency with Evil if mmap() is supported. As alternative,

Re: [E-devel] IMLIB2 ported to mingw+msys

2008-10-30 Thread Kim Woelders
On Tue, 28 Oct 2008 17:45:10 +0100, carlo.bramix [EMAIL PROTECTED] wrote: Hello, I got the sources of your newly released Imlib2 1.4.2 and I did again the fixes for Mingw+Msys. I think I also fixed my bugs with: 1) bad mmap() detection 2) wrong use of HAVE_SIGJMP_BUF instead of

Re: [E-devel] IMLIB2 ported to mingw+msys

2008-10-28 Thread carlo.bramix
: enlightenment-devel enlightenment-devel@lists.sourceforge.net Date : Thu, 16 Oct 2008 17:38:41 +0200 Subject : Re: [E-devel] IMLIB2 ported to mingw+msys On Wed, 15 Oct 2008 13:29:10 +0200, Vincent Torri [EMAIL PROTECTED] wrote: On Wed, 15 Oct 2008, carlo\.bramix wrote

Re: [E-devel] IMLIB2 ported to mingw+msys

2008-10-17 Thread Vincent Torri
On Thu, 16 Oct 2008, Kim Woelders wrote: If all that's needed is included in the patch I think it's a bit much to have to depend on another (unreleased) library. on the other hand, it's a windows port, so I don't think that there are much people who will compile it. What is expected by

Re: [E-devel] IMLIB2 ported to mingw+msys

2008-10-17 Thread Michael Jennings
On Friday, 17 October 2008, at 14:02:56 (+0200), Vincent Torri wrote: By release, you mean a 1.* one ? If so, would you have objections that I add Evil as a dependency ? I plan to have an Evil release in some months. As long as it's only a dependency on Windows platforms. Michael --

Re: [E-devel] IMLIB2 ported to mingw+msys

2008-10-17 Thread Kim Woelders
On Fri, 17 Oct 2008 14:02:56 +0200, Vincent Torri [EMAIL PROTECTED] wrote: On Thu, 16 Oct 2008, Kim Woelders wrote: If all that's needed is included in the patch I think it's a bit much to have to depend on another (unreleased) library. on the other hand, it's a windows port, so I

Re: [E-devel] IMLIB2 ported to mingw+msys

2008-10-16 Thread Kim Woelders
On Wed, 15 Oct 2008 13:29:10 +0200, Vincent Torri [EMAIL PROTECTED] wrote: On Wed, 15 Oct 2008, carlo\.bramix wrote: Hello, I have already implemented some of the functions you need in a lib called 'Evil' (mmap, dlfcn, pwd.h, mkstemp,...). I use it for the EFL Windows (XP or Ce)

Re: [E-devel] IMLIB2 ported to mingw+msys

2008-10-15 Thread carlo.bramix
Hello, I have already implemented some of the functions you need in a lib called 'Evil' (mmap, dlfcn, pwd.h, mkstemp,...). I use it for the EFL Windows (XP or Ce) port. Maybe you could look at my code, improve it if you think it's needed, and make imlib2 Windows port depending on Evil

Re: [E-devel] IMLIB2 ported to mingw+msys

2008-10-15 Thread Vincent Torri
On Wed, 15 Oct 2008, carlo\.bramix wrote: Hello, I have already implemented some of the functions you need in a lib called 'Evil' (mmap, dlfcn, pwd.h, mkstemp,...). I use it for the EFL Windows (XP or Ce) port. Maybe you could look at my code, improve it if you think it's needed, and make

[E-devel] IMLIB2 ported to mingw+msys

2008-10-14 Thread carlo.bramix
Hello, I ported IMLIB2 to Mingw+msys and I also included some fixes for Cygwin. List of Changes: 1) Added test for mmap support. This test is required because TGA needs it (but why???). By conseguence, the TGA support becomes configurable. 2) Added test for sigjmp_buf support. If it is not

Re: [E-devel] IMLIB2 ported to mingw+msys

2008-10-14 Thread Vincent Torri
On Tue, 14 Oct 2008, carlo\.bramix wrote: Hello, I ported IMLIB2 to Mingw+msys and I also included some fixes for Cygwin. List of Changes: 1) Added test for mmap support. This test is required because TGA needs it (but why???). By conseguence, the TGA support becomes configurable. 2)