(comment-search-forward, comment-search-backward): Fix typos.
[emacs.git] / config.bat
blob732c4021aaf6c4a988acf42815ef8f69d8a86736
1 @echo off\r
2 rem   ----------------------------------------------------------------------\r
3 rem   Configuration script for MSDOS\r
4 rem   Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2004\r
5 rem   Free Software Foundation, Inc.\r
6 \r
7 rem   This file is part of GNU Emacs.\r
8 \r
9 rem   GNU Emacs is free software; you can redistribute it and/or modify\r
10 rem   it under the terms of the GNU General Public License as published by\r
11 rem   the Free Software Foundation; either version 2, or (at your option)\r
12 rem   any later version.\r
14 rem   GNU Emacs is distributed in the hope that it will be useful,\r
15 rem   but WITHOUT ANY WARRANTY; without even the implied warranty of\r
16 rem   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
17 rem   GNU General Public License for more details.\r
19 rem   You should have received a copy of the GNU General Public License\r
20 rem   along with GNU Emacs; see the file COPYING.  If not, write to the\r
21 rem   Free Software Foundation, Inc., 59 Temple Place - Suite 330,\r
22 rem   Boston, MA 02111-1307, USA.\r
23 rem   ----------------------------------------------------------------------\r
24 rem   YOU'LL NEED THE FOLLOWING UTILITIES TO MAKE EMACS:\r
25 rem\r
26 rem   + msdos version 3 or better.\r
27 rem   + djgpp version 1.12maint1 or later (version 2.0 or later recommended).\r
28 rem   + make utility that allows breaking of the 128 chars limit on\r
29 rem     command lines.  ndmake (as of version 4.5) won't work due to a\r
30 rem     line length limit.  The make that comes with djgpp does work.\r
31 rem   + rm and mv (from GNU file utilities).\r
32 rem   + sed (you can use the port that comes with DJGPP).\r
33 rem\r
34 rem   You should be able to get all the above utilities from any SimTel\r
35 rem   repository, e.g. ftp.simtel.net, in the directory\r
36 rem   "pub/simtelnet/gnu/djgpp/v2gnu".  As usual, please use your local\r
37 rem   mirroring site to reduce trans-Atlantic traffic.\r
38 rem   ----------------------------------------------------------------------\r
39 set X11=\r
40 set nodebug=\r
41 set djgpp_ver=\r
42 if "%1" == "" goto usage\r
43 rem   ----------------------------------------------------------------------\r
44 rem   See if their environment is large enough.  We need 28 bytes.\r
45 set $foo$=789012345678901234567\r
46 if not "%$foo$%" == "789012345678901234567" goto SmallEnv\r
47 set $foo$=\r
48 :again\r
49 if "%1" == "" goto usage\r
50 if "%1" == "--with-x" goto withx\r
51 if "%1" == "--no-debug" goto nodebug\r
52 if "%1" == "msdos" goto msdos\r
53 :usage\r
54 echo Usage: config [--with-x] [--no-debug] msdos\r
55 echo [Read the script before you run it.]\r
56 goto end\r
57 rem   ----------------------------------------------------------------------\r
58 :withx\r
59 set X11=Y\r
60 shift\r
61 goto again\r
62 rem   ----------------------------------------------------------------------\r
63 :nodebug\r
64 set nodebug=Y\r
65 shift\r
66 goto again\r
67 rem   ----------------------------------------------------------------------\r
68 :msdos\r
69 Echo Checking whether 'sed' is available...\r
70 sed -e "w junk.$$$" <Nul\r
71 If Exist junk.$$$ Goto sedOk\r
72 Echo To configure 'Emacs' you need to have 'sed'!\r
73 Goto End\r
74 :sedOk\r
75 Echo Checking whether 'rm' is available...\r
76 rm -f junk.$$$\r
77 If Not Exist junk.$$$ Goto rmOk\r
78 Echo To configure 'Emacs' you need to have 'rm'!\r
79 Goto End\r
80 :rmOk\r
81 Echo Checking whether 'mv' is available...\r
82 rm -f junk.1 junk.2\r
83 echo foo >junk.1\r
84 mv junk.1 ./junk.2\r
85 If Exist junk.2 Goto mvOk\r
86 Echo To configure 'Emacs' you need to have 'mv'!\r
87 rm -f junk.1\r
88 Goto End\r
89 :mvOk\r
90 rm -f junk.2\r
91 Echo Checking whether 'gcc' is available...\r
92 echo main(){} >junk.c\r
93 gcc -c junk.c\r
94 if exist junk.o goto gccOk\r
95 Echo To configure 'Emacs' you need to have 'gcc'!\r
96 rm -f junk.c\r
97 Goto End\r
98 :gccOk\r
99 rm -f junk.c junk.o junk junk.exe\r
100 Echo Checking what version of DJGPP is installed...\r
101 If Not "%DJGPP%" == "" goto djgppOk\r
102 Echo To compile 'Emacs' under MS-DOS you MUST have DJGPP installed!\r
103 Goto End\r
104 :djgppOk\r
105 echo int main()           >junk.c\r
106 echo #ifdef __DJGPP__    >>junk.c\r
107 echo {return (__DJGPP__)*10;} >>junk.c\r
108 echo #else               >>junk.c\r
109 echo #ifdef __GO32__     >>junk.c\r
110 echo {return 10;}         >>junk.c\r
111 echo #else               >>junk.c\r
112 echo {return 0;}         >>junk.c\r
113 echo #endif              >>junk.c\r
114 echo #endif              >>junk.c\r
115 gcc -o junk junk.c\r
116 if not exist junk.exe coff2exe junk\r
117 junk\r
118 If ErrorLevel 10 Goto go32Ok\r
119 rm -f junk.c junk junk.exe\r
120 Echo To compile 'Emacs' under MS-DOS you MUST have DJGPP installed!\r
121 Goto End\r
122 :go32Ok\r
123 set djgpp_ver=1\r
124 If ErrorLevel 20 set djgpp_ver=2\r
125 rm -f junk.c junk junk.exe\r
126 rem DJECHO is used by the top-level Makefile\r
127 Echo Checking whether 'djecho' is available...\r
128 redir -o Nul -eo djecho -o junk.$$$ foo\r
129 If Exist junk.$$$ Goto djechoOk\r
130 Echo To build 'Emacs' you need the 'djecho.exe' program!\r
131 Echo 'djecho.exe' is part of 'djdevNNN.zip' basic DJGPP development kit.\r
132 Echo Versions of DJGPP before 2.02 called this program 'echo.exe'.\r
133 Echo Either unpack 'djecho.exe' from the 'djdevNNN.zip' archive,\r
134 Echo or, if you have 'echo.exe', copy it to 'djecho.exe'.\r
135 Echo Then run CONFIG.BAT again with the same arguments you did now.\r
136 Goto End\r
137 :djechoOk\r
138 rm -f junk.$$$\r
139 Echo Configuring for DJGPP Version %DJGPP_VER% ...\r
140 Rem   ----------------------------------------------------------------------\r
141 Echo Configuring the source directory...\r
142 cd src\r
144 rem   Create "epaths.h"\r
145 sed -f ../msdos/sed4.inp <epaths.in >epaths.tmp\r
146 update epaths.tmp epaths.h >nul\r
147 rm -f epaths.tmp\r
149 rem   Create "config.h"\r
150 rm -f config.h2 config.tmp\r
151 sed -e '' config.in > config.tmp\r
152 if "%X11%" == "" goto src4\r
153 sed -f ../msdos/sed2x.inp <config.in >config.tmp\r
154 :src4\r
155 if "%DJGPP_VER%" == "2" Goto src41\r
156 sed -f ../msdos/sed2.inp <config.tmp >config.h2\r
157 goto src42\r
158 :src41\r
159 sed -f ../msdos/sed2v2.inp <config.tmp >config.h2\r
160 :src42\r
161 update config.h2 config.h >nul\r
162 rm -f config.tmp config.h2\r
164 rem   On my system dir.h gets in the way.  It's a VMS file so who cares.\r
165 if exist dir.h ren dir.h vmsdir.h\r
167 rem   Create "makefile" from "makefile.in".\r
168 rm -f Makefile junk.c\r
169 sed -e "1,/== start of cpp stuff ==/s@^# .*$@@" <Makefile.in >junk.c\r
170 If "%DJGPP_VER%" == "1" Goto mfV1\r
171 gcc -E -traditional junk.c | sed -f ../msdos/sed1v2.inp >Makefile\r
172 goto mfDone\r
173 :mfV1\r
174 gcc -E -traditional junk.c | sed -f ../msdos/sed1.inp >Makefile\r
175 :mfDone\r
176 rm -f junk.c\r
178 if "%X11%" == "" goto src5\r
179 mv Makefile makefile.tmp\r
180 sed -f ../msdos/sed1x.inp <makefile.tmp >Makefile\r
181 rm -f makefile.tmp\r
182 :src5\r
184 if "%nodebug%" == "" goto src6\r
185 sed -e "/^CFLAGS *=/s/ *-gcoff//" <Makefile >makefile.tmp\r
186 sed -e "/^LDFLAGS *=/s/=/=-s/" <makefile.tmp >Makefile\r
187 rm -f makefile.tmp\r
188 :src6\r
189 cd ..\r
190 rem   ----------------------------------------------------------------------\r
191 Echo Configuring the library source directory...\r
192 cd lib-src\r
193 rem   Create "makefile" from "makefile.in".\r
194 sed -e "1,/== start of cpp stuff ==/s@^#[       ].*$@@" <Makefile.in >junk.c\r
195 gcc -E -traditional -I. -I../src junk.c | sed -e "s/^ / /" -e "/^#/d" -e "/^[   \f]*$/d" >makefile.new\r
196 If "%DJGPP_VER%" == "2" goto libsrc-v2\r
197 sed -f ../msdos/sed3.inp <makefile.new >Makefile\r
198 Goto libsrc2\r
199 :libsrc-v2\r
200 sed -f ../msdos/sed3v2.inp <makefile.new >Makefile\r
201 :libsrc2\r
202 rm -f makefile.new junk.c\r
203 if "%nodebug%" == "" goto libsrc3\r
204 sed -e "/^CFLAGS *=/s/ *-gcoff//" <Makefile >makefile.tmp\r
205 sed -e "/^ALL_CFLAGS *=/s/=/= -s/" <makefile.tmp >Makefile\r
206 rm -f makefile.tmp\r
207 :libsrc3\r
208 cd ..\r
209 rem   ----------------------------------------------------------------------\r
210 if "%X11%" == "" goto oldx1\r
211 Echo Configuring the oldxmenu directory...\r
212 cd oldxmenu\r
213 sed -f ../msdos/sed5x.inp <Makefile.in >Makefile\r
214 if "%nodebug%" == "" goto oldx2\r
215 sed -e "/^CFLAGS *=/s/ *-gcoff//" <Makefile >makefile.tmp\r
216 mv -f makefile.tmp Makefile\r
217 :oldx2\r
218 cd ..\r
219 :oldx1\r
220 rem   ----------------------------------------------------------------------\r
221 Echo Configuring the manual directory...\r
222 cd man\r
223 sed -f ../msdos/sed6.inp < Makefile.in > Makefile\r
224 cd ..\r
225 rem   ----------------------------------------------------------------------\r
226 Echo Configuring the ELisp manual directory...\r
227 cd lispref\r
228 sed -f ../msdos/sed6.inp < Makefile.in > Makefile\r
229 cd ..\r
230 rem   ----------------------------------------------------------------------\r
231 Echo Configuring the ELisp Introduction manual directory...\r
232 Rem The two variants for the line below is for when the shell\r
233 Rem supports long file names but DJGPP does not\r
234 if exist lispintro\Makefile.in cd lispintro\r
235 if exist lispintr\Makefile.in cd lispintr\r
236 sed -f ../msdos/sed6.inp < Makefile.in > Makefile\r
237 cd ..\r
238 rem   ----------------------------------------------------------------------\r
239 Echo Configuring the lisp directory...\r
240 cd lisp\r
241 sed -f ../msdos/sedlisp.inp < Makefile.in > Makefile\r
242 cd ..\r
243 rem   ----------------------------------------------------------------------\r
244 If not Exist leim\quail\latin-pre.el goto maindir\r
245 Echo Configuring the leim directory...\r
246 cd leim\r
247 sed -f ../msdos/sedleim.inp < Makefile.in > Makefile\r
248 cd ..\r
249 rem   ----------------------------------------------------------------------\r
250 :maindir\r
251 Echo Configuring the main directory...\r
252 If "%DJGPP_VER%" == "1" goto mainv1\r
253 Echo Looking for the GDB init file...\r
254 If Exist src\.gdbinit update src/.gdbinit src/_gdbinit\r
255 If Exist src\_gdbinit goto gdbinitOk\r
256 Echo ERROR:\r
257 Echo I cannot find the GDB init file.  It was called ".gdbinit" in\r
258 Echo the Emacs distribution, but was probably renamed to some other\r
259 Echo name without the leading dot when you untarred the archive.\r
260 Echo It should be in the "src/" subdirectory.  Please make sure this\r
261 Echo file exists and is called "_gdbinit" with a leading underscore.\r
262 Echo Then run CONFIG.BAT again with the same arguments you did now.\r
263 goto End\r
264 :gdbinitOk\r
265 Echo Looking for the GDB init file...found\r
266 copy msdos\mainmake.v2 Makefile >nul\r
267 :mainv1\r
268 If "%DJGPP_VER%" == "1" copy msdos\mainmake Makefile >nul\r
269 rem   ----------------------------------------------------------------------\r
270 goto End\r
271 :SmallEnv\r
272 echo Your environment size is too small.  Please enlarge it and run me again.\r
273 echo For example, type "command.com /e:2048" to have 2048 bytes available.\r
274 set $foo$=\r
275 :end\r
276 set X11=\r
277 set nodebug=\r
278 set djgpp_ver=\r
280 goto skipArchTag\r
281    arch-tag: 2d2fed23-4dc6-4006-a2e4-49daf0031f33\r
282 :skipArchTag\r