]> code.delx.au - gnu-emacs/blob - lisp/net/trampver.el
e58fe01ee32ad663e4909a28475dc9ed416a1687
[gnu-emacs] / lisp / net / trampver.el
1 ;;; trampver.el --- Transparent Remote Access, Multiple Protocol
2 ;;; lisp/trampver.el. Generated from trampver.el.in by configure.
3
4 ;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009,
5 ;; 2010, 2011 Free Software Foundation, Inc.
6
7 ;; Author: Kai Großjohann <kai.grossjohann@gmx.net>
8 ;; Keywords: comm, processes
9 ;; Package: tramp
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25
26 ;;; Code:
27
28 ;; In the Tramp CVS repository, the version number and the bug report
29 ;; address are auto-frobbed from configure.ac, so you should edit that
30 ;; file and run "autoconf && ./configure" to change them. (X)Emacs
31 ;; version check is defined in macro AC_EMACS_INFO of aclocal.m4;
32 ;; should be changed only there.
33
34 ;;;###tramp-autoload
35 (defconst tramp-version "2.2.1-pre"
36 "This version of Tramp.")
37
38 ;;;###tramp-autoload
39 (defconst tramp-bug-report-address "tramp-devel@gnu.org"
40 "Email address to send bug reports to.")
41
42 ;; Check for (X)Emacs version.
43 (let ((x (if (or (>= emacs-major-version 22)
44 (and (featurep 'xemacs)
45 (= emacs-major-version 21)
46 (>= emacs-minor-version 4)))
47 "ok"
48 (format "Tramp 2.2.1-pre is not fit for %s"
49 (when (string-match "^.*$" (emacs-version))
50 (match-string 0 (emacs-version)))))))
51 (unless (string-match "\\`ok\\'" x) (error "%s" x)))
52
53 (add-hook 'tramp-unload-hook
54 (lambda ()
55 (unload-feature 'trampver 'force)))
56
57 (provide 'trampver)
58
59 ;;; trampver.el ends here
60
61 ;; Local Variables:
62 ;; mode: Emacs-Lisp
63 ;; coding: utf-8
64 ;; End: