X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Fxmp%2Fxmp.pas;h=cd80954cff28152610ec753bfe59d54c4e47d0ee;hb=aac50c080dd2ec5b189a5739456d593e48791aaf;hp=2f48d07482c2ef9141d4bfd73e7d632091b833c1;hpb=41373861bfc2c613356bcba4f57e854592888ee5;p=d2df-sdl.git diff --git a/src/lib/xmp/xmp.pas b/src/lib/xmp/xmp.pas index 2f48d07..cd80954 100644 --- a/src/lib/xmp/xmp.pas +++ b/src/lib/xmp/xmp.pas @@ -16,22 +16,34 @@ interface {$IF DEFINED(XMP_DYNAMIC)} const {$IF DEFINED(WINDOWS)} + {$IF DEFINED(USE_XMP_FULL)} + xmplib = 'libxmp.dll'; + {$ELSE} xmplib = 'libxmp-lite.dll'; + {$ENDIF} {$ELSEIF DEFINED(UNIX)} + {$IF DEFINED(USE_XMP_FULL)} + xmplib = 'libxmp.so'; + {$ELSE} xmplib = 'libxmp-lite.so'; + {$ENDIF} {$ELSE} {$MESSAGE ERROR 'XMP_DYNAMIC not supported'} {$IFEND} {$ELSE} + {$IF DEFINED(USE_XMP_FULL)} + {$LINKLIB xmp} + {$ELSE} {$LINKLIB xmp-lite} + {$ENDIF} {$ENDIF} const - XMP_VER_STRING = '4.5.0'; - XMP_VER_CODE = $040500; + XMP_VER_STRING = '4.4.1'; + XMP_VER_CODE = $040401; XMP_VER_MAJOR = 4; - XMP_VER_MINOR = 5; - XMP_VER_RELEASE = 0; + XMP_VER_MINOR = 4; + XMP_VER_RELEASE = 1; const XMP_NAME_SIZE = 64; (* Size of module name and type *)