Skip Menu |

This queue is for tickets about the Imager CPAN distribution.

Report information
The Basics
Id: 23922
Status: resolved
Priority: 0/
Queue: Imager

People
Owner: Nobody in particular
Requestors: ishigaki [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: gif.c doesn't compile under MSVC due to a pragma typo
This patch would fix that. --- gif.c 2006-12-14 13:33:21.060250000 +0900 +++ gif.c.patched 2006-12-14 13:33:39.794625000 +0900 @@ -1,6 +1,6 @@ #include "imageri.h" #include <gif_lib.h> -#ifdef _MSCVER +#ifdef _MSC_VER #include <io.h> #else #include <unistd.h>
On Wed Dec 13 23:39:39 2006, ISHIGAKI wrote: Show quoted text
> This patch would fix that. > > --- gif.c 2006-12-14 13:33:21.060250000 +0900 > +++ gif.c.patched 2006-12-14 13:33:39.794625000 +0900 > @@ -1,6 +1,6 @@ > #include "imageri.h" > #include <gif_lib.h> > -#ifdef _MSCVER > +#ifdef _MSC_VER > #include <io.h> > #else > #include <unistd.h>
Thanks for reporting this. I've fixed this in SVN. I've also added giflib back into my win32 test environment, not sure when I lost it. Tony
Hi, This problem has been fixed in Imager 0.55. Thanks for your report. Tony