From 23868147a66076cc5c72272a48c87c1cd1898fc2 Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Wed, 15 Feb 2006 14:59:38 +0000 Subject: [PATCH] - disable automatic adding of "splitfilename(libname)" to to-be-linked libraries for darwin (accidentally committed in previous commit) git-svn-id: trunk@2595 - --- compiler/systems/t_bsd.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/systems/t_bsd.pas b/compiler/systems/t_bsd.pas index 6a9cedace1..1a096ad8ae 100644 --- a/compiler/systems/t_bsd.pas +++ b/compiler/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;