1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00

Update to 0.7.2

PR:		69443
Submitted by:	Janos Mohacsi <janos.mohacsi@bsd.hu>
This commit is contained in:
Tilman Keskinoz 2004-07-23 08:03:47 +00:00
parent 0f46385394
commit 54bdb5ad29
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=114477
4 changed files with 21 additions and 18 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= scmxx
PORTVERSION= 0.7.1
PORTVERSION= 0.7.2
CATEGORIES= comms
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= scmxx

View File

@ -1,2 +1,2 @@
MD5 (scmxx-0.7.1.tar.bz2) = e2147adbeeeeea806c6cc30a7b35c099
SIZE (scmxx-0.7.1.tar.bz2) = 92605
MD5 (scmxx-0.7.2.tar.bz2) = a3b7fe5c95a70997d24d3a2798f86b45
SIZE (scmxx-0.7.2.tar.bz2) = 100818

View File

@ -1,15 +0,0 @@
--- src/unicode.c.orig Wed Feb 25 16:44:19 2004
+++ src/unicode.c Wed Apr 21 00:00:39 2004
@@ -36,6 +36,12 @@
# define INTERNAL_CHARSET "UCS-4LE"
#endif
+#include <sys/param.h>
+#if __FreeBSD_version < 500000
+#include <limits.h>
+#define UINT16_MAX USHRT_MAX
+#endif
+
ucs4char_t* convert_to_internal (char* from_code,
char* input,
size_t insize)

View File

@ -0,0 +1,18 @@
$FreeBSD$
--- src/charsets/ucs4_dec.c.orig Thu Jul 22 18:16:40 2004
+++ src/charsets/ucs4_dec.c Thu Jul 22 18:20:04 2004
@@ -19,6 +19,12 @@
#include <errno.h>
#include <iconv.h>
+#include <sys/param.h>
+#if __FreeBSD_version < 500000
+#include <limits.h>
+#define UINT16_MAX USHRT_MAX
+#endif
+
#include <config.h>
#ifndef ICONV_CAST
# define ICONV_CAST char**