diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-06-05 13:45:08 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-06-05 13:45:08 +0000 |
commit | 9fe6ec35b86fbabaab4ddb4b6a6ce5128f010df4 (patch) | |
tree | 8e0c55534480e3690bebe8fa67185f3c619df671 /news/inn/Makefile | |
parent | Added libdlmalloc. (diff) |
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
Notes
Notes:
svn path=/head/; revision=1823
Diffstat (limited to 'news/inn/Makefile')
-rw-r--r-- | news/inn/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/news/inn/Makefile b/news/inn/Makefile index 98e3d0347efd..047e4e644957 100644 --- a/news/inn/Makefile +++ b/news/inn/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 \ |