# Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: address@hidden # target_branch: http://bzr.savannah.gnu.org/r/emacs/trunk/ # testament_sha1: 560a4bd115be8f1e61d517fe677ec83f26200e9b # timestamp: 2010-04-06 19:46:29 -0600 # base_revision_id: address@hidden # # Begin patch === modified file 'admin/admin.el' --- admin/admin.el 2010-01-13 08:35:10 +0000 +++ admin/admin.el 2010-03-31 02:27:15 +0000 @@ -95,6 +95,9 @@ (set-version-in-file root "lib-src/makefile.w32-in" version (rx (and "VERSION" (0+ space) "=" (0+ space) (submatch (1+ (in "0-9.")))))) + (set-version-in-file root "nt/makefile.w32-in" version + (rx (and "VERSION" (0+ space) "=" (0+ space) + (submatch (1+ (in "0-9.")))))) ;; nt/emacs.rc also contains the version number, but in an awkward ;; format. It must contain four components, separated by commas, and ;; in two places those commas are followed by space, in two other === modified file 'nt/INSTALL' --- nt/INSTALL 2010-01-13 08:35:10 +0000 +++ nt/INSTALL 2010-04-03 17:01:17 +0000 @@ -403,6 +403,9 @@ Removes the installed files in the bin subdirectory in addition to the files removed by make cleanall. + make dist + Builds Emacs from the available sources and pre-compiled lisp files. + Packages Emacs binaries as full distribution and barebin distribution. The following targets are intended only for use with the Bazaar sources. @@ -425,7 +428,33 @@ bootstrap to rebuild. Occasionally it may be necessary to run this target after an update. - +* Creating binary distributions + + Binary distributions (full and barebin distributions) can be + automatically built and packaged from source tarballs or a bzr + checkout. + + When building Emacs binary distributions, the --distfiles argument + to configure.bat specifies files to be included in the bin directory + of the binary distributions. This is intended for libraries that are + not built as part of Emacs, e.g. image libraries. + + For example, specifying + + --distfiles D:\distfiles\libXpm.dll + + results in libXpm.dll being copied from D:\distfiles to the + bin directory before packaging starts. + + Multiple files can be specified using multiple --distfiles arguments: + + --distfiles D:\distfiles\libXpm.dll --distfiles C:\jpeglib\jpeg.dll + + For packaging the binary distributions, the 'dist' make target uses + 7-Zip (http://www.7-zip.org), which must be installed and available + on the Windows Path. + + * Trouble-shooting The main problems that are likely to be encountered when building === added file 'nt/README.W32' --- nt/README.W32 1970-01-01 00:00:00 +0000 +++ nt/README.W32 2010-03-31 02:27:15 +0000 @@ -0,0 +1,264 @@ +Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 + Free Software Foundation, Inc. +See the end of the file for license conditions. + + Emacs for Windows + + This README file describes how to set up and run a precompiled + version of GNU Emacs for Windows. This distribution can be found on + the ftp.gnu.org server and its mirrors: + + ftp://ftp.gnu.org/gnu/emacs/windows/ + + This server contains other distributions, including the full Emacs + source distribution and a barebin distribution which can be installed + over it, as well as older releases of Emacs for Windows. + + Answers to frequently asked questions, and further information about + this port of GNU Emacs and related software packages can be found via + http: + + http://www.gnu.org/software/emacs/windows/ + +* Preliminaries + + Along with this file should be six subdirectories (bin, etc, info, + lisp, leim, site-lisp). If you have downloaded the barebin + distribution, then it will contain only the bin directory and the + built in documentation in etc/DOC-X, the rest of the subdirectories + are in the src distribution, which the barebin distribution is + designed to be used with. + +* Setting up Emacs + + To install Emacs, simply unpack all the files into a directory of + your choice, but note that you might encounter minor problems if + there is a space anywhere in the directory name. To complete the + installation process, you can optionally run the program addpm.exe + in the bin subdirectory. This will put an icon for Emacs in the + Start Menu under "Start -> Programs -> Gnu Emacs". + + Some users have reported that the Start Menu item is not created for + them. If this happens, just create your own shortcut to runemacs.exe, + eg. by dragging it on to the desktop or the Start button. + + Note that running addpm is now an optional step; Emacs is able to + locate all of its files without needing any information to be set in + the environment or the registry, although such settings will still + be obeyed if present. This is convenient for running Emacs on a + machine which disallows registry changes, or on which software + should not be installed. For instance, you can now run Emacs + directly from a CD or USB flash drive without copying or installing + anything on the machine itself. + +* Starting Emacs + + To run Emacs, simply select Emacs from the Start Menu, or invoke + runemacs.exe directly from Explorer or from a command prompt. This + will start Emacs in its default GUI mode, ready to use. If you have + never used Emacs before, you should follow the tutorial at this + point (select Emacs Tutorial from the Help menu), since Emacs is + quite different from ordinary Windows applications in many respects. + + If you want to use Emacs in tty or character mode within a command + window, you can start it by typing "emacs -nw" at the command prompt. + (Obviously, you need to ensure that the Emacs bin subdirectory is in + your PATH first, or specify the path to emacs.exe.) The -nw + (non-windowed) mode of operation is most useful if you have a telnet + server on your machine, allowing you to run Emacs remotely. + +* EXE files included + + Emacs comes with the following executable files in the bin directory. + + + emacs.exe - The main Emacs executable. As this is designed to run + as both a text-mode application (emacs -nw) and as a GUI application, + it will pop up a command prompt window if run directly from Explorer. + + + runemacs.exe - A wrapper for running Emacs as a GUI application + without popping up a command prompt window. + + + emacsclient.exe - A command-line client program that can + communicate with a running Emacs process. See the `Emacs Server' + node of the Emacs manual. + + + emacsclientw.exe - A version of emacsclient that does not open + a command-line window. + + + addpm.exe - A basic installer that creates Start Menu icons for Emacs. + Running this is optional. + + + cmdproxy.exe - Used internally by Emacs to work around problems with + the native shells in various versions of Windows. + + + ctags.exe, etags.exe - Tools for generating tag files. See the + `Tags' node of the Emacs manual. + + + ebrowse.exe - A tool for generating C++ browse information. See the + `Ebrowse' manual. + + + ddeclient.exe - A tool for interacting with DDE servers. + + + hexl.exe - A tool for converting files to hex dumps. See the + `Editing Binary Files' node of the Emacs manual. + + + movemail.exe - A helper application for safely moving mail from + a mail spool or POP server to a local user mailbox. See the + `Movemail' node of the Emacs manual. + + + digest-doc.exe, sorted-doc.exe - Tools for rebuilding the + built-in documentation. + +* Image support + + Emacs has built in support for XBM and PPM/PGM/PBM images, and the + libXpm library is bundled, providing XPM support (required for color + toolbar icons and splash screen). Source for libXpm should be available + on the same place as you got this binary distribution from. The version + of libXpm bundled with this version of Emacs is 3.5.7, based on x.org's + libXpm library from X11R7.3. + + Emacs can also support some other image formats with appropriate + libraries. These libraries are all available as part of GTK, or from + gnuwin32.sourceforge.net. Emacs will find them if the directory they + are installed in is on the PATH. + + PNG: requires the PNG reference library 1.2 or later, which will + be named libpng13d.dll, libpng13.dll, libpng12d.dll, libpng12.dll + or libpng.dll. LibPNG requires zlib, which should come from the same + source as you got libpng. + + JPEG: requires the Independant JPEG Group's libjpeg 6b or later, + which will be called jpeg62.dll, libjpeg.dll, jpeg-62.dll or jpeg.dll. + + TIFF: requires libTIFF 3.0 or later, which will be called libtiff3.dll + or libtiff.dll. + + GIF: requires libungif or giflib 4.1 or later, which will be + called giflib4.dll, libungif4.dll or libungif.dll. + + In addition, Emacs can be compiled to support SVG. This precompiled + distribution has not been compiled that way, since the SVG library + or one or more of its extensive dependencies appear to be + unreliable under Windows. See nt/INSTALL in the src distribution if + you wish to compile Emacs with SVG support. + +* Uninstalling Emacs + + If you should need to uninstall Emacs, simply delete all the files + and subdirectories from the directory where it was unpacked (Emacs + does not install or update any files in system directories or + anywhere else). If you ran the addpm.exe program to create the + registry entries and the Start menu icon, then you can remove the + registry entries using regedit. All of the settings are written + under the Software\GNU\Emacs key in HKEY_LOCAL_MACHINE, or if you + didn't have administrator privileges when you installed, the same + key in HKEY_CURRENT_USER. Just delete the whole Software\GNU\Emacs + key. + + The Start menu entry can be removed by right-clicking on the Task bar + and selecting Properties, then using the Remove option on the Start + Menu Programs page. (If you installed under an account with + administrator privileges, then you need to click the Advanced button + and look for the Gnu Emacs menu item under All Users.) + +* Troubleshooting + + Unpacking the distributions + + If you encounter trouble trying to run Emacs, there are a number of + possible causes. Check the following for indications that the + distribution was not corrupted by the tools used to unpack it: + + * Be sure to disable CR/LF translation or the executables will + be unusable. Older versions of WinZipNT would enable this + translation by default. If you are using WinZipNT, disable it. + (I don't have WinZipNT myself, and I do not know the specific + commands necessary to disable it.) + + * Check that filenames were not truncated to 8.3. For example, + there should be a file lisp\abbrevlist.elc; if this has been + truncated to abbrevli.elc, your distribution has been corrupted + while unpacking and Emacs will not start. + + If you believe you have unpacked the distributions correctly and are + still encountering problems, see the section on Further Information + below. + + Virus scanners + + Some virus scanners interfere with Emacs' use of subprocesses. If you + are unable to use subprocesses and you use Dr. Solomon's WinGuard or + McAfee's Vshield, turn off "Scan all files" (WinGuard) or "boot sector + scanning" (McAfee exclusion properties). + +* Further information + + If you have access to the World Wide Web, I would recommend pointing + your favorite web browser to the following document (if you haven't + already): + + http://www.gnu.org/software/emacs/windows/ + + This document serves as an FAQ and a source for further information + about the Windows port and related software packages. + + In addition to the FAQ, there is a mailing list for discussing issues + related to the Windows port of Emacs. For information about the + list, see this Web page: + + http://lists.gnu.org/mailman/listinfo/help-emacs-windows + + To ask questions on the mailing list, send email to + address@hidden (You don't need to subscribe for that.) + To subscribe to the list or unsubscribe from it, fill the form you + find at http://lists.gnu.org/mailman/listinfo/help-emacs-windows as + explained there. + + Another valuable source of information and help which should not be + overlooked is the various Usenet news groups dedicated to Emacs. + These are particularly good for help with general issues which aren't + specific to the Windows port of Emacs. The main news groups to use + for seeking help are: + + gnu.emacs.help + comp.emacs + + There are also fairly regular postings and announcements of new or + updated Emacs packages on this group: + + gnu.emacs.sources + +* Reporting bugs + + If you encounter a bug in this port of Emacs, we would like to hear + about it. First check the FAQ on the web page above to see if the bug + is already known and if there are any workarounds. Then check whether + the bug has something to do with code in your .emacs file, e.g. by + invoking Emacs with the "-Q" option. + + If you decide that it is a bug in Emacs, use the built in bug + reporting facility to report it (from the menu; Help -> Send Bug Report). + If you have not yet configured Emacs for mail, then when you press + C-c C-c to send the report, it will ask you to paste the text of the + report into your mail client. If the bug is related to subprocesses, + also specify which shell you are using (e.g., include the values of + `shell-file-name' and `explicit-shell-file-name' in your message). + + Enjoy! + + +This file is part of GNU Emacs. + +GNU Emacs is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +GNU Emacs is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Emacs. If not, see . === modified file 'nt/configure.bat' --- nt/configure.bat 2010-01-13 08:35:10 +0000 +++ nt/configure.bat 2010-04-06 02:16:41 +0000 @@ -89,6 +89,8 @@ set doldflags= set sep1= set sep2= +set sep3= +set distfiles= rem ---------------------------------------------------------------------- rem Handle arguments. @@ -110,6 +112,7 @@ if "%1" == "--without-tiff" goto withouttiff if "%1" == "--without-xpm" goto withoutxpm if "%1" == "--with-svg" goto withsvg +if "%1" == "--distfiles" goto distfiles if "%1" == "" goto checkutils :usage echo Usage: configure [options] @@ -129,6 +132,7 @@ echo. --without-tiff do not use TIFF library even if it is installed echo. --without-xpm do not use XPM library even if it is installed echo. --with-svg use the RSVG library (experimental) +echo. --distfiles path to files for make dist, e.g. libXpm.dll goto end rem ---------------------------------------------------------------------- :setprefix @@ -226,6 +230,16 @@ goto again rem ---------------------------------------------------------------------- + +:distfiles +set HAVE_DISTFILES=1 +shift +set distfiles=%distfiles%%sep3%%1 +set sep3= %nothing% +shift +goto again + +rem ---------------------------------------------------------------------- rem Check that necessary utilities (cp and rm) are present. :checkutils echo Checking for 'cp'... @@ -513,6 +527,35 @@ :svgDone rm -f junk.c junk.obj junk.err junk.out +rem Any distfiles provided for building distribution? If no, we're done. +if "(%HAVE_DISTFILES%)"=="()" goto :distFilesDone + +rem Any arguments to --distfiles specified? If no, we're done. +if not "%distfiles%"=="" goto :checkDistFiles +set distFilesOk=0 +echo No arguments specified for option --distfiles! +goto distfilesDone + +:checkDistFiles +echo Checking for distfiles... +rem Check if all specified distfiles exist +set fileNotFound= +for %%d in (%distfiles%) do if not exist %%d set fileNotFound=%%d +if not "%fileNotFound%"=="" goto distFilesNotFound + +set distFilesOK=1 +echo ...all distfiles found. +goto :distFilesDone + +:distFilesNotFound +set distFilesOk=0 +echo ...%fileNotFound% not found. +set distfiles= +goto :distfilesDone + +:distFilesDone +set fileNotFound= + rem ---------------------------------------------------------------------- :genmakefiles echo Generating makefiles @@ -532,6 +575,7 @@ if (%profile%) == (Y) echo PROFILE=1 >>config.settings if (%nocygwin%) == (Y) echo NOCYGWIN=1 >>config.settings if not "(%prefix%)" == "()" echo INSTALL_DIR=%prefix%>>config.settings +if not "(%distfiles%)" == "()" echo DIST_FILES=%distfiles%>>config.settings rem We go thru docflags because usercflags could be "-DFOO=bar" -something rem and the if command cannot cope with this for %%v in (%usercflags%) do if not (%%v)==() set docflags=Y @@ -633,12 +677,19 @@ echo Install libtiff development files or use --without-tiff :checkgif -if not "(%HAVE_GIF%)" == "()" goto donelibchecks -if (%gifsupport%) == (N) goto donelibchecks +if not "(%HAVE_GIF%)" == "()" goto checkdistfiles +if (%gifsupport%) == (N) goto checkdistfiles set libsOK=0 echo GIF support is missing. echo Install giflib or libungif development files or use --without-gif +:checkdistfiles +if "(%HAVE_DISTFILES%)" == "()" goto donelibchecks +if (%distFilesOk%) == (1) goto donelibchecks +echo. +echo Files specified with option --distfiles could not be found. +echo Fix these issues before running make dist + :donelibchecks if (%libsOK%) == (1) goto success echo. @@ -670,6 +721,9 @@ set doldflags= set mingwflag= set mf= +set distfiles= +set HAVE_DISTFILES= +set distFilesOk= goto skipArchTag arch-tag: 300d20a4-1675-4e75-b615-7ce1a8c5376c === modified file 'nt/makefile.w32-in' --- nt/makefile.w32-in 2010-01-13 08:35:10 +0000 +++ nt/makefile.w32-in 2010-04-06 02:16:41 +0000 @@ -23,6 +23,8 @@ # FIXME: This file uses DOS EOLs. Convert to Unix after 22.1 is out # (and remove or replace this comment). +VERSION = 24.0.50 + TRES = $(BLD)/emacs.res CLIENTRES = $(BLD)/emacsclient.res @@ -197,12 +199,15 @@ # # Build and install emacs in INSTALL_DIR # -install: all $(INSTALL_DIR)/bin install-other-dirs-$(MAKETYPE) +.PHONY: install-bin install-shortcuts + +install: install-bin install-shortcuts + +install-bin: all $(INSTALL_DIR)/bin install-other-dirs-$(MAKETYPE) - $(CP) $(BLD)/addpm.exe $(INSTALL_DIR)/bin - $(CP) $(BLD)/ddeclient.exe $(INSTALL_DIR)/bin - $(CP) $(BLD)/cmdproxy.exe $(INSTALL_DIR)/bin - $(CP) $(BLD)/runemacs.exe $(INSTALL_DIR)/bin - - "$(INSTALL_DIR)/bin/addpm" -q - $(DEL) ../same-dir.tst - $(DEL) $(INSTALL_DIR)/same-dir.tst echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst" @@ -238,6 +243,14 @@ $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../lisp install $(MAKE) $(MFLAGS) $(XMFLAGS) -C ../leim install +install-shortcuts: + "$(INSTALL_DIR)/bin/addpm" -q + +dist: info install-bin + $(CP) $(DIST_FILES) $(INSTALL_DIR)/bin + $(CP) README.W32 $(INSTALL_DIR) + $(COMSPEC)$(ComSpec) /c $(ARGQUOTE)zipdist.bat $(INSTALL_DIR) $(VERSION)$(ARGQUOTE) + force-info: # Note that doc/emacs/makefile knows how to # put the info files in $(infodir), === added file 'nt/zipdist.bat' --- nt/zipdist.bat 1970-01-01 00:00:00 +0000 +++ nt/zipdist.bat 2010-04-01 01:40:58 +0000 @@ -0,0 +1,66 @@ address@hidden off +rem Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 +rem Free Software Foundation, Inc. + +rem Author: Christoph Scholtes cschol2112 at gmail.com + +rem This file is part of GNU Emacs. + +rem GNU Emacs is free software: you can redistribute it and/or modify +rem it under the terms of the GNU General Public License as published by +rem the Free Software Foundation, either version 3 of the License, or +rem (at your option) any later version. + +rem GNU Emacs is distributed in the hope that it will be useful, +rem but WITHOUT ANY WARRANTY; without even the implied warranty of +rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +rem GNU General Public License for more details. + +rem You should have received a copy of the GNU General Public License +rem along with GNU Emacs. If not, see http://www.gnu.org/licenses/. + +SETLOCAL +rem arg 1: full path to Emacs root directory +set ARG_PATH="%~f1" +rem Path separator cannot be parsed correctly, substitute +set ARG_PATH=%ARG_PATH:\=;% + +rem arg 2: Emacs version number +set EMACS_VER=%2 + +rem Parse out last directory from passed in full path (arg 1) +for /f "tokens=* delims=;" %%G in (%ARG_PATH%) do call :PARSE_PATH %%G +goto :EXIT + +:PARSE_PATH +if "%1"=="" ( + goto :ZIP_CHECK +) +set ROOT_DIR=%1 +SHIFT +goto :PARSE_PATH + +rem Check, if 7zip is installed and available on path +:ZIP_CHECK +7z +if %ERRORLEVEL% NEQ 0 goto :ZIP_ERROR +goto ZIP_DIST + +:ZIP_ERROR +echo. +echo ERROR: Make sure 7zip is installed and available on the Windows Path! +goto EXIT + +rem Build distributions +:ZIP_DIST +pushd ..\.. +rem Build and verify full distribution +7z a -bd -tZIP -mx=9 -x!.bzrignore -x!.gitignore -xr!emacs.mdp -xr!*.pdb -xr!*.opt -xr!*~ -xr!CVS -xr!.arch-inventory emacs-%EMACS_VER%-bin-i386.zip %ROOT_DIR%/BUGS %ROOT_DIR%/COPYING %ROOT_DIR%/README %ROOT_DIR%/README.W32 %ROOT_DIR%/INSTALL %ROOT_DIR%/bin %ROOT_DIR%/etc %ROOT_DIR%/info %ROOT_DIR%/lisp %ROOT_DIR%/leim %ROOT_DIR%/site-lisp +7z t emacs-%EMACS_VER%-bin-i386.zip +rem Build and verify binary only distribution +7z a -bd -tZIP -mx=9 emacs-%EMACS_VER%-barebin-i386.zip %ROOT_DIR%/README.W32 %ROOT_DIR%/bin %ROOT_DIR%/etc/DOC-X %ROOT_DIR%/COPYING +7z t emacs-%EMACS_VER%-barebin-i386.zip +popd +goto EXIT + +:EXIT # Begin bundle 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