lang/seed7: update to 05_20161231
20161231: - The function toArray has been added to the libraries bitset.s7i, bitsetof.s7i and hashsetof.s7i. This function creates an array with all values from a given set. - Experimental functions to access TAR and ZIP archives as file system have been added to tar.s7i and zip.s7i. This is work in progress, so the API might change. - The compiler has been improved to work correctly with a C++ compiler backend (Now it uses strRaiseError insead of intRaiseError) for the code generated for BIN_RADIX and INT_RADIX. - The compiler has been improved to use sigaction(), when available (HAS_SIGACTION is TRUE). - The compiler has been improved to reactivate the signal handler, when necessary (SIGNAL_RESETS_HANDLER is TRUE). - Testcases for the parse function with whitespace and control characters have been added to chkbig.sd7. - in big_gmp.c the functions bigParse and bigParseBased have been improved, to raise RANGE_ERROR when whitespace characters are in the string. - The configuration values HAS_SIGACTION and SIGNAL_RESETS_HANDLER have been added to cc_conf.s7i. - The program chkccomp.c has been improved to define SIGNAL_RESETS_HANDLER. - The function checkMoveDirectory has been removed from chkccomp.c. - In several files the literal 8 has been replaced by CHAR_BIT, when 8 refers to the number of bits is a char. - Several integer literals have been replaced by defined constants. - Documentation comments have been added or improved in bitset.s7i, bitsetof.s7i, hashsetof.s7i, cc_conf.s7i, ftp.s7i, tar.s7i, zip.s7i, arrlib.c, arr_rtl.c, big_rtl.c, conlib.c, dll_unx.c, dll_win.c, fillib.c, fil_rtl.c, heaputl.c, hshlib.c, hsh_rtl.c, numlit.c, numutl.c, pcs_unx.c, pcs_win.c, pol_dos.c, pollib.c, pol_sel.c, pol_unx.c, sctlib.c, setlib.c, set_rtl.c, str_rtl.c and typlib.c. 20161204: - A description, how compiler optimizations can reduce the potential of integer overflow, has been added to the manual. - Documentation comments have been improved in cc_conf.s7i, integer.s7i, int_rtl.c, stat_win.c and tim_win.c. - The compiler has been improved to optimize expressions, where several terms are added or subtracted in combination with the functions succ or pred. It is possible to combine adjacent constant terms at compile time. This simplifies overflow checks. - The compiler has been improved to optionally generate programs, that trace function calls. This is activated with the option -tf. - Checks have been added to chkint.sd7, where several terms are added in combination with the functions succ or pred. - The functions wstati64Ext (in stat_win.c) and alternate_utime (in tim_win.c) have been improved to avoid the strange time adjustments of windows for Daylight Saving Time: For the same file different times are retrieved respectively set in summer and winter. Now the times do not depend on the time when they are retrieved or set. - In stat_win.c a check for wildcards in a path has been removed from wstati64Ext. - The performance of dirRead in dir_rtl.c has been improved by 10% (measured with gcc and valgrind). A smarter check for the directories . and .. reduces the CPU time used. - In cmd_rtl.c the functions remove_dir and copy_dir have been improved with a smarter check for the directories . and .. to reduce the CPU time used. - The function getSearchPath in cmd_rtl.c has been improved to work correctly, when there is no environment variable named PATH. - Definitions of macros to check the st_mode field of struct stat (e.g. S_ISDIR, S_ISREG, etc.) have been moved from fil_rtl.h to stat_drv.h. - The program chkccomp.c has been improved to work correct, when C compiler options are separated by linefeeds (\n). In this case the linefeeds are replaced by spaces. The linefeeds are used in cc_conf.s7i to allow the definition of SYSTEM_DB_LIBS as an array of database libraries. - In sudo.c the call of ShellExecute() has been replaced by a call of ShellExecuteA(). - A definition of FMT_T, a printf format for time_t values, has been added to common.h. - The makefile mk_clangw.mak has been improved to use the library extension ".lib". - Calls of logFunction and logError have been added or improved in cmd_rtl.c, cmd_win.c, gkb_win.c, flt_rtl.c, int_rtl.c, pcslib.c, reflib.c, rfllib.c, stat_win.c and tim_win.c. - In dir_rtl.c the function readVolumeName has been improved to consider only directories as volumes. - In int_rtl.c the functions uint_mult, uint2_mult and uint2_add have been renamed to uintMult, uint2Mult and uint2Add respectively. - In stat_win.c the functions filetime_to_unixtime and fileattr_to_unixmode have been renamed to fileTime2UnixTime and fileAttr2UnixMode respectively. - In tim_win.c the function alternate_utime has been improved to avoid calling os_utime_orig, because the utime functions of Windows do different time adjustments for the same time in summer and winter.
This commit is contained in:
parent
a694647dff
commit
0ceaa4516a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=430384
2 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= seed7
|
||||
DISTVERSION= 05_20161031
|
||||
DISTVERSION= 05_20161231
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/
|
||||
DISTNAME= ${PORTNAME}_${DISTVERSION}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1479903307
|
||||
SHA256 (seed7_05_20161031.tgz) = 6b338b26c689275a242cd97bf960152528dd6cf636cbd7f7a25df5b3f3b821b8
|
||||
SIZE (seed7_05_20161031.tgz) = 2672738
|
||||
TIMESTAMP = 1483374945
|
||||
SHA256 (seed7_05_20161231.tgz) = 7e2eef0ee40a68e8d94d812e1c65d33f11f180873611cb2fe53ca4ac65cb9346
|
||||
SIZE (seed7_05_20161231.tgz) = 2687625
|
||||
|
|
Loading…
Reference in a new issue