(What's EMH?): Modify for the new URLs of APEL, FLIM and SEMI.
[elisp/emh.git] / EMH-CFG
diff --git a/EMH-CFG b/EMH-CFG
index c468fd4..461b704 100644 (file)
--- a/EMH-CFG
+++ b/EMH-CFG
@@ -1,33 +1,38 @@
 ;;; -*-Emacs-Lisp-*-
-;;;
-;;; $Id: EMH-CFG,v 0.1 1997-05-15 06:45:43 morioka Exp $
-;;;
 
-(defvar default-load-path load-path)
+;; EMH-CFG: installation setting about EMH.
 
-;; (setq load-path (nconc
-;;                  (mapcar (function
-;;                           (lambda (path)
-;;                             (expand-file-name path default-directory)
-;;                             ))
-;;                          '("." "../semi"
-;;                            "../emu" "../apel" "../mu" "../mel")
-;;                          )
-;;                  load-path))
+;;; Code:
+
+(defvar default-load-path load-path)
 
 (add-to-list 'load-path
             (expand-file-name "../../site-lisp/apel" data-directory))
+(add-to-list 'load-path
+            (expand-file-name "." data-directory))
+
+(if (boundp 'LISPDIR)
+    (progn
+      (add-to-list 'default-load-path LISPDIR)
+      (add-to-list 'load-path LISPDIR)
+      (add-to-list 'load-path (expand-file-name "apel" LISPDIR))
+      ))
+
+(defvar VERSION_SPECIFIC_LISPDIR nil)
 
-(when (boundp 'LISPDIR)
-  (add-to-list 'default-load-path LISPDIR)
-  (add-to-list 'load-path LISPDIR)
-  (add-to-list 'load-path (expand-file-name "apel" LISPDIR))
-  )
+(if VERSION_SPECIFIC_LISPDIR
+    (add-to-list 'load-path VERSION_SPECIFIC_LISPDIR))
 
-(require 'install)
+(condition-case nil
+    (require 'install)
+  (error (error "Please install APEL 8.2 or later.")))
 
+(add-latest-path "custom")
+(add-path "flim")
 (add-path "semi")
 
+(add-to-list 'load-path (expand-file-name "."))
+
 
 ;;; @ Please specify prefix of install directory.
 ;;;
 (defvar PREFIX install-prefix)
 ;;(setq PREFIX "~/")
 
+(defvar PACKAGEDIR
+  (if (boundp 'early-packages)
+      (let ((dirs (append (if early-package-load-path
+                             early-packages)
+                         (if late-package-load-path
+                             late-packages)
+                         (if last-package-load-path
+                             last-packages)))
+           dir)
+       (while (not (file-exists-p
+                    (setq dir (car dirs))))
+         (setq dirs (cdr dirs)))
+       dir)))
+
 ;; Please specify prefix for ``emh'' [optional]
-(setq EMH_PREFIX "semi")
+(setq EMH_PREFIX
+      (if PACKAGEDIR
+         "emh"
+       "semi"))
 
 \f