Browse Source

Merge of commit 44246 from trunk branch
+ other fixes to packages/*/fpmake.pp with wrong versions.
Fixes shortsrc target in fixes_3_2 branch.
------------------------------------------------------------------------
r44246 | pierre | 2020-02-27 07:32:00 +0000 (Thu, 27 Feb 2020) | 3 lines

* Fix sourcezip make target, correcting mixed case input file names.


------------------------------------------------------------------------
--- Merging r44246 into '.':
U packages/ide/fpmake.pp
U packages/libgbafpc/fpmake.pp
U packages/libndsfpc/fpmake.pp
U packages/vcl-compat/fpmake.pp
--- Recording mergeinfo for merge of r44246 into '.':
U .

git-svn-id: branches/fixes_3_2@44247 -

pierre 5 years ago
parent
commit
eec778bcd5

+ 1 - 1
packages/gnutls/fpmake.pp

@@ -19,7 +19,7 @@ begin
 {$ifdef ALLPACKAGES}
     P.Directory:=ADirectory;
 {$endif ALLPACKAGES}
-    P.Version:='3.3.1';
+    P.Version:='3.2.0-beta';
     P.SourcePath.Add('src');
     P.OSes := AllUnixOSes+AllWindowsOSes-[qnx];
     if Defaults.CPU=jvm then

+ 2 - 2
packages/ide/fpmake.pp

@@ -297,8 +297,8 @@ begin
         with P.Sources do
         begin
         AddDoc('readme.ide');
-        AddSrc('readme.txt');
-        AddSrc('todo.txt');
+        AddSrc('README.txt');
+        AddSrc('TODO.txt');
         AddSrc('fp.ans');
         AddSrcFiles('*.tdf',P.Directory);
         AddSrcFiles('*.pas',P.Directory,true);

+ 1 - 1
packages/libgbafpc/fpmake.pp

@@ -31,7 +31,7 @@ begin
      T.IncludePath.Add('src/gba');
      with T.Dependencies do
      begin
-       AddInclude('BoyScout.inc');
+       AddInclude('boyscout.inc');
        AddInclude('core_asm.as');
        AddInclude('disc.inc');
        AddInclude('disc_io.inc');

+ 1 - 1
packages/libmagic/fpmake.pp

@@ -17,7 +17,7 @@ begin
 {$ifdef ALLPACKAGES}
     P.Directory:=ADirectory;
 {$endif ALLPACKAGES}
-    P.Version:='3.3.1';
+    P.Version:='3.2.0-beta';
     P.Author := 'Library: libmagic';
     P.License := 'Library: GPL, header: LGPL with modification, ';
     P.HomepageURL := 'www.freepascal.org';

+ 1 - 1
packages/libndsfpc/fpmake.pp

@@ -109,7 +109,7 @@ begin
        AddInclude('dswifi9.inc');
        AddInclude('dswifi7.inc');
        AddInclude('netdb.inc');
-       AddInclude('sgIp_errno.inc');
+       AddInclude('sgIP_errno.inc');
      end;
      T.IncludePath.Add('src/dswifi/inc/netinet');
        T.Dependencies.AddInclude('in.inc');

+ 2 - 2
packages/vcl-compat/fpmake.pp

@@ -13,7 +13,7 @@ begin
 {$endif ALLPACKAGES}
 
     P:=AddPackage('vcl-compat');
-    P.ShortName:='vclcomp';
+    P.ShortName:='vcl';
     P.Author := 'Michael Van Canneyt';
     P.License := 'LGPL with modification';
     P.HomepageURL := 'www.freepascal.org';
@@ -26,7 +26,7 @@ begin
 {$ifdef ALLPACKAGES}
     P.Directory:=ADirectory;
 {$endif ALLPACKAGES}
-    P.Version:='3.3.1';
+    P.Version:='3.2.0-beta';
     P.Dependencies.Add('fcl-base');
     P.Dependencies.Add('fcl-xml');
     P.Dependencies.Add('fcl-web');