Sync up with 2.4.1.
[elisp/wanderlust.git] / elmo / elmo-version.el
1 ;;; elmo-version.el -- Version information for ELMO.
2
3 ;; Copyright (C) 2000 Yuuichi Teranishi <teranisi@gohome.org>
4 ;; Copyright (C) 2000 TAKAHASHI Kaoru <kaoru@kaisei.org>
5
6 ;; Author: Yuuichi Teranishi <teranisi@gohome.org>
7 ;;      TAKAHASHI Kaoru <kaoru@kaisei.org>
8 ;; Keywords: mail, net news
9
10 ;; This file is part of ELMO (Elisp Library for Message Orchestration).
11
12 ;; This program is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16 ;;
17 ;; This program is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21 ;;
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26 ;;
27
28 ;;; Commentary:
29 ;; 
30 ;; Put the following lines to each file of ELMO package.
31 ;;
32 ;; (require 'product)
33 ;; (product-provide (provide FEATURE) (require 'elmo-version))
34
35 ;;; Code:
36 ;; 
37 (require 'product)
38 (provide 'elmo-version)                 ; before product-provide
39
40 ;; product-define in the first place
41 (product-provide 'elmo-version
42   (product-define "ELMO" nil '(2 5 7)))
43
44 ;; For APEL 10.2 or earlier.
45 (defun-maybe product-version-as-string (product)
46   "Return version number of product as a string.
47 PRODUCT is a product structure which returned by `product-define'.
48 If optional argument UPDATE is non-nil, then regenerate
49 `produce-version-string' from `product-version'."
50   (setq product (product-find product))
51   (or (product-version-string product)
52       (and (product-version product)
53            (product-set-version-string product
54                                        (mapconcat (function int-to-string)
55                                                   (product-version product)
56                                                   ".")))))
57
58 ;; set version-string
59 (product-version-as-string 'elmo-version)
60
61 (defun elmo-version ()
62   "Return ELMO version."
63   (product-string-1 'elmo-version))
64
65
66 ;; for backward compatibility
67 (defconst elmo-appname (product-name (product-find 'elmo-version)))
68 (make-obsolete-variable
69  'elmo-appname
70  "use (product-name (product-find 'elmo-version)) insteaed.")
71
72 (defconst elmo-version (product-version-string (product-find 'elmo-version)))
73 (make-obsolete-variable
74  'elmo-version
75  "use (product-version-string (product-find 'elmo-version)) instead.")
76
77 ;;; elmo-version.el ends here