X-Git-Url: http://cgit.sxemacs.org/?a=blobdiff_plain;f=make.bat;h=653d8279addfdc8d645782b37ffdbba273aef7b0;hb=3c2f2a7ac63ebf24bb65fd89a76c49d5c2a55146;hp=20e75536bee3400703a44ac841f97999537db741;hpb=646078e0f502997011151ce61733b4832f3b7d18;p=gnus diff --git a/make.bat b/make.bat index 20e75536b..653d8279a 100644 --- a/make.bat +++ b/make.bat @@ -3,6 +3,16 @@ rem Written by Frank Schmitt (ich@frank-schmitt.net) rem based on the work by David Charlap (shamino@writeme.com) rem . +rem . +rem From http://my.gnus.org/node/343: +rem A comment on installing Gnus on Windows 98 SE that might help others: When +rem I ran the "make.bat" file in the 5.10.6 tarball I got a bunch of "Out of +rem environment space" messages. The solution was to (1) make a shortcut to +rem the make.bat file, and (2) right-click on the shortcut, setting "Cmd line" +rem in the "Program" tab in "properties" to include the parameters make.bat +rem requires, and "initial environment" in the "memories" tab, to the maximum +rem (in my case, anyway, 2560). +rem . rem Clear PWD so emacs doesn't get confused set GNUS_PWD_SAVE=%PWD% set PWD= @@ -21,8 +31,8 @@ goto noemacs set EMACS=emacs.bat echo. echo *************************************************************************** -echo * Using emacs.bat (If you've got en Emacs >= 20.3 please remove Emacs.bat, -echo * it isn't needed anymore. +echo * Using emacs.bat (If you've got Emacs 20.3 or higher please remove +echo * Emacs.bat, it isn't needed anymore.) echo *************************************************************************** echo. goto emacs @@ -181,15 +191,23 @@ echo. echo Stand by while copying etc files. echo. if not exist %GNUS_ETC_DIR%\nul mkdir %GNUS_ETC_DIR% -if not exist %GNUS_ETC_DIR%\images\nul mkdir %GNUS_ETC_DIR%\images xcopy /R /Q /Y gnus-tut.txt %GNUS_ETC_DIR% if ErrorLevel 1 set ERROR=%ERROR%,copy-etc-gnus-tut-txt -if not exist %GNUS_ETC_DIR%\images\gnus\nul mkdir %GNUS_ETC_DIR%\images\gnus -xcopy /R /Q /Y .\gnus\* %GNUS_ETC_DIR%\images\gnus\ +if not exist %GNUS_ETC_DIR%\gnus\nul mkdir %GNUS_ETC_DIR%\gnus +xcopy /R /Q /Y .\gnus\* %GNUS_ETC_DIR%\gnus\ if ErrorLevel 1 set ERROR=%ERROR%,copy-etc-gnus-* +if not exist %GNUS_ETC_DIR%\images\nul mkdir %GNUS_ETC_DIR%\images +xcopy /R /Q /Y .\images\*.??? %GNUS_ETC_DIR%\images +if ErrorLevel 1 set ERROR=%ERROR%,copy-etc-images-* +if not exist %GNUS_ETC_DIR%\images\gnus\nul mkdir %GNUS_ETC_DIR%\images\gnus +xcopy /R /Q /Y .\images\gnus\* %GNUS_ETC_DIR%\images\gnus\ +if ErrorLevel 1 set ERROR=%ERROR%,copy-etc-images-gnus-* +if not exist %GNUS_ETC_DIR%\images\mail\nul mkdir %GNUS_ETC_DIR%\images\mail +xcopy /R /Q /Y .\images\mail\* %GNUS_ETC_DIR%\images\mail\ +if ErrorLevel 1 set ERROR=%ERROR%,copy-etc-images-mail-* if not exist %GNUS_ETC_DIR%\images\smilies\nul mkdir %GNUS_ETC_DIR%\images\smilies -xcopy /R /Q /Y .\smilies\* %GNUS_ETC_DIR%\images\smilies\ -if ErrorLevel 1 set ERROR=%ERROR%,copy-etc-smilies-* +xcopy /R /Q /Y .\images\smilies\* %GNUS_ETC_DIR%\images\smilies\ +if ErrorLevel 1 set ERROR=%ERROR%,copy-etc-images-smilies-* goto warnings :nocopy