diff --git a/packages/fpmkunit/src/fpmkunit.pp b/packages/fpmkunit/src/fpmkunit.pp index 36b9e19a56..2c0b97ae68 100644 --- a/packages/fpmkunit/src/fpmkunit.pp +++ b/packages/fpmkunit/src/fpmkunit.pp @@ -240,6 +240,7 @@ Const SharedLibExt = '.so'; DyLibExt = '.dylib'; DLLExt = '.dll'; + AIXSharedLibExt = '.a'; ExeExt = '.exe'; DbgExt = '.dbg'; ZipExt = '.zip'; @@ -2626,6 +2627,8 @@ begin Result:=LibraryName+DLLExt else if aOS in [darwin,macos,iphonesim] then Result:=LibraryName+DyLibExt + else if aOS = Aix then + Result:=LibraryName+AIXSharedLibExt else Result:=LibraryName+SharedLibExt; end;