diff options
author | asami <asami@FreeBSD.org> | 1995-06-05 21:45:08 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-06-05 21:45:08 +0800 |
commit | f3c28a04e44a932440e1fea1f9a70efc5c7a7c60 (patch) | |
tree | d762d781280754393a1ad26aad73d6dea3683092 /news/inn-stable/Makefile | |
parent | 07e265cfddcd01f9f9a49d3ff044ceb7fbfcbf3d (diff) | |
download | freebsd-ports-gnome-f3c28a04e44a932440e1fea1f9a70efc5c7a7c60.tar.gz freebsd-ports-gnome-f3c28a04e44a932440e1fea1f9a70efc5c7a7c60.tar.zst freebsd-ports-gnome-f3c28a04e44a932440e1fea1f9a70efc5c7a7c60.zip |
Fix these bugs.
- The expiration processing fails when attempting to store a long message-id
in the new DBZ database. If left uncorrected, a disk full condition is
likely to occur.
- When innxmit (on the master) encounters a news article that is
cross-posted to LOTS of other newsgroups it segmentation faults.
Submitted by: torstenb
Diffstat (limited to 'news/inn-stable/Makefile')
-rw-r--r-- | news/inn-stable/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/news/inn-stable/Makefile b/news/inn-stable/Makefile index 98e3d0347efd..047e4e644957 100644 --- a/news/inn-stable/Makefile +++ b/news/inn-stable/Makefile @@ -3,7 +3,7 @@ # Date created: 20 Oct 1994 # Whom: torstenb # -# $Id: Makefile,v 1.6 1995/05/09 00:48:44 asami Exp $ +# $Id: Makefile,v 1.7 1995/05/30 09:56:20 asami Exp $ # DISTNAME= inn1.4sec @@ -13,16 +13,23 @@ MASTER_SITES= ftp://ftp.uu.net/networking/news/nntp/inn/ EXTRACT_SUFX= .tar.Z PATCH_SITES= ftp://ftp.math.psu.edu/pub/INN/patches/ -PATCHFILES= select-loop-bug.patch +PATCHFILES= select-loop-bug.patch innxmit-long-lines MAINTAINER= torstenb@FreeBSD.ORG NO_WRKSUBDIR= YES pre-install: - mkdir -p ${PREFIX}/news /var/spool/news/over.view + mkdir -p ${PREFIX}/news post-install: + if [ -d /var/spool/news ] && [ ! -d /var/news ]; then \ + mkdir -m 0775 -p /var/spool/news/over.view; \ + chown news.news /var/spool/news/over.view; \ + else \ + mkdir -m 0775 -p /var/news/over.view; \ + chown news.news /var/news/over.view; \ + fi gzip -9nf ${PREFIX}/man/man1/convdate.1 ${PREFIX}/man/man1/getlist.1 \ ${PREFIX}/man/man1/grephistory.1 ${PREFIX}/man/man1/inews.1 \ ${PREFIX}/man/man1/innconfval.1 ${PREFIX}/man/man1/installit.1 \ |