diff options
author | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2005-11-27 16:02:43 +0000 |
---|---|---|
committer | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2005-11-27 16:02:43 +0000 |
commit | 2ec1b74e75813a40d30c6f214d5284720b0d86c9 (patch) | |
tree | 76bf184ee7bb28eaad20a6d5d1f9b282d389825c /mail/wanderlust/files | |
parent | - Update to 2.0.7 (diff) |
- Fix build of wanderlust-xemacs21-mule with apel in xemacs-packages.
- Fix build of wanderlust-xemacs21-mule with WRKDIRPREFIX. [*]
Reported by: kris [*]
Diffstat (limited to '')
-rw-r--r-- | mail/wanderlust/files/extra-patch-WL-MK | 13 | ||||
-rw-r--r-- | mail/wanderlust/files/extra-patch-elmo:elmo-version.el | 22 |
2 files changed, 35 insertions, 0 deletions
diff --git a/mail/wanderlust/files/extra-patch-WL-MK b/mail/wanderlust/files/extra-patch-WL-MK new file mode 100644 index 000000000000..900a39e7ce4d --- /dev/null +++ b/mail/wanderlust/files/extra-patch-WL-MK @@ -0,0 +1,13 @@ +--- WL-MK.orig Sun Nov 27 22:32:36 2005 ++++ WL-MK Sun Nov 27 22:33:20 2005 +@@ -115,8 +115,8 @@ + (load "./WL-ELS" nil nil t) + ;; product.el version check + (require 'product) +- (if (not (fboundp 'product-version-as-string)) +- (error "Please install new APEL. See INSTALL or INSTALL.ja")) ++; (if (not (fboundp 'product-version-as-string)) ++; (error "Please install new APEL. See INSTALL or INSTALL.ja")) + ;; smtp.el version check. + (require 'smtp) + (if (not (fboundp 'smtp-send-buffer)) diff --git a/mail/wanderlust/files/extra-patch-elmo:elmo-version.el b/mail/wanderlust/files/extra-patch-elmo:elmo-version.el new file mode 100644 index 000000000000..11c8b6effda4 --- /dev/null +++ b/mail/wanderlust/files/extra-patch-elmo:elmo-version.el @@ -0,0 +1,22 @@ +--- elmo/elmo-version.el.orig Sun Nov 27 22:34:49 2005 ++++ elmo/elmo-version.el Sun Nov 27 22:41:22 2005 +@@ -42,6 +42,19 @@ + ;; Don't forget to check `wl-version.el' and Info. + (product-define "ELMO" nil '(2 14 0))) + ++(defun product-version-as-string (product) ++ "Return version number of product as a string. ++PRODUCT is a product structure which returned by `product-define'. ++If optional argument UPDATE is non-nil, then regenerate ++`produce-version-string' from `product-version'." ++ (setq product (product-find product)) ++ (or (product-version-string product) ++ (and (product-version product) ++ (product-set-version-string product ++ (mapconcat (function int-to-string) ++ (product-version product) ++ "."))))) ++ + ;; set version-string + (product-version-as-string 'elmo-version) + |