diff options
author | arved <arved@FreeBSD.org> | 2004-07-23 08:03:47 +0000 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2004-07-23 08:03:47 +0000 |
commit | ea61a0e12a2b165198c52e271e016ec5d65fe211 (patch) | |
tree | b3f3371a9d8d4c5a1ea37640a872c5a39ec5fdc7 | |
parent | 2ba5f7b3e44b25f4515c6286842d3e843b8d9ba5 (diff) | |
download | FreeBSD-ports-ea61a0e12a2b165198c52e271e016ec5d65fe211.zip FreeBSD-ports-ea61a0e12a2b165198c52e271e016ec5d65fe211.tar.gz |
Update to 0.7.2
PR: 69443
Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu>
-rw-r--r-- | comms/scmxx/Makefile | 2 | ||||
-rw-r--r-- | comms/scmxx/distinfo | 4 | ||||
-rw-r--r-- | comms/scmxx/files/patch-src-unicode.c | 15 | ||||
-rw-r--r-- | comms/scmxx/files/patch-src_charsets_ucs4__dec.c | 18 |
4 files changed, 21 insertions, 18 deletions
diff --git a/comms/scmxx/Makefile b/comms/scmxx/Makefile index ccf6065..7f9c44e 100644 --- a/comms/scmxx/Makefile +++ b/comms/scmxx/Makefile @@ -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 diff --git a/comms/scmxx/distinfo b/comms/scmxx/distinfo index 8a1b304..e2ae8dc 100644 --- a/comms/scmxx/distinfo +++ b/comms/scmxx/distinfo @@ -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 diff --git a/comms/scmxx/files/patch-src-unicode.c b/comms/scmxx/files/patch-src-unicode.c deleted file mode 100644 index b87d48f..0000000 --- a/comms/scmxx/files/patch-src-unicode.c +++ /dev/null @@ -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) diff --git a/comms/scmxx/files/patch-src_charsets_ucs4__dec.c b/comms/scmxx/files/patch-src_charsets_ucs4__dec.c new file mode 100644 index 0000000..02e40fe --- /dev/null +++ b/comms/scmxx/files/patch-src_charsets_ucs4__dec.c @@ -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** |