lazarus-ccr/components/fpexif/fpexif.inc
2017-12-02 17:12:00 +00:00

35 lines
1010 B
PHP

{$IFDEF FPC}
{------------------------------------------------------------------
Defines for Lanzarus and FPC
------------------------------------------------------------------}
////// { Activate this define if an FPC version of at least 3.0 is used. }
{ This define signals that an FPC version >= 3.0 is used }
{$DEFINE FPC3+}
{$I fpexif_fpc.inc}
// Don't use jpeg units
{$DEFINE dExifNoJpeg}
{$ELSE}
{------------------------------------------------------------------
Defines for Delphi
------------------------------------------------------------------}
{$UNDEF FPC3+}
{ Activate this define if a library other than Delphi's jpeg is
used for reading of jpeg files.
Is active by default for Lazarus/FPC }
{.$DEFINE dEXIFNoJpeg}
{ Activate the define ENDIAN_BIG if working on a Big-Endian machine }
{.$DEFINE ENDIAN_BIG}
{ I did not test all Delphi versions. Extend the list if needed... }
{$IFDEF VER150}
{$DEFINE DELPHI7}
{$ENDIF}
{$ENDIF}