*** empty log message ***
[gnus] / lisp / dgnushack.el
index 33c2a73..ac4ef67 100644 (file)
@@ -1,5 +1,5 @@
 ;;; dgnushack.el --- a hack to set the load path for byte-compiling
-;; Copyright (C) 1994,95 Free Software Foundation, Inc.
+;; Copyright (C) 1994,95,96 Free Software Foundation, Inc.
 
 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
 ;; Version: 4.19
 ;; GNU General Public License for more details.
 
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to
-;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;; along with GNU Emacs; see the file COPYING.  If not, write to the
+;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;; Boston, MA 02111-1307, USA.
 
 ;;; Commentary:
 
 ;;; Code:
 
-(setq load-path (cons "." load-path))
+(fset 'facep 'ignore)
+
+(require 'cl)
+(push "." load-path)
+
+(defalias 'device-sound-enabled-p 'ignore)
+(defalias 'play-sound-file 'ignore)
+(defalias 'nndb-request-article 'ignore)
+(defalias 'efs-re-read-dir 'ignore)
+(defalias 'ange-ftp-re-read-dir 'ignore)
+
+(fset 'orig-require (symbol-function 'require))
+
+(defun require (package &optional file)
+  "Avoid loading .elc files."
+  (let ((filename (concat (symbol-name package) ".el")))
+    (condition-case err
+       (orig-require package filename)
+      (error
+       (orig-require package)))))
+
+(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)))
 
 (defun dgnushack-compile ()
+  ;;(setq byte-compile-dynamic t)
   (let ((files (directory-files "." nil ".el$"))
        (xemacs (string-match "XEmacs" emacs-version))
-       byte-compile-warnings file)
-    (while files
-      (setq file (car files)
-           files (cdr files))
+       ;;(byte-compile-generate-call-tree t)
+       byte-compile-warnings file elc)
+    (condition-case ()
+       (require 'w3-forms)
+      (error (setq files (delete "nnweb.el" files))))
+    (while (setq file (pop files))
       (cond 
        ((or (string= file "custom.el") (string= file "browse-url.el"))
        (setq byte-compile-warnings nil))
        (t
        (setq byte-compile-warnings 
              '(free-vars unresolved callargs redefine obsolete))))
-      (and (or (and (not (string= file "gnus-xmas.el"))
-                   (not (string= file "x-easymenu.el")))
-              xemacs)
-          (byte-compile-file file)))))
+      (when (or (not (member file '("gnus-xmas.el" "gnus-picon.el" 
+                                   "messagexmas.el" "nnheaderxm.el"
+                                   "smiley.el")))
+               xemacs)
+       (when (or (not (file-exists-p (setq elc (concat file "c"))))
+                 (file-newer-than-file-p file elc))
+         (ignore-errors
+           (byte-compile-file file)))))))
 
 (defun dgnushack-recompile ()
   (require 'gnus)