all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Glenn Morris <rgm@gnu.org>
To: Eli Zaretskii <eliz@gnu.org>
Cc: emacs-devel@gnu.org
Subject: ignoring autoloads in preloaded files on Windows [was Re: Changes in lisp/Makefile.in to skip preloaded files]
Date: Fri, 09 Oct 2009 20:50:25 -0400	[thread overview]
Message-ID: <0my40kr72.fsf@fencepost.gnu.org> (raw)
In-Reply-To: q41vlfw568.fsf@fencepost.gnu.org


>> What I had in mind for working around possible limitations of
>> command-line length was to run "make -C ../src echolisp > FILE" and
>> then read that FILE inside batch-update-autoloads.

Here is an attempt at this. Please could someone test this on Windows.


*** lib-src/makefile.w32-in	27 Sep 2009 08:27:28 -0000	2.101
--- lib-src/makefile.w32-in	9 Oct 2009 22:55:20 -0000
***************
*** 289,294 ****
--- 289,299 ----
  	$(lispsource)window.elc \
  	$(lispsource)version.el
  
+ # Used by batch-update-autoloads.
+ echolisp:
+ 	@echo $(lisp1)
+ 	@echo $(lisp2)
+ 
  # This is needed the first time we build the tree, since temacs.exe
  # does not exist yet, and the DOC rule needs it to rebuild DOC whenever
  # Emacs is rebuilt.
***************
*** 348,353 ****
--- 353,359 ----
  		- $(DEL) getopt.h
  		- $(DEL_TREE) $(OBJDIR)
  		- $(DEL) stamp_BLD
+ 		- $(DEL) echolisp.tmp
  
  distclean: cleanall
  	- $(DEL) TAGS
*** lisp/emacs-lisp/autoload.el	7 Oct 2009 16:10:37 -0000	1.149
--- lisp/emacs-lisp/autoload.el	9 Oct 2009 22:59:46 -0000
***************
*** 686,694 ****
    ;; For use during the Emacs build process only.
    (unless autoload-excludes
      (let* ((ldir (file-name-directory generated-autoload-file))
! 	   (mfile (expand-file-name "../src/Makefile" ldir))
  	   lim)
        (when (file-readable-p mfile)
  	(with-temp-buffer
  	  (insert-file-contents mfile)
  	  (when (re-search-forward "^lisp= " nil t)
--- 686,717 ----
    ;; For use during the Emacs build process only.
    (unless autoload-excludes
      (let* ((ldir (file-name-directory generated-autoload-file))
! 	   (mdir (expand-file-name (if (eq system-type 'windows-nt)
! 					"../lib-src"
! 				     "../src") ldir))
! 	   (mfile (expand-file-name "Makefile" mdir))
! 	   (tmpfile (expand-file-name "echolisp.tmp" mdir))
  	   lim)
        (when (file-readable-p mfile)
+ 	(if (eq system-type 'windows-nt)
+ 	    (when (ignore-errors
+ 		   (delete-file tmpfile)
+ 		   (shell-command (format "make -C %s echolisp > %s"
+ 					  mdir tmpfile))
+ 		   (file-readable-p tmpfile))
+ 	      (with-temp-buffer
+ 		(insert-file-contents tmpfile)
+ 		(while (not (eobp))
+ 		  (setq lim (line-end-position))
+ 		  (while (re-search-forward "\\([^ ]+\\.el\\)c?\\>" lim t)
+ 		    (push (expand-file-name (match-string 1) mdir)
+ 			  autoload-excludes))
+ 		  (forward-line 1))))
+ 	  ;; Non-Windows platforms do not use the echolisp approach
+ 	  ;; because the maximum safe command-line length for all
+ 	  ;; supported platforms is unknown.  Also it would seem a
+ 	  ;; shame to split $lisp into $lisp1 etc just for the sake of
+ 	  ;; this command (Windows requires it for other reasons).
  	  (with-temp-buffer
  	    (insert-file-contents mfile)
  	    (when (re-search-forward "^lisp= " nil t)
***************
*** 696,702 ****
  	    (while (re-search-forward "\\${lispsource}\\([^ ]+\\.el\\)c?\\>"
  				      lim t)
  	      (push (expand-file-name (match-string 1) ldir)
! 		    autoload-excludes)))))))
    (let ((args command-line-args-left))
      (setq command-line-args-left nil)
      (apply 'update-directory-autoloads args)))
--- 719,725 ----
  	      (while (re-search-forward "\\${lispsource}\\([^ ]+\\.el\\)c?\\>"
  					lim t)
  		(push (expand-file-name (match-string 1) ldir)
! 		      autoload-excludes))))))))
    (let ((args command-line-args-left))
      (setq command-line-args-left nil)
      (apply 'update-directory-autoloads args)))




  parent reply	other threads:[~2009-10-10  0:50 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <E1Mv3iq-0005oI-5L@monty-python.gnu.org>
2009-10-06  7:44 ` Changes in lisp/Makefile.in to skip preloaded files Eli Zaretskii
2009-10-06  9:25   ` Eli Zaretskii
2009-10-06  9:33     ` Miles Bader
2009-10-06  9:42       ` Eli Zaretskii
2009-10-06 10:14         ` Miles Bader
2009-10-06 13:12           ` Dan Nicolaescu
2009-10-06 13:45             ` Dan Nicolaescu
2009-10-06 16:20             ` Glenn Morris
2009-10-06 16:50               ` Dan Nicolaescu
2009-10-06 15:28     ` Stefan Monnier
2009-10-06 16:16     ` Glenn Morris
2009-10-06 18:41       ` Eli Zaretskii
2009-10-07  3:00         ` Glenn Morris
2009-10-07  7:23           ` Glenn Morris
2009-10-07  9:23             ` Eli Zaretskii
2009-10-07 10:00               ` Juanma Barranquero
2009-10-07 16:16               ` Glenn Morris
2009-10-08 23:08                 ` Lennart Borgman
2009-10-08 23:31                   ` Juanma Barranquero
2009-10-08 23:34                     ` Lennart Borgman
2009-10-09  0:02                       ` Juanma Barranquero
2009-10-09  0:04                         ` Glenn Morris
2009-10-09  0:25                           ` Juanma Barranquero
2009-10-09 11:48                             ` Lennart Borgman
2009-10-10  0:50                 ` Glenn Morris [this message]
2009-10-10  2:27                   ` ignoring autoloads in preloaded files on Windows [was Re: Changes in lisp/Makefile.in to skip preloaded files] Juanma Barranquero
2009-10-10  3:34                     ` ignoring autoloads in preloaded files on Windows Glenn Morris
2009-10-10  3:57                       ` Juanma Barranquero
2009-10-10  4:17                         ` Juanma Barranquero
2009-10-10  4:19                           ` Juanma Barranquero
2009-10-10  5:13                           ` Juanma Barranquero
2009-10-10  7:37                             ` Eli Zaretskii
2009-10-13 19:16                               ` Stefan Monnier
2009-10-15  6:14                                 ` Glenn Morris
2009-10-10  7:32                         ` Eli Zaretskii
2009-10-10 11:51                           ` Juanma Barranquero
2009-10-10 13:16                             ` Eli Zaretskii
2009-10-10 21:17                               ` Glenn Morris
2009-10-11  2:02                                 ` Juanma Barranquero
2009-10-11  2:36                                   ` Glenn Morris
2009-10-11  2:44                                     ` Glenn Morris
2009-10-11  3:35                                     ` Juanma Barranquero
2009-10-11 14:04                                       ` Juanma Barranquero
2009-10-07  9:57             ` Changes in lisp/Makefile.in to skip preloaded files Eli Zaretskii
2009-10-07  9:15           ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0my40kr72.fsf@fencepost.gnu.org \
    --to=rgm@gnu.org \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.