mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-26 01:09:24 +02:00
* Fix library name
This commit is contained in:
parent
0f30dad341
commit
4df9da6c15
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user