diff options
author | sobomax <sobomax@FreeBSD.org> | 2003-09-07 23:21:09 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2003-09-07 23:21:09 +0800 |
commit | 9a7823afeaf1144ee4ae6bfae8659a30d29fd2ab (patch) | |
tree | 9056bcb67d4f78d1006251f6aa66ece01ca5be68 /databases | |
parent | 980ae151e8e4b35a2868b521895503709526d673 (diff) | |
download | freebsd-ports-gnome-9a7823afeaf1144ee4ae6bfae8659a30d29fd2ab.tar.gz freebsd-ports-gnome-9a7823afeaf1144ee4ae6bfae8659a30d29fd2ab.tar.zst freebsd-ports-gnome-9a7823afeaf1144ee4ae6bfae8659a30d29fd2ab.zip |
- Make PORTVERSION to be compliant with the FreeBSD standards (remove
leading `v');
- increase buffer size, so that it's possible to store strings whose
size exceeds 4k;
- bump PORTREVISION.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/cyrus-imspd/Makefile | 4 | ||||
-rw-r--r-- | databases/cyrus-imspd/files/patch-imsp::dispatch.h | 14 |
2 files changed, 17 insertions, 1 deletions
diff --git a/databases/cyrus-imspd/Makefile b/databases/cyrus-imspd/Makefile index 6ae938564dd9..968fd1892afe 100644 --- a/databases/cyrus-imspd/Makefile +++ b/databases/cyrus-imspd/Makefile @@ -6,10 +6,12 @@ # PORTNAME= cyrus-imspd -PORTVERSION= v1.6a3 +PORTVERSION= 1.6a3 +PORTREVISION= 1 CATEGORIES= databases mail MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ \ ftp://ftp.hanse.de/sites/transit/mirror/ftp.andrew.cmu.edu/pub/cyrus-mail/ +DISTNAME= ${PORTNAME}-v${PORTVERSION} MAINTAINER= ports@freebsd.org COMMENT= The cyrus IMSP (Internet Message Support Protocol) server diff --git a/databases/cyrus-imspd/files/patch-imsp::dispatch.h b/databases/cyrus-imspd/files/patch-imsp::dispatch.h new file mode 100644 index 000000000000..69884c2f5674 --- /dev/null +++ b/databases/cyrus-imspd/files/patch-imsp::dispatch.h @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- imsp/dispatch.h 2003/04/03 13:38:05 1.1 ++++ imsp/dispatch.h 2003/04/03 13:38:26 +@@ -42,7 +42,7 @@ + * Start Date: 2/22/93 + */ + +-#define MAX_BUF 4096 ++#define MAX_BUF (4096 * 1024) + + #include <sasl.h> + |