Difference between revisions of "Issues 2.6.4"

From Free Pascal wiki
Jump to navigationJump to search
(→‎Issues with 2.6.4-rc1: testframework merged.)
(dbtestframework confirmed fixed)
Line 13: Line 13:
 
* document the issues on [[User_Changes_2.6.4]] that triggered the changes performed in Lazarus [http://svn.freepascal.org/cgi-bin/viewvc.cgi?view=revision&root=lazarus&revision=40410 r40410] (already documented on [[User_Changes_Trunk]]), [http://svn.freepascal.org/cgi-bin/viewvc.cgi?view=revision&root=lazarus&revision=43275 r43275], [http://svn.freepascal.org/cgi-bin/viewvc.cgi?view=revision&root=lazarus&revision=43371 r43371]
 
* document the issues on [[User_Changes_2.6.4]] that triggered the changes performed in Lazarus [http://svn.freepascal.org/cgi-bin/viewvc.cgi?view=revision&root=lazarus&revision=40410 r40410] (already documented on [[User_Changes_Trunk]]), [http://svn.freepascal.org/cgi-bin/viewvc.cgi?view=revision&root=lazarus&revision=43275 r43275], [http://svn.freepascal.org/cgi-bin/viewvc.cgi?view=revision&root=lazarus&revision=43371 r43371]
 
* <strike>cross-building broken</strike> r26134
 
* <strike>cross-building broken</strike> r26134
* packages/fcl-db/tests/dbtestframework.pas has compile errors:
+
* <strike>packages/fcl-db/tests/dbtestframework.pas has compile errors:
 
   '''it is because there is used array constructor, which was introduced in FPC>=2.7.1
 
   '''it is because there is used array constructor, which was introduced in FPC>=2.7.1
 
   solution is remove whole test TTestFieldTypes.TestOpenSpecialStatements from testfieldtypes.pas'''
 
   solution is remove whole test TTestFieldTypes.TestOpenSpecialStatements from testfieldtypes.pas'''
Line 29: Line 29:
 
Fatal: Compilation aborted
 
Fatal: Compilation aborted
 
Error: /home/pascaldev/264/bin/x86_64-linux/ppcx64 returned an error exitcode (normal if you did not specify a source file to be compiled)
 
Error: /home/pascaldev/264/bin/x86_64-linux/ppcx64 returned an error exitcode (normal if you did not specify a source file to be compiled)
</syntaxhighlight>
+
</syntaxhighlight></strike>
 
( done in fixes26, mantis #25420, r26229)
 
( done in fixes26, mantis #25420, r26229)
  

Revision as of 16:48, 23 December 2013

Issues with 2.6.4 release candidates

This page is supposed to contain all issues discovered while testing release candidates and their status. Make sure to include information about the platform where the problem appears (if applicable). Once the issue gets resolved, you should strike it over and add number of SVN revision fixing it. If the revision number refers to a SVN repository different from "fpc" (i.e. "fpcbuild" or "fpcdocs"), include information about the SVN repository too.

Example:

  1. cpu-os: IE209101221 while compiling XYZ.pas - r123456
  2. docs: missing description of XYZ
  3. readme.txt: wrong version number - r654321 (fpcbuild)

Issues with 2.6.4-rc1

  • make clean and make distclean don't clean anything in the package directories handled by fpmake (fastcgi and fcl-web) when FPC is a cross-compiler
  • document the issues on User_Changes_2.6.4 that triggered the changes performed in Lazarus r40410 (already documented on User_Changes_Trunk), r43275, r43371
  • cross-building broken r26134
  • packages/fcl-db/tests/dbtestframework.pas has compile errors:
 it is because there is used array constructor, which was introduced in FPC>=2.7.1
 solution is remove whole test TTestFieldTypes.TestOpenSpecialStatements from testfieldtypes.pas
Compiling testfieldtypes.pas
testfieldtypes.pas(1276,39) Error: Illegal qualifier
testfieldtypes.pas(1278,39) Error: Illegal qualifier
testfieldtypes.pas(1283,39) Error: Illegal qualifier
testfieldtypes.pas(1285,39) Error: Illegal qualifier
testfieldtypes.pas(1287,39) Error: Illegal qualifier
testfieldtypes.pas(2158,14) Warning: Class types "TSQLQuery" and "HackedDataset" are not related
testfieldtypes.pas(2164,14) Warning: Class types "TSQLQuery" and "HackedDataset" are not related
testfieldtypes.pas(2170,14) Warning: Class types "TSQLQuery" and "HackedDataset" are not related
testfieldtypes.pas(2327) Fatal: There were 5 errors compiling module, stopping
Fatal: Compilation aborted
Error: /home/pascaldev/264/bin/x86_64-linux/ppcx64 returned an error exitcode (normal if you did not specify a source file to be compiled)

( done in fixes26, mantis #25420, r26229)

Merge requests

  • (marcov) r26008 has some potentially critical fix to iconvenc.
  • (marcov) r26171 adds minimal ycck support to fcl-image (only adds code for a specific case)
  • (marcov) r26189 adds FPC_USE_LIBC termios support. Doesn't change anything when syscalls are used. (to give debian/kfreebsd a shot at fpc 2.6.4)
  • (marcov) r26199 fixes some FPC_USE_LIBC cases in linux.pp
  • (marcov) r26188,r262190 Mysql header support.
  • (marcov) r26202 windows.geticmprofilew misses pointer for one argument.
  • (reiniero) patch r25985_backported_to_2.4rc1.diff in mantis #25314 which backports a fix for TCustomBufDataset.InternalClose method crushes in case of TSQLQuery.IndexFieldNames not empty. Note: due to test suite not working couldn't test; however fpc compiled cleanly. Laco, could you review this one please? (Laco:patch looks ok to me)
  • (reiniero) Patch in http://bugs.freepascal.org/view.php?id=25420 fixes "packages/fcl-db/tests/dbtestframework.pas has compile errors" reported above Fixes r26229

Post RC1 merges