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:
parent
0f46385394
commit
54bdb5ad29
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=114477
@ -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
|
||||
|
@ -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
|
||||
|
@ -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)
|
18
comms/scmxx/files/patch-src_charsets_ucs4__dec.c
Normal file
18
comms/scmxx/files/patch-src_charsets_ucs4__dec.c
Normal 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**
|
Loading…
Reference in New Issue
Block a user