diff options
author | jtb <jtb@pkgsrc.org> | 2001-06-27 19:45:29 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2001-06-27 19:45:29 +0000 |
commit | dcc77d71c43d4714dc5e4880dfc2e101f03feeee (patch) | |
tree | 91d07a702ddf78f618d1d449f39e41947c90d361 /mail/vm/Makefile | |
parent | 58ff4566af823e3f54f2a759846fb2c5a494abb2 (diff) | |
download | pkgsrc-dcc77d71c43d4714dc5e4880dfc2e101f03feeee.tar.gz |
Update to version 6.93. Changes:
* New variables:
+ vm-folder-file-precious-flag
* added CRAM-MD5 as an authentication method for IMAP.
* vm-su-do-date: interpret 2-digit years in the RFC-822 matching
case as 20XX if year starts with 0-6.
* vm-rfc1153-or-rfc934-burst-message: skip spaces in addition to
newlines that occur after a separator line. A digest has been
observed with that kind of deformity.
* treat enable-local-eval as we do enable-local-variables--- always
bind it to nil.
* vm: don't bind vm-auto-decode-mime-messages non-nil during
initial message preview if it is nil.
* vm-mime-display-internal-text/html: dropped (sleep-for 2). No one cares
enough about the "Need W3 to inline HTML" message to wait 2
seconds afterward.
* added menu entry to allow MIME objects to be converted to
another type and displayed. The new type is determined by
vm-mime-type-converter-alist.
* added koi8-r to vm-mime-mule-charset-to-coding-alist (XEmacs only).
* vm-pop-read-list-response: check for nil return of
vm-pop-read-response before using return value.
* vm-pop-read-stat-response: check for nil return of
vm-pop-read-response before using return value.
* vm-encode-coding-region: use unwind-protect to make sure (well
more likely) that the work buffer always gets killed if it has
been created.
* vm-decode-coding-region: use unwind-protect to make sure (well
more likely) that the work buffer always gets killed if it has
been created.
* vm-mime-convert-undisplayable-layout: put object buffer on
garbage list sooner to make rarer the situation where the
buffer never gets deleted.
* Makefile: remove function definition of vm-its-such-a-cruel-world
after it is run.
* vm-md5-region: if vm-pop-md5-program exits non-zero, signal an
error. Also if the work buffer is not at least 32 bytes long,
signal an error. This prevents naive callers from assumption all is well
and using a possibly empty string as an MD5 hash.
* vm-md5-region: check the MD5 digest returned for non-hex-digit
characters and signal an error if any are found.
* vm-get-file-buffer: use find-buffer-visiting if it is fbound.
* vm-build-threads: fixed loop that removed child messages from a
parent when better information about a child's parent is found.
Previously the loop attempted to remove the same message from
the parent over and over.
* vm-build-threads: gather thread data using References and
In-Reply-To for all messages before using the Subject header.
This helps prevent the case where References says A is the
parent of B but because of clock skew B is older than A, which
can lead to B being considered the parent of A if A and B have
the same subject and vm-thread-using-subject is non-nil.
Diffstat (limited to 'mail/vm/Makefile')
-rw-r--r-- | mail/vm/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/mail/vm/Makefile b/mail/vm/Makefile index 8490d7579bb..f67a93ba830 100644 --- a/mail/vm/Makefile +++ b/mail/vm/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2001/05/03 21:46:31 jtb Exp $ +# $NetBSD: Makefile,v 1.7 2001/06/27 19:45:29 jtb Exp $ -DISTNAME= vm-6.92 +DISTNAME= vm-6.93 CATEGORIES= mail MASTER_SITES= ftp://ftp.uni-mainz.de/pub/gnu/vm/ \ ftp://tug.org/vm/ \ @@ -17,18 +17,18 @@ COMMENT= VM (View Mail) is an advanced mail user agent for Emacs .if defined(USE_XEMACS) DEPENDS+= xemacs>=19.14:../../editors/xemacs MAKE_ENV+= EMACS=xemacs -MAKE_ENV+= LISPDIR="${PREFIX}/lib/xemacs/xemacs-packages/lisp/vm" -MAKE_ENV+= INFODIR="${PREFIX}/lib/xemacs/xemacs-packages/info" -MAKE_ENV+= PIXMAPDIR="${PREFIX}/lib/xemacs/xemacs-packages/etc/vm" -MAKE_ENV+= BINDIR="${PREFIX}/bin" +MAKE_ENV+= LISPDIR=${PREFIX}/lib/xemacs/xemacs-packages/lisp/vm +MAKE_ENV+= INFODIR="${PREFIX}/lib/xemacs/xemacs-packages/info +MAKE_ENV+= PIXMAPDIR=${PREFIX}/lib/xemacs/xemacs-packages/etc/vm +MAKE_ENV+= BINDIR=${PREFIX}/bin PLIST_SRC= ${PKGDIR}/PLIST.xemacs .else DEPENDS+= emacs>=19.34:../../editors/emacs MAKE_ENV+= EMACS=emacs -MAKE_ENV+= LISPDIR="${PREFIX}/share/emacs/site-lisp/vm" -MAKE_ENV+= INFODIR="${PREFIX}/info" -MAKE_ENV+= PIXMAPDIR="${PREFIX}/share/emacs/site-lisp/vm/pixmaps" -MAKE_ENV+= BINDIR="${PREFIX}/bin" +MAKE_ENV+= LISPDIR=${PREFIX}/share/emacs/site-lisp/vm +MAKE_ENV+= INFODIR=${PREFIX}/info +MAKE_ENV+= PIXMAPDIR=${PREFIX}/share/emacs/site-lisp/vm/pixmaps +MAKE_ENV+= BINDIR=${PREFIX}/bin INFO_FILES= vm.info PLIST_SRC= ${PKGDIR}/PLIST.emacs .endif |