diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2009-06-23 23:39:18 +0000 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2009-06-23 23:39:18 +0000 |
commit | 97e4c17bf0a22b3a9c44de44924b320a12f7f171 (patch) | |
tree | 88263ee5ed2d16f730d3001bc2a2b6bfef1506bb /mail/popd | |
parent | 918e8aad8aaabc389f0e8c96d7dffdf575244be1 (diff) | |
download | ports-97e4c17bf0a22b3a9c44de44924b320a12f7f171.tar.gz ports-97e4c17bf0a22b3a9c44de44924b320a12f7f171.zip |
Notes
Diffstat (limited to 'mail/popd')
-rw-r--r-- | mail/popd/Makefile | 2 | ||||
-rw-r--r-- | mail/popd/files/patch-lib__mbox_mbf.c | 30 | ||||
-rw-r--r-- | mail/popd/files/patch-lib__private.h | 12 | ||||
-rw-r--r-- | mail/popd/files/patch-src__config.h | 10 |
4 files changed, 53 insertions, 1 deletions
diff --git a/mail/popd/Makefile b/mail/popd/Makefile index 569997eaa8b8..516eeef5056c 100644 --- a/mail/popd/Makefile +++ b/mail/popd/Makefile @@ -7,7 +7,7 @@ PORTNAME= popd PORTVERSION= 2.2.2a -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= mail MASTER_SITES= ftp://ftp3.za.freebsd.org/pub/popd/ diff --git a/mail/popd/files/patch-lib__mbox_mbf.c b/mail/popd/files/patch-lib__mbox_mbf.c new file mode 100644 index 000000000000..4387691da88a --- /dev/null +++ b/mail/popd/files/patch-lib__mbox_mbf.c @@ -0,0 +1,30 @@ +--- ./lib/mbox_mbf.c.orig 2003-03-05 02:33:12.000000000 -0500 ++++ ./lib/mbox_mbf.c 2009-06-23 19:35:15.499808776 -0400 +@@ -151,7 +151,10 @@ + bytes -= len; + offset += len; + q[buffleft] = '\0'; +- p = strchr(buffer, '\n'); ++ if ((p = strchr(buffer, '\n')) == NULL) { ++ p = q + buffleft; ++ continue; ++ } + } + *p++ = '\0'; + if (*line == '\0') { +@@ -382,7 +385,14 @@ + len = read(mbox->fd, offset, buffleft); + bytes -= len; + offset[len] = '\0'; +- p = strchr(buffer, '\n'); ++ if ((p = strchr(buffer, '\n')) == NULL) { ++ p = offset + len; ++ if( (p - buffer) == 1 && buffer[0] == '.' ) ++ sendline(SEND_BUF, ".."); ++ else ++ sendline(SEND_BUF, "%s", buffer); ++ continue; ++ } + } + *p++ = '\0'; + if (line[0] == '.' && line[1] == '\0') { diff --git a/mail/popd/files/patch-lib__private.h b/mail/popd/files/patch-lib__private.h new file mode 100644 index 000000000000..e51952619a36 --- /dev/null +++ b/mail/popd/files/patch-lib__private.h @@ -0,0 +1,12 @@ +--- ./lib/private.h.orig 2001-10-10 05:48:11.000000000 -0400 ++++ ./lib/private.h 2009-06-23 19:35:15.499808776 -0400 +@@ -26,6 +26,9 @@ + * $Id: private.h,v 1.1 2001/10/10 09:48:11 ianf Exp $ + */ + ++#undef NULL ++#define NULL 0 ++ + #define TRUE 1 + #define FALSE 0 + #define MAXINCR 20 diff --git a/mail/popd/files/patch-src__config.h b/mail/popd/files/patch-src__config.h new file mode 100644 index 000000000000..d5addfaa55d5 --- /dev/null +++ b/mail/popd/files/patch-src__config.h @@ -0,0 +1,10 @@ +--- ./src/config.h.orig 2002-11-20 05:27:49.000000000 -0500 ++++ ./src/config.h 2009-06-23 19:35:15.500808903 -0400 +@@ -26,6 +26,7 @@ + * $Id: config.h,v 1.20 2002/11/20 10:27:49 ianf Exp $ + */ + ++#undef NULL + #define NULL 0 + #define TRUE 1 + #define FALSE 0 |