Lhelp: Add GIF support. Issue #24687, patch from Reinier Olislagers

git-svn-id: trunk@41949 -
This commit is contained in:
juha 2013-06-30 22:11:11 +00:00
parent 1182ff0df2
commit 6c417b690b
2 changed files with 8 additions and 4 deletions

View File

@ -17,10 +17,12 @@ uses
Classes, SysUtils, IpHtml, iputils, IpMsg, Graphics, chmreader,
LCLType, Controls,
FPImage,
{fpreadgif,} // doesn't exist yet!
{$IF FPC_FULLVERSION>=20602} //fpreadgif exists since at least this version
FPReadgif,
{$ENDIF}
FPReadbmp,
FPReadxpm,
FPReadJPEg,
FPReadJPEG,
FPReadpng,
FPWritebmp,
FPWritePNG,

View File

@ -64,10 +64,12 @@ implementation
uses
FPImage,
{fpreadgif,} // doesn't exist yet!
{$IF FPC_FULLVERSION>=20602} //fpreadgif exists since at least this version
FPReadgif,
{$ENDIF}
FPReadbmp,
FPReadxpm,
FPReadJPEg,
FPReadJPEG,
FPReadpng,
FPWritebmp,
IntFGraphics;