summaryrefslogtreecommitdiff
path: root/systems/t_beos.pas
diff options
context:
space:
mode:
Diffstat (limited to 'systems/t_beos.pas')
-rw-r--r--systems/t_beos.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/systems/t_beos.pas b/systems/t_beos.pas
index 5e9ea9f54e..3db531626b 100644
--- a/systems/t_beos.pas
+++ b/systems/t_beos.pas
@@ -77,14 +77,14 @@ end;
procedure timportlibbeos.importprocedure(aprocdef:tprocdef;const module:string;index:longint;const name:string);
begin
{ insert sharedlibrary }
- current_module.linkothersharedlibs.add(SplitName(module),link_allways);
+ current_module.linkothersharedlibs.add(SplitName(module),link_always);
end;
procedure timportlibbeos.importvariable(vs:tglobalvarsym;const name,module:string);
begin
{ insert sharedlibrary }
- current_module.linkothersharedlibs.add(SplitName(module),link_allways);
+ current_module.linkothersharedlibs.add(SplitName(module),link_always);
{ reset the mangledname and turn off the dll_var option }
vs.set_mangledname(name);
exclude(vs.varoptions,vo_is_dll_var);