Files
lazarus-ccr/components/fpexif/fpexif.inc
wp_xxyyzz e03afa62f1 fpexif: Initial commit of units and tests
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6080 8e941d3f-bd1b-0410-a28a-d453659cc2b4
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}