mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-13 11:49:30 +02:00
* correct name for OS/2 and EMX import libraries
git-svn-id: trunk@26558 -
This commit is contained in:
parent
aadb407e31
commit
8242d060ce
@ -2206,8 +2206,10 @@ end;
|
|||||||
|
|
||||||
function GetImportLibraryFilename(const UnitName: string; AOS: TOS): string;
|
function GetImportLibraryFilename(const UnitName: string; AOS: TOS): string;
|
||||||
begin
|
begin
|
||||||
if AOS in [go32v2,watcom,os2,emx] then
|
if AOS in [go32v2,watcom] then
|
||||||
Result := 'libimp'+UnitName
|
Result := 'libimp'+UnitName
|
||||||
|
if AOS in [os2,emx] then
|
||||||
|
Result := UnitName
|
||||||
else if AOS in [netware,netwlibc,macos] then
|
else if AOS in [netware,netwlibc,macos] then
|
||||||
Result := 'lib'+UnitName
|
Result := 'lib'+UnitName
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user