mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
f91cce3dfd
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)
23 lines
465 B
Makefile
23 lines
465 B
Makefile
# New ports collection makefile for: iconv
|
|
# Date created: 21 September 1999
|
|
# Whom: Konstantin Chuguev <Konstantin.Chuguev@dante.org.uk>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= iconv
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= converters
|
|
MASTER_SITES= http://www.dante.net/staff/konstantin/FreeBSD/iconv/
|
|
|
|
MAINTAINER= Konstantin.Chuguev@dante.org.uk
|
|
|
|
USE_PERL5= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MANCOMPRESSED= yes
|
|
MAN1= iconv.1
|
|
MAN3= iconv.3 iconv_open.3 iconv_close.3
|
|
|
|
.include <bsd.port.mk>
|