* Fix library name

This commit is contained in:
Michaël Van Canneyt 2022-05-02 10:36:16 +02:00
parent 0f30dad341
commit 4df9da6c15

View File

@ -46,8 +46,17 @@ const
{$else}
{$ifdef windows}
GMPlibraryFileName = GMPExternal_library+'.dll';
{$else}
{$ifdef darwin}
// macOS
GMPlibraryFileName = GMPExternal_library+'.dylib';
{$else}
// Generic unix
GMPlibraryFileName = GMPExternal_library+'.so';
{$endif}
{$endif}
{$endif}
{ Pointers to basic pascal types, inserted by h2pas conversion program.}
Type
PLongint = ^Longint;