소스 검색

- disable automatic adding of "splitfilename(libname)" to to-be-linked
libraries for darwin (accidentally committed in previous commit)

git-svn-id: trunk@2595 -

Jonas Maebe 19 년 전
부모
커밋
23868147a6
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      compiler/systems/t_bsd.pas

+ 2 - 2
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;