diff options
author | gahr <gahr@FreeBSD.org> | 2016-04-08 17:16:10 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2016-04-08 17:16:10 +0800 |
commit | e53315cb0275f8038ae2bb1664f885f29cc57342 (patch) | |
tree | 62e4180bd862390f6f7c867d7576754e864af24a /lang/seed7 | |
parent | a1bbf7da3c76bcf272da9b06065b72ce1e300344 (diff) | |
download | freebsd-ports-gnome-e53315cb0275f8038ae2bb1664f885f29cc57342.tar.gz freebsd-ports-gnome-e53315cb0275f8038ae2bb1664f885f29cc57342.tar.zst freebsd-ports-gnome-e53315cb0275f8038ae2bb1664f885f29cc57342.zip |
lang/seed7: update to 05_20160330
Changes:
- The makefile mk_clangw.mak has been added. This makefile supports
compilation under Windows with the clang compiler.
- The experimental function parentDir has been added to osfiles.s7i.
- The experimental function getServerCertificate has been added to
tls.s7i.
- The compiler (s7c) has been improved to use the function
strAppendN, when two or more strings are appended to a string.
- Tests for string append (operator &:= ) have been added to
chkstr.sd7.
- The function strAppendN has been added to str_rtl.c.
- The function strCopy in str_rtl.c has been simplified.
- The program chkccomp.c has been improved to write a definition of
CHAR_BIT, when it is not defined in limits.h.
- Several files have been changed to use CHAR_BIT instead of the
literal 8.
- in chkccomp.c several string literals have been changed to wide
string literals (e.g. L"abc" instead of "abc").
- In several files integer literals have been replaced by contants or
#define macros.
- The function __mulodi4 has been added to int_rtl.c. This function
is used by clang under Windows, but unfortunately is not part of the
runtime library. This situation is recognized by chkccomp.c and the
function __mulodi4 in int_rtl.c is used instead.
Diffstat (limited to 'lang/seed7')
-rw-r--r-- | lang/seed7/Makefile | 2 | ||||
-rw-r--r-- | lang/seed7/distinfo | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lang/seed7/Makefile b/lang/seed7/Makefile index 899a003aef04..d0fa8b59abb8 100644 --- a/lang/seed7/Makefile +++ b/lang/seed7/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= seed7 -DISTVERSION= 05_20160229 +DISTVERSION= 05_20160330 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} diff --git a/lang/seed7/distinfo b/lang/seed7/distinfo index 1dd93db30bb9..a895cde31dd7 100644 --- a/lang/seed7/distinfo +++ b/lang/seed7/distinfo @@ -1,2 +1,2 @@ -SHA256 (seed7_05_20160229.tgz) = a6e78443ec25864fff236f40d0cceda3e398a8c6775a7c65e6873b98ba2be79a -SIZE (seed7_05_20160229.tgz) = 2592420 +SHA256 (seed7_05_20160330.tgz) = a06744405a4860730b33833f1d1df97ed96b82d5a86596a6f0396fb6c0f24c41 +SIZE (seed7_05_20160330.tgz) = 2601993 |