summaryrefslogtreecommitdiff
path: root/installer
diff options
context:
space:
mode:
authorhajny <hajny@3ad0048d-3df7-0310-abae-a5850022a9f2>2015-09-13 20:41:26 +0000
committerhajny <hajny@3ad0048d-3df7-0310-abae-a5850022a9f2>2015-09-13 20:41:26 +0000
commit943e31f727779a675cc3b55cf6f05c45a7e51067 (patch)
treea327c7de28bf037682c1f01b13cb7670c8f18157 /installer
parentd40a597fd8812abc6764bf668d45280a8380f1d7 (diff)
downloadfpc-943e31f727779a675cc3b55cf6f05c45a7e51067.tar.gz
* correct the highest possible number of items in tab/group and fix the LIBPATH information moved by one line in the dialogue box
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@31671 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'installer')
-rw-r--r--installer/install.pas10
1 files changed, 5 insertions, 5 deletions
diff --git a/installer/install.pas b/installer/install.pas
index 053e9b52b4..74a959fffd 100644
--- a/installer/install.pas
+++ b/installer/install.pas
@@ -1,6 +1,6 @@
{
This file is part of the Free Pascal run time library.
- Copyright (c) 1993-98 by Florian Klaempfl
+ Copyright (c) 1993-2015 by Florian Klaempfl
member of the Free Pascal development team
This is the install program for the DOS and OS/2 versions of Free Pascal
@@ -94,11 +94,11 @@ program install;
const
installerversion='3.1.1';
- installercopyright='Copyright (c) 1993-2011 Florian Klaempfl';
+ installercopyright='Copyright (c) 1993-2015 Florian Klaempfl';
maxpacks=20;
- maxpackages=60;
+ maxpackages=32;
maxdefcfgs=1024;
HTMLIndexExt = '.htx';
@@ -912,7 +912,7 @@ program install;
S := 'Extend your LIBPATH with ''' + S;
System.Delete (S, Length (S) - 6, 7);
S := S + 'dll''';
- R.Assign (2, YB - 14, 64, YB - 12);
+ R.Assign (2, YB - 15, 64, YB - 13);
P := New (PStaticText, Init (R, S));
Insert (P);
end;
@@ -1135,7 +1135,7 @@ program install;
found:=false;
for j:=1 to cfg.packs do
if packmask[j]<>0 then
- found:=true;
+ found:=true;
if not found then
begin
messagebox('No components found to install, aborting.',nil,mferror+mfokbutton);