428
|
1 ;;; check-features.el --- Do a sanity check on an XEmacs build
|
|
2
|
|
3 ;; Copyright (C) 1998 by Free Software Foundation, Inc.
|
793
|
4 ;; Copyright (C) 2002 Ben Wing.
|
428
|
5
|
|
6 ;; Author: SL Baur <steve@xemacs.org>
|
|
7 ;; Keywords: internal
|
|
8
|
|
9 ;; This file is part of XEmacs.
|
|
10
|
|
11 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
12 ;; under the terms of the GNU General Public License as published by
|
|
13 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
14 ;; any later version.
|
|
15
|
|
16 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
19 ;; General Public License for more details.
|
|
20
|
|
21 ;; You should have received a copy of the GNU General Public License
|
|
22 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
|
23 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
24 ;; 02111-1307, USA.
|
|
25
|
|
26 ;;; Synched up with: Not in FSF
|
|
27
|
|
28 ;;; Commentary:
|
|
29
|
|
30 ;; This file is executed after a build to check that all lisp packages that
|
|
31 ;; need to be installed are.
|
|
32
|
|
33 ;;; Code:
|
|
34
|
|
35 (require 'packages)
|
|
36
|
|
37 (defvar build-error 0)
|
|
38
|
|
39 (when (featurep 'tooltalk)
|
|
40 (condition-case nil
|
|
41 (package-require 'tooltalk 1.0)
|
|
42 (t (progn
|
|
43 ;; (setq build-error 1)
|
793
|
44 (lwarn 'tooltalk 'alert
|
|
45 "Warning: This XEmacs is built with tooltalk support but
|
|
46 does not have a tooltalk package installed. Without the
|
|
47 tooltalk lisp package, Tooltalk support is broken.")))))
|
428
|
48
|
|
49 (when (featurep 'sparcworks)
|
|
50 (condition-case nil
|
|
51 (package-require 'Sun 1.0)
|
|
52 (t (progn
|
|
53 ;; (setq build-error 1)
|
793
|
54 (lwarn 'sparcworks 'alert
|
|
55 "Warning: This XEmacs is built with sparcworks support but
|
|
56 does not have the Sun package installed. Without the Sun
|
|
57 lisp package, Sparcworks support will be broken.")))))
|
428
|
58
|
|
59 (kill-emacs build-error)
|
|
60
|
|
61 ;;; check-features.el ends here
|