1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

upgrade to 3.12

Submitted by:  Ollivier Robert <roberto@keltia.freenix.fr>
This commit is contained in:
Andrey A. Chernov 1999-03-07 18:02:17 +00:00
parent de90cbd2f7
commit 26b15f9517
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=17039
4 changed files with 13 additions and 38 deletions

View File

@ -1,15 +1,16 @@
# New ports collection makefile for: procmail
# Version required: 3.11pre7
# Version required: 3.12
# Date created: 24 September 1994
# Whom: adam
#
# $Id: Makefile,v 1.23 1997/03/06 04:31:07 asami Exp $
# $Id: Makefile,v 1.24 1997/05/14 14:40:34 ache Exp $
#
DISTNAME= procmail-3.11pre7
PKGNAME= procmail-3.11p7
DISTNAME= procmail-3.12
PKGNAME= procmail-3.12
CATEGORIES= mail
MASTER_SITES= ftp://ftp.informatik.rwth-aachen.de/pub/packages/procmail/
MASTER_SITES= ftp://ftp.procmail.org/pub/procmail/ \
ftp://ftp.informatik.rwth-aachen.de/pub/packages/procmail/
INSTALL_TARGET= install-suid install.man
MAINTAINER= ache@FreeBSD.ORG

View File

@ -1 +1 @@
MD5 (procmail-3.11pre7.tar.gz) = 065a9da6a2198d9c6d47616b2adf2315
MD5 (procmail-3.12.tar.gz) = b6e78ec16bd100a6d38458bd0818a7ad

View File

@ -1,32 +0,0 @@
*** src/pipes.c.bak Mon Apr 28 04:27:47 1997
--- src/pipes.c Sat May 16 03:22:43 1998
***************
*** 234,239 ****
--- 234,240 ----
char*readdyn(bf,filled)char*bf;long*const filled;
{ int i;long oldsize;
+ long fetched = *filled;
oldsize= *filled;
goto jumpin;
do
***************
*** 243,249 ****
if((size_t)*filled>=(size_t)(*filled+BLKSIZ))
lcking|=lck_MEMORY,nomemerr();
#endif
! bf=realloc(bf,*filled+BLKSIZ); /* dynamically adjust the buffer size */
jumpback:;
}
while(0<(i=rread(STDIN,bf+*filled,BLKSIZ))); /* read mail */
--- 244,253 ----
if((size_t)*filled>=(size_t)(*filled+BLKSIZ))
lcking|=lck_MEMORY,nomemerr();
#endif
! if( fetched - *filled < BLKSIZ ) {
! fetched += 4194304;
! bf=realloc(bf,fetched); /* dynamically adjust the buffer size */
! }
jumpback:;
}
while(0<(i=rread(STDIN,bf+*filled,BLKSIZ))); /* read mail */

View File

@ -2,3 +2,9 @@ bin/procmail
bin/formail
bin/lockfile
bin/mailstat
man/man1/lockfile.1.gz
man/man1/formail.1.gz
man/man1/procmail.1.gz
man/man5/procmailex.5.gz
man/man5/procmailrc.5.gz
man/man5/procmailsc.5.gz