Synch with `t-gnus-6_14'.
[elisp/gnus.git-] / sample.lpath.el
1 ;; This is a sample of `~/.lpath.el' file.
2 ;;
3 ;; This file will be loaded from dgnushack.el at the compile time.  It
4 ;; is supposed to be used for telling old Emacsen where EMU, APEL or
5 ;; CUSTOM packages have already installed.
6 ;;
7 ;; For instance, if you would like to make gnus with Mule 2.3 based on
8 ;; Emacs 19.34, copy this file to `~/.lpath.el' and modify it suitably
9 ;; for your environment.
10
11 (when (boundp 'MULE)
12   (let ((EMU
13          ;; Where is EMU packege?
14          "/usr/local/share/mule/19.34/site-lisp"
15          )
16         (APEL
17          ;; Where is APEL package?
18          "/usr/local/share/mule/site-lisp/apel"
19          )
20         (CUSTOM
21          ;; Where is CUSTOM package?
22          "/usr/local/share/mule/site-lisp/custom"
23          ))
24     ;; No user servicable parts beyond this point.
25 \f
26     (when (string-match "/apel/?$" APEL)
27       (setq APEL (substring APEL 0 (match-beginning 0))))
28     (setq load-path (nconc (list EMU APEL CUSTOM) load-path))))