summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2006-02-15 14:59:38 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2006-02-15 14:59:38 +0000
commit4ca95888998d08009f04f7e64bdc00f44c54e491 (patch)
tree16dca63170ff1e4ededb2277d6b1ee4b001933cd
parent467829afc7c6ee9cb42cea78ffb9610aafe1ab67 (diff)
downloadfpc-4ca95888998d08009f04f7e64bdc00f44c54e491.tar.gz
- disable automatic adding of "splitfilename(libname)" to to-be-linked
libraries for darwin (accidentally committed in previous commit) git-svn-id: http://svn.freepascal.org/svn/fpc/trunk/compiler@2595 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--systems/t_bsd.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/systems/t_bsd.pas b/systems/t_bsd.pas
index 6a9cedace1..1a096ad8ae 100644
--- a/systems/t_bsd.pas
+++ b/systems/t_bsd.pas
@@ -98,14 +98,14 @@ implementation
procedure timportlibdarwin.importprocedure(aprocdef:tprocdef;const module : string;index : longint;const name : string);
begin
{ insert sharedlibrary }
- current_module.linkothersharedlibs.add(SplitName(module),link_always);
+{ current_module.linkothersharedlibs.add(SplitName(module),link_always); }
end;
procedure timportlibdarwin.importvariable(vs:tglobalvarsym;const name,module:string);
begin
{ insert sharedlibrary }
- current_module.linkothersharedlibs.add(SplitName(module),link_always);
+{ current_module.linkothersharedlibs.add(SplitName(module),link_always); }
{ the rest is handled in the nppcld.pas tppcloadnode }
vs.set_mangledname(name);
end;