Browse Source

* Use the internal FPC-based http downloader by default, instead of lNet

git-svn-id: trunk@36583 -
joost 8 years ago
parent
commit
4962872d70
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/fppkg/src/pkgoptions.pp

+ 2 - 2
packages/fppkg/src/pkgoptions.pp

@@ -682,8 +682,8 @@ begin
   BuildDir:='{LocalRepository}build'+PathDelim;
   BuildDir:='{LocalRepository}build'+PathDelim;
   ArchivesDir:='{LocalRepository}archives'+PathDelim;
   ArchivesDir:='{LocalRepository}archives'+PathDelim;
   CompilerConfigDir:='{LocalRepository}config'+PathDelim;
   CompilerConfigDir:='{LocalRepository}config'+PathDelim;
-{$if defined(unix) or defined(windows)}
-  Downloader:='lnet';
+{$if (defined(unix) and not defined(android)) or defined(windows)}
+  Downloader:='FPC';
 {$else}
 {$else}
   Downloader:='base';
   Downloader:='base';
 {$endif}
 {$endif}