Explorar el Código

* disable LCL detection

git-svn-id: trunk@3328 -
peter hace 19 años
padre
commit
a0d4f358eb
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      utils/fpcm/fpcmmain.pp

+ 2 - 0
utils/fpcm/fpcmmain.pp

@@ -716,12 +716,14 @@ implementation
         { Add some default variables like FPCDIR, UNITSDIR }
         AddFPCDefaultVariables;
         { Load LCL code ? }
+{$ifdef SupportLCL}
         s:=GetVariable('require_packages',true);
         if (pos('lcl',s)>0) or (PackageName='lcl') then
          begin
            FUsesLCL:=true;
            AddLCLDefaultVariables;
          end;
+{$endif SupportLCL}
         { Show globals }
         Verbose(FPCMakeDebug,s_globals);
         Variables.Foreach(@PrintDic);