X-Git-Url: http://cgit.sxemacs.org/?a=blobdiff_plain;ds=sidebyside;f=lisp%2Fdgnushack.el;h=796707e690249442fbcdb015358cd3443471cc26;hb=56e34087ca79c282abfa0b2ed9f0ab97ba602046;hp=1033470ad6c4c813862579aea4796a66e2bbeef1;hpb=c7fa8339b8d5029600d31b7fb357766d320355f5;p=gnus diff --git a/lisp/dgnushack.el b/lisp/dgnushack.el index 1033470ad..796707e69 100644 --- a/lisp/dgnushack.el +++ b/lisp/dgnushack.el @@ -27,18 +27,21 @@ ;;; Code: -(fset 'facep 'ignore) +(defalias 'facep 'ignore) (require 'cl) (defvar srcdir (or (getenv "srcdir") ".")) -(push (or (getenv "lispdir") +(push (or (getenv "lispdir") "/usr/share/emacs/site-lisp") load-path) -(push (or (getenv "W3DIR") (expand-file-name "../../w3/lisp/" srcdir)) + +(push (or (getenv "W3DIR") (expand-file-name "../../w3/lisp/" srcdir)) load-path) +(push "/usr/share/emacs/site-lisp" load-path) + (unless (featurep 'xemacs) (define-compiler-macro last (&whole form x &optional n) (if (and (fboundp 'last) @@ -84,7 +87,6 @@ (require 'bytecomp) (push srcdir load-path) -;(push "/usr/share/emacs/site-lisp" load-path) (load (expand-file-name "lpath.el" srcdir) nil t) (defalias 'device-sound-enabled-p 'ignore) @@ -95,11 +97,11 @@ (defalias 'define-mail-user-agent 'ignore) (eval-and-compile - (unless (string-match "XEmacs" emacs-version) - (fset 'get-popup-menu-response 'ignore) - (fset 'event-object 'ignore) - (fset 'x-defined-colors 'ignore) - (fset 'read-color 'ignore))) + (unless (featurep 'xemacs) + (defalias 'get-popup-menu-response 'ignore) + (defalias 'event-object 'ignore) + (defalias 'x-defined-colors 'ignore) + (defalias 'read-color 'ignore))) (defun dgnushack-compile (&optional warn) ;;(setq byte-compile-dynamic t) @@ -115,31 +117,48 @@ You also then need to add the following to the lisp/dgnushack.el file: Modify to suit your needs.")) (let ((files (directory-files srcdir nil "^[^=].*\\.el$")) - (xemacs (string-match "XEmacs" emacs-version)) ;;(byte-compile-generate-call-tree t) file elc) - (condition-case () - (require 'w3-forms) + ;; Avoid barfing (from gnus-xmas) because the etc directory is not yet + ;; installed. + (when (featurep 'xemacs) + (setq gnus-xmas-glyph-directory "dummy")) + (dolist (file '("dgnushack.el" "lpath.el")) + (setq files (delete file files))) + (when (featurep 'base64) + (setq files (delete "base64.el" files))) + (condition-case code + (require 'w3-forms) (error + (message "No w3: %s %s" code (locate-library "w3-forms")) (dolist (file '("nnweb.el" "nnlistserv.el" "nnultimate.el" - "nnslashdot.el" "nnwarchive.el" "webmail.el")) + "nnslashdot.el" "nnwarchive.el" "webmail.el" + "nnwfm.el")) (setq files (delete file files))))) + (dolist (file + (if (featurep 'xemacs) + '("md5.el" "smiley-ems.el") + '("gnus-xmas.el" "gnus-picon.el" "messagexmas.el" + "nnheaderxm.el" "smiley.el"))) + (setq files (delete file files))) + + (dolist (file files) + (setq file (expand-file-name file srcdir)) + (when (and (file-exists-p + (setq elc (concat (file-name-nondirectory file) "c"))) + (file-newer-than-file-p file elc)) + (delete-file elc))) + (while (setq file (pop files)) (setq file (expand-file-name file srcdir)) - (when (or (and (not xemacs) - (not (member (file-name-nondirectory file) - '("gnus-xmas.el" "gnus-picon.el" - "messagexmas.el" "nnheaderxm.el")))) - (and xemacs - (not (member file '("md5.el"))))) - (when (or (not (file-exists-p (setq elc (concat file "c")))) - (file-newer-than-file-p file elc)) - (ignore-errors - (byte-compile-file file))))))) + (when (or (not (file-exists-p + (setq elc (concat (file-name-nondirectory file) "c")))) + (file-newer-than-file-p file elc)) + (ignore-errors + (byte-compile-file file)))))) (defun dgnushack-recompile () (require 'gnus) (byte-recompile-directory "." 0)) ;;; dgnushack.el ends here -