diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2004-07-23 08:03:47 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2004-07-23 08:03:47 +0000 |
commit | 54bdb5ad2980b804a536da6ba613ebdbf898aed1 (patch) | |
tree | 7f8868a649de1f8c9de57114a549d836e2b5299b /comms | |
parent | 0f46385394b850aaa63592e0884cf3555f05ad4a (diff) | |
download | ports-54bdb5ad2980b804a536da6ba613ebdbf898aed1.tar.gz ports-54bdb5ad2980b804a536da6ba613ebdbf898aed1.zip |
Notes
Diffstat (limited to 'comms')
-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 ccf6065af909..7f9c44ecc746 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 8a1b304ce2eb..e2ae8dcaec80 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 b87d48f9e0d5..000000000000 --- 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 000000000000..02e40fefdd9a --- /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** |