diff options
author | knu <knu@FreeBSD.org> | 2000-09-25 05:48:04 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2000-09-25 05:48:04 +0800 |
commit | 870a19c04fc36781d4fe1f318c5100fb6b28e643 (patch) | |
tree | 092c99c487c36ec66cfee5c92c62ac534f931abc /converters/iconv-extra | |
parent | 670cc07b90a46b1cf72f058b6a8c39fa15783b56 (diff) | |
download | freebsd-ports-gnome-870a19c04fc36781d4fe1f318c5100fb6b28e643.tar.gz freebsd-ports-gnome-870a19c04fc36781d4fe1f318c5100fb6b28e643.tar.zst freebsd-ports-gnome-870a19c04fc36781d4fe1f318c5100fb6b28e643.zip |
Update iconv POSIX-compliant charset conversion library to 1.1.
Fixed problems:
- All the modules are linked against libiconv. iconv() now can be
called from other shared libraries (it could only be called from
executables in iconv-1.0);
- Case insensitive recognition of charset names. There was a bug in
1.0: the first letter of a charset name was case sensitive;
- Modified behaviour of iconv() used with (inbytesleft == NULL) or
(*inbytesleft = 0): now iconv silently returns 0; in 1.0 it
returned (size_t)(-1) and set errno=EINVAL. According to POSIX
specification both ways are correct; the new behaviour is just
less restrictive.
PR: ports/21521, ports/21522, ports/21523
Submitted by: Konstantin.Chuguev@dante.org.uk (MAINTAINER)
(Problems reported by: knu)
Diffstat (limited to 'converters/iconv-extra')
-rw-r--r-- | converters/iconv-extra/Makefile | 2 | ||||
-rw-r--r-- | converters/iconv-extra/distinfo | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/converters/iconv-extra/Makefile b/converters/iconv-extra/Makefile index b407b816e88a..642fc616ed08 100644 --- a/converters/iconv-extra/Makefile +++ b/converters/iconv-extra/Makefile @@ -6,7 +6,7 @@ # PORTNAME= iconv-extra -PORTVERSION= 1.0 +PORTVERSION= 1.1 CATEGORIES= converters MASTER_SITES= http://www.dante.net/staff/konstantin/FreeBSD/iconv/ diff --git a/converters/iconv-extra/distinfo b/converters/iconv-extra/distinfo index 45cfc7941b09..3c53ec4dfc24 100644 --- a/converters/iconv-extra/distinfo +++ b/converters/iconv-extra/distinfo @@ -1 +1 @@ -MD5 (iconv-extra-1.0.tar.gz) = e87ff2aa14834c2390f00cb6fa83fb00 +MD5 (iconv-extra-1.1.tar.gz) = 279085a5619b43a4d62e7097d193d240 |