diff --git a/compiler/systems/t_bsd.pas b/compiler/systems/t_bsd.pas index 1549c91bf3..4cffee7a52 100644 --- a/compiler/systems/t_bsd.pas +++ b/compiler/systems/t_bsd.pas @@ -168,7 +168,7 @@ procedure TLinkerBSD.SetDefaultInfo; var LdProgram: string='ld'; begin - if target_info.system in systems_openbsd then + if target_info.system in (systems_openbsd+[system_x86_64_dragonfly]) then LdProgram:='ld.bfd'; LibrarySuffix:=' '; LdSupportsNoResponseFile := (target_info.system in ([system_m68k_netbsd]+systems_darwin)); diff --git a/utils/fppkg/fpmake.pp b/utils/fppkg/fpmake.pp index ffdb310e0e..0f6bb5ecf6 100644 --- a/utils/fppkg/fpmake.pp +++ b/utils/fppkg/fpmake.pp @@ -8,7 +8,7 @@ uses fpmkunit; procedure add_fppkg_util(const ADirectory: string); const - lnetOSes = [linux,beos,haiku,freebsd,netbsd,openbsd,darwin,iphonesim,solaris,win32,win64,wince,aix]; + lnetOSes = [linux,beos,haiku,freebsd,netbsd,openbsd,darwin,iphonesim,solaris,win32,win64,wince,aix,dragonfly]; WindowsOSes = [win32,win64,wince]; Var P : TPackage;