(when (and (fboundp 'md5) (subrp (symbol-function 'md5)))
'("md5.el"))
(unless (boundp 'MULE)
- '("canlock-om.el")))
+ '("canlock-om.el"))
+ (when (featurep 'xemacs)
+ '("gnus-load.el")))
"Files which will not be installed.")
(defconst dgnushack-exporting-files
(princ (mapconcat 'identity dgnushack-exporting-files " ")))
(defconst dgnushack-dont-compile-files
- '("mm-bodies.el" "mm-decode.el" "mm-encode.el" "mm-extern.el"
+ '("gnus-load.el"
+ "mm-bodies.el" "mm-decode.el" "mm-encode.el" "mm-extern.el"
"mm-partial.el" "mm-url.el" "mm-uu.el" "mm-view.el" "mml-sec.el"
"mml-smime.el" "mml.el" "mml1991.el" "mml2015.el")
"Files which should not be byte-compiled.")
(require 'gnus)
(byte-recompile-directory "." 0))
-(defvar dgnushack-gnus-load-file (expand-file-name "gnus-load.el" srcdir))
-(defvar dgnushack-cus-load-file (expand-file-name "cus-load.el" srcdir))
-(defvar dgnushack-auto-load-file (expand-file-name "auto-autoloads.el" srcdir))
+(defvar dgnushack-gnus-load-file
+ (if (featurep 'xemacs)
+ (expand-file-name "auto-autoloads.el" srcdir)
+ (expand-file-name "gnus-load.el" srcdir)))
+
+(defvar dgnushack-cus-load-file
+ (if (featurep 'xemacs)
+ (expand-file-name "custom-load.el" srcdir)
+ (expand-file-name "cus-load.el" srcdir)))
(defun dgnushack-make-cus-load ()
(when (condition-case nil
(let ((cusload-base-file dgnushack-cus-load-file))
(if (fboundp 'custom-make-dependencies)
(custom-make-dependencies)
- (Custom-make-dependencies)))))
+ (Custom-make-dependencies))
+ (when (featurep 'xemacs)
+ (message "Compiling %s..." dgnushack-cus-load-file)
+ (byte-compile-file dgnushack-cus-load-file)))))
(defun dgnushack-make-auto-load ()
(require 'autoload)
(make-backup-files nil)
(autoload-package-name "gnus"))
(if (featurep 'xemacs)
- (progn
- (if (file-exists-p generated-autoload-file)
- (delete-file generated-autoload-file))
- (if (file-exists-p dgnushack-auto-load-file)
- (delete-file dgnushack-auto-load-file)))
+ (if (file-exists-p generated-autoload-file)
+ (delete-file generated-autoload-file))
(with-temp-file generated-autoload-file
(insert ?\014)))
(if (featurep 'xemacs)
(batch-update-autoloads))))
(defun dgnushack-make-load ()
- (message "Generating %s..." dgnushack-gnus-load-file)
- (with-temp-file dgnushack-gnus-load-file
- (if (file-exists-p dgnushack-cus-load-file)
- (progn
- (insert-file-contents dgnushack-cus-load-file)
- (delete-file dgnushack-cus-load-file)
- (goto-char (point-min))
- (search-forward ";;; Code:")
- (forward-line)
- (delete-region (point-min) (point))
- (unless (re-search-forward "\
-^[\t ]*(autoload[\t\n ]+\\('\\|(quote[\t\n ]+\\)custom-add-loads[\t\n ]"
- nil t)
- (insert "\n(autoload 'custom-add-loads \"cus-load\")\n"))
- (goto-char (point-min))
- (insert "\
+ (unless (featurep 'xemacs)
+ (message "Generating %s..." dgnushack-gnus-load-file)
+ (with-temp-file dgnushack-gnus-load-file
+ (insert-file-contents dgnushack-cus-load-file)
+ (delete-file dgnushack-cus-load-file)
+ (goto-char (point-min))
+ (search-forward ";;; Code:")
+ (forward-line)
+ (delete-region (point-min) (point))
+ (insert "\
;;; gnus-load.el --- automatically extracted custom dependencies and autoload
;;
;;; Code:
")
- (goto-char (point-max))
- (if (search-backward "custom-versions-load-alist" nil t)
- (forward-line -1)
- (forward-line -1)
- (while (eq (char-after) ?\;)
- (forward-line -1))
- (forward-line))
- (delete-region (point) (point-max))
- (insert "\n"))
+ (goto-char (point-max))
+ (if (search-backward "custom-versions-load-alist" nil t)
+ (forward-line -1)
+ (forward-line -1)
+ (while (eq (char-after) ?\;)
+ (forward-line -1))
+ (forward-line))
+ (delete-region (point) (point-max))
+ (insert "\n")
+ ;; smiley-* are duplicated. Remove them all.
+ (let ((point (point)))
+ (insert-file-contents dgnushack-gnus-load-file)
+ (goto-char point)
+ (while (search-forward "smiley-" nil t)
+ (beginning-of-line)
+ (if (looking-at "(autoload ")
+ (delete-region (point) (progn (forward-sexp) (point)))
+ (forward-line))))
+ ;;
+ (goto-char (point-max))
+ (when (search-backward "\n(provide " nil t)
+ (forward-line -1)
+ (delete-region (point) (point-max)))
(insert "\
-;;; gnus-load.el --- automatically extracted autoload
-;;
-;;; Code:
-"))
- ;; smiley-* are duplicated. Remove them all.
- (let ((point (point)))
- (insert-file-contents dgnushack-gnus-load-file)
- (goto-char point)
- (while (search-forward "smiley-" nil t)
- (beginning-of-line)
- (if (looking-at "(autoload ")
- (delete-region (point) (progn (forward-sexp) (point)))
- (forward-line))))
- ;;
- (goto-char (point-max))
- (when (search-backward "\n(provide " nil t)
- (forward-line -1)
- (delete-region (point) (point-max)))
- (insert "\
\(provide 'gnus-load)
;;; End:
;;; gnus-load.el ends here
")
- ;; Workaround the bug in some version of XEmacs.
- (when (featurep 'xemacs)
- (condition-case nil
- (require 'cus-load)
- (error nil))
- (goto-char (point-min))
- (when (and (fboundp 'custom-add-loads)
- (not (search-forward "\n(autoload 'custom-add-loads " nil t)))
- (search-forward "\n;;; Code:" nil t)
- (forward-line 1)
- (insert "\n(autoload 'custom-add-loads \"cus-load\")\n"))))
+ ))
(message "Compiling %s..." dgnushack-gnus-load-file)
- (byte-compile-file dgnushack-gnus-load-file))
-
-\f
-(defun dgnushack-compose-package ()
- "Re-split the file gnus-load.el into custom-load.el and
-auto-autoloads.el. It is silly, should be improved!"
- (message "
-Re-splitting gnus-load.el into custom-load.el and auto-autoloads.el...")
- (let ((customload (expand-file-name "custom-load.el" srcdir))
- (autoloads (expand-file-name "auto-autoloads.el" srcdir))
- start)
- (with-temp-buffer
- (insert-file-contents dgnushack-gnus-load-file)
- (delete-file dgnushack-gnus-load-file)
- (when (file-exists-p (concat dgnushack-gnus-load-file "c"))
- (delete-file (concat dgnushack-gnus-load-file "c")))
- (while (prog1
- (looking-at "[\t ;]")
- (forward-line 1)))
- (setq start (point))
+ (byte-compile-file dgnushack-gnus-load-file)
+ (when (featurep 'xemacs)
+ (message "Creating dummy gnus-load.el...")
+ (with-temp-file (expand-file-name "gnus-load.el")
(insert "\
-;;; custom-load.el --- automatically extracted custom dependencies\n
-;;; Code:\n\n")
- (goto-char (point-max))
- (while (progn
- (forward-line -1)
- (not (looking-at "[\t ]*(custom-add-loads[\t\n ]"))))
- (forward-list 1)
- (forward-line 1)
- (insert "\n;;; custom-load.el ends here\n")
- (write-region start (point) customload)
- (while (looking-at "[\t ]*$")
- (forward-line 1))
- (setq start (point))
- (if (re-search-forward "^[\t\n ]*(if[\t\n ]+(featurep[\t\n ]" nil t)
- (let ((from (goto-char (match-beginning 0))))
- (delete-region from (progn
- (forward-list 1)
- (forward-line 1)
- (point))))
- (while (looking-at "[\t ;]")
- (forward-line 1)))
- (insert "(if (featurep 'gnus-autoloads) (error \"Already loaded\"))\n")
- (goto-char (point-max))
- (while (progn
- (forward-line -1)
- (not (looking-at "[\t ]*(provide[\t\n ]"))))
- (insert "(provide 'gnus-autoloads)\n")
- (write-region start (point) autoloads))
- (byte-compile-file customload)
- (byte-compile-file autoloads))
- (message "\
-Re-splitting gnus-load.el into custom-load.el and auto-autoloads.el...done
-\n"))
+
+\(provide 'gnus-load)"))))
\f
(defconst dgnushack-info-file-regexp-en