* fixed library name (typo)

git-svn-id: trunk@12694 -
This commit is contained in:
ivost 2009-02-06 16:58:06 +00:00
parent 76694f6ec8
commit 555d72a37b

View File

@ -15,25 +15,15 @@ unit xml2;
interface
uses
{$IFDEF WINDOWS}
windows,
{$ENDIF}
{$IFDEF UNIX}
//unixtype,
{$ENDIF}
dynlibs,
ctypes;
//{$IF Sizeof(cbool) <> Sizeof(cint)}
// {$ERROR 'cbool size mismatch!'}
//{$ENDIF}
const
{$IF Defined(WINDOWS)}
xml2lib = 'libxml2.dll';
xml2lib = 'libxml2.'+sharedsuffix;
{$DEFINE EXTDECL := cdecl}
{$ELSEIF Defined(UNIX)}
xml2lib = 'libxml2'+sharedsuffix;
xml2lib = 'libxml2.'+sharedsuffix;
{$DEFINE EXTDECL := cdecl}
{$ELSE}
{$MESSAGE ERROR 'DYNLINK not supported'}