; Commit files changed by "autoreconf -i -I m4 --force"
[emacs.git] / config.bat
blob29742eec52b747752ebd6123dd745ef40d9f2141
1 @echo off\r
2 rem   ----------------------------------------------------------------------\r
3 rem   Configuration script for MSDOS\r
4 rem   Copyright (C) 1994-1999, 2001-2022 Free Software Foundation, Inc.\r
5 \r
6 rem   This file is part of GNU Emacs.\r
7 \r
8 rem   GNU Emacs is free software: you can redistribute it and/or modify\r
9 rem   it under the terms of the GNU General Public License as published by\r
10 rem   the Free Software Foundation, either version 3 of the License, or\r
11 rem   (at your option) any later version.\r
13 rem   GNU Emacs is distributed in the hope that it will be useful,\r
14 rem   but WITHOUT ANY WARRANTY; without even the implied warranty of\r
15 rem   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
16 rem   GNU General Public License for more details.\r
18 rem   You should have received a copy of the GNU General Public License\r
19 rem   along with GNU Emacs.  If not, see https://www.gnu.org/licenses/.\r
21 rem   ----------------------------------------------------------------------\r
22 rem   YOU'LL NEED THE FOLLOWING UTILITIES TO MAKE EMACS:\r
23 rem\r
24 rem   + msdos version 3 or better.\r
25 rem   + DJGPP version 2.02 or later (version 2.03 or later recommended).\r
26 rem   + make utility that allows breaking of the 128 chars limit on\r
27 rem     command lines.  ndmake (as of version 4.5) won't work due to a\r
28 rem     line length limit.  The DJGPP port of make works (and is\r
29 rem     recommended).\r
30 rem   + rm, mv, and cp (from GNU file utilities).\r
31 rem   + sed (you can use the port that comes with DJGPP).\r
32 rem\r
33 rem   You should be able to get all the above utilities from the DJGPP FTP\r
34 rem   site, ftp.delorie.com, in the directory "pub/djgpp/current/v2gnu".\r
35 rem   ----------------------------------------------------------------------\r
36 set X11=\r
37 set nodebug=\r
38 set djgpp_ver=\r
39 set sys_malloc=\r
40 set libxml=\r
41 if "%1" == "" goto usage\r
42 rem   ----------------------------------------------------------------------\r
43 rem   See if their environment is large enough.  We need 28 bytes.\r
44 set $foo$=789012345678901234567\r
45 if not "%$foo$%" == "789012345678901234567" goto SmallEnv\r
46 set $foo$=\r
47 :again\r
48 if "%1" == "" goto usage\r
49 if "%1" == "--with-x" goto withx\r
50 if "%1" == "--no-debug" goto nodebug\r
51 if "%1" == "msdos" goto msdos\r
52 if "%1" == "--with-system-malloc" goto sysmalloc\r
53 :usage\r
54 echo Usage: config [--no-debug] [--with-system-malloc] [--with-x] 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 :sysmalloc\r
69 set sys_malloc=Y\r
70 shift\r
71 goto again\r
72 rem   ----------------------------------------------------------------------\r
73 :msdos\r
74 Echo Checking whether 'sed' is available...\r
75 sed -e "w junk.$$$" <Nul\r
76 If Exist junk.$$$ Goto sedOk\r
77 Echo To configure 'Emacs' you need to have 'sed'!\r
78 Goto End\r
79 :sedOk\r
80 Echo Checking whether 'rm' is available...\r
81 rm -f junk.$$$\r
82 If Not Exist junk.$$$ Goto rmOk\r
83 Echo To configure 'Emacs' you need to have 'rm'!\r
84 Goto End\r
85 :rmOk\r
86 Echo Checking whether 'mv' is available...\r
87 rm -f junk.1 junk.2\r
88 echo foo >junk.1\r
89 mv junk.1 ./junk.2\r
90 If Exist junk.2 Goto mvOk\r
91 Echo To configure 'Emacs' you need to have 'mv'!\r
92 rm -f junk.1\r
93 Goto End\r
94 :mvOk\r
95 rm -f junk.2\r
96 Echo Checking whether 'gcc' is available...\r
97 echo main(){} >junk.c\r
98 gcc -c junk.c\r
99 if exist junk.o goto gccOk\r
100 Echo To configure 'Emacs' you need to have 'gcc'!\r
101 rm -f junk.c\r
102 Goto End\r
103 :gccOk\r
104 rm -f junk.c junk.o junk junk.exe\r
105 Echo Checking what version of DJGPP is installed...\r
106 If Not "%DJGPP%" == "" goto djgppOk\r
107 Echo To compile 'Emacs' under MS-DOS you MUST have DJGPP installed!\r
108 Goto End\r
109 :djgppOk\r
110 echo int main()           >junk.c\r
111 echo #ifdef __DJGPP__    >>junk.c\r
112 echo {return (__DJGPP__)*10 + (__DJGPP_MINOR__);} >>junk.c\r
113 echo #else               >>junk.c\r
114 echo #ifdef __GO32__     >>junk.c\r
115 echo {return 10;}         >>junk.c\r
116 echo #else               >>junk.c\r
117 echo {return 0;}         >>junk.c\r
118 echo #endif              >>junk.c\r
119 echo #endif              >>junk.c\r
120 gcc -o junk junk.c\r
121 if not exist junk.exe coff2exe junk\r
122 junk\r
123 If ErrorLevel 10 Goto go32Ok\r
124 rm -f junk.c junk junk.exe\r
125 Echo To compile 'Emacs' under MS-DOS you MUST have DJGPP installed!\r
126 Goto End\r
127 :go32Ok\r
128 set djgpp_ver=2\r
129 If Not ErrorLevel 22 Echo To build 'Emacs' you need DJGPP v2.02 or later!\r
130 If Not ErrorLevel 22 Goto End\r
131 rm -f junk.c junk junk.exe\r
132 rem DJECHO is used by the top-level Makefile in the v2.x build\r
133 Echo Checking whether 'djecho' is available...\r
134 redir -o Nul -eo djecho -o junk.$$$ foo\r
135 If Exist junk.$$$ Goto djechoOk\r
136 Echo To build 'Emacs' you need the 'djecho.exe' program!\r
137 Echo 'djecho.exe' is part of 'djdevNNN.zip' basic DJGPP development kit.\r
138 Echo Either unpack 'djecho.exe' from the 'djdevNNN.zip' archive,\r
139 Echo or, if you have 'echo.exe', copy it to 'djecho.exe'.\r
140 Echo Then run CONFIG.BAT again with the same arguments you did now.\r
141 Goto End\r
142 :djechoOk\r
143 rm -f junk.$$$\r
144 Echo Configuring for DJGPP Version %DJGPP_VER% ...\r
145 Rem   ----------------------------------------------------------------------\r
146 Echo Configuring the source directory...\r
147 cd src\r
149 rem   Create "epaths.h"\r
150 sed -f ../msdos/sed4.inp <epaths.in >epaths.tmp\r
151 update epaths.tmp epaths.h >nul\r
152 rm -f epaths.tmp\r
154 rem   Create "config.h"\r
155 rm -f config.h2 config.tmp\r
156 if exist config.in sed -e '' config.in > config.tmp\r
157 if exist ..\msdos\autogen\config.in sed -e '' ../msdos/autogen/config.in > config.tmp\r
158 if "%X11%" == "" goto src4\r
159 if exist config.in sed -f ../msdos/sed2x.inp < config.in > config.tmp\r
160 if exist ..\msdos\autogen\config.in sed -f ../msdos/sed2x.inp < ..\msdos\autogen\config.in > config.tmp\r
161 :src4\r
162 sed -f ../msdos/sed2v2.inp <config.tmp >config.h2\r
163 Rem See if they have libxml2 later than v2.2.0 installed\r
164 Echo Checking whether libxml2 v2.2.1 or later is installed ...\r
165 rm -f junk.c junk.o junk junk.exe\r
166 rem Use djecho here because we need to quote brackets\r
167 djecho "#include <libxml/xmlversion.h>"             >junk.c\r
168 djecho "int main()"                                 >>junk.c\r
169 djecho "{return (LIBXML_VERSION > 20200 ? 0 : 1);}" >>junk.c\r
170 redir -o Nul -eo gcc -I/dev/env/DJDIR/include/libxml2 -o junk junk.c\r
171 if not exist junk Goto xmlDone\r
172 if not exist junk.exe coff2exe junk\r
173 junk\r
174 If ErrorLevel 1 Goto xmlDone\r
175 Echo Configuring with libxml2 ...\r
176 sed -e "/#undef HAVE_LIBXML2/s/^.*$/#define HAVE_LIBXML2 1/" <config.h2 >config.h3\r
177 sed -e "/#define EMACS_CONFIG_FEATURES/s/^.*$/#define EMACS_CONFIG_FEATURES \"LIBXML2\"/" <config.h3 >config.h2\r
178 set libxml=1\r
179 :xmlDone\r
180 rm -f junk.c junk junk.exe\r
181 Rem See if they requested a SYSTEM_MALLOC build\r
182 if "%sys_malloc%" == "" Goto cfgDone\r
183 rm -f config.tmp\r
184 ren config.h2 config.tmp\r
185 sed -f ../msdos/sedalloc.inp <config.tmp >config.h2\r
187 :cfgDone\r
188 rm -f junk.c junk junk.exe\r
189 update config.h2 config.h >nul\r
190 rm -f config.tmp config.h2\r
192 rem   Create "makefile" from "makefile.in".\r
193 rm -f Makefile makefile.tmp\r
194 copy Makefile.in+deps.mk makefile.tmp\r
195 sed -f ../msdos/sed1v2.inp <makefile.tmp >Makefile\r
196 rm -f makefile.tmp\r
198 if "%X11%" == "" goto src5\r
199 mv Makefile makefile.tmp\r
200 sed -f ../msdos/sed1x.inp <makefile.tmp >Makefile\r
201 rm -f makefile.tmp\r
202 :src5\r
204 if "%sys_malloc%" == "" goto src5a\r
205 sed -e "/^GMALLOC_OBJ *=/s/gmalloc.o//" <Makefile >makefile.tmp\r
206 sed -e "/^VMLIMIT_OBJ *=/s/vm-limit.o//" <makefile.tmp >makefile.tmp2\r
207 sed -e "/^RALLOC_OBJ *=/s/ralloc.o//" <makefile.tmp2 >Makefile\r
208 rm -f makefile.tmp makefile.tmp2\r
209 :src5a\r
211 if "%nodebug%" == "" goto src6\r
212 sed -e "/^CFLAGS *=/s/ *-gcoff//" <Makefile >makefile.tmp\r
213 sed -e "/^LDFLAGS *=/s/=/=-s/" <makefile.tmp >Makefile\r
214 rm -f makefile.tmp\r
215 :src6\r
217 if "%libxml%" == "" goto src7\r
218 sed -e "/^LIBXML2_LIBS *=/s/=/= -lxml2 -lz -liconv/" <Makefile >makefile.tmp\r
219 sed -e "/^LIBXML2_CFLAGS *=/s|=|= -I/dev/env/DJDIR/include/libxml2|" <makefile.tmp >Makefile\r
220 rm -f makefile.tmp\r
221 :src7\r
222 Rem Create .d files for new files in src/\r
223 If Not Exist deps\stamp mkdir deps\r
224 for %%f in (*.c) do @call ..\msdos\depfiles.bat %%f\r
225 echo deps-stamp > deps\stamp\r
226 cd ..\r
227 rem   ----------------------------------------------------------------------\r
228 Echo Configuring the library source directory...\r
229 cd lib-src\r
230 sed -f ../msdos/sed3v2.inp <Makefile.in >Makefile\r
231 mv Makefile makefile.tmp\r
232 sed -n -e "/^AC_INIT/s/[^,]*, \([^,]*\).*/@set emver=\1/p" ../configure.ac > emver.bat\r
233 call emver.bat\r
234 sed -e "s/@version@/%emver%/g" <makefile.tmp >Makefile\r
235 if "%X11%" == "" goto libsrc2a\r
236 mv Makefile makefile.tmp\r
237 sed -f ../msdos/sed3x.inp <makefile.tmp >Makefile\r
238 rm -f makefile.tmp\r
239 :libsrc2a\r
240 if "%nodebug%" == "" goto libsrc3\r
241 sed -e "/^CFLAGS *=/s/ *-gcoff//" <Makefile >makefile.tmp\r
242 sed -e "/^ALL_CFLAGS *=/s/=/= -s/" <makefile.tmp >Makefile\r
243 rm -f makefile.tmp\r
244 :libsrc3\r
245 cd ..\r
246 rem   ----------------------------------------------------------------------\r
247 if "%X11%" == "" goto oldx1\r
248 Echo Configuring the oldxmenu directory...\r
249 cd oldxmenu\r
250 sed -f ../msdos/sed5x.inp <Makefile.in >Makefile\r
251 if "%nodebug%" == "" goto oldx2\r
252 sed -e "/^CFLAGS *=/s/ *-gcoff//" <Makefile >makefile.tmp\r
253 mv -f makefile.tmp Makefile\r
254 :oldx2\r
255 cd ..\r
256 :oldx1\r
257 rem   ----------------------------------------------------------------------\r
258 Echo Configuring the doc directory, expect one "File not found" message...\r
259 cd doc\r
260 Rem Rename files like djtar on plain DOS filesystem would.\r
261 If Exist emacs\emacsver.texi.in update emacs/emacsver.texi.in emacs/emacsver.in\r
262 If Exist man\emacs.1.in update man/emacs.1.in man/emacs.in\r
263 If Exist ..\etc\refcards\emacsver.tex.in update ../etc/refcards/emacsver.tex.in ../etc/refcards/emacsver.in\r
264 Rem The two variants for lispintro below is for when the shell\r
265 Rem supports long file names but DJGPP does not\r
266 for %%d in (emacs lispref lispintro lispintr misc) do sed -e "s/@version@/%emver%/g" -f ../msdos/sed6.inp < %%d\Makefile.in > %%d\Makefile\r
267 Rem produce emacs.1 from emacs.in\r
268 If Exist man\emacs.1 goto manOk\r
269 sed -e "s/@version@/%emver%/g" -e "s/@PACKAGE_BUGREPORT@/bug-gnu-emacs@gnu.org/g" < man\emacs.in > man\emacs.1\r
270 :manOk\r
271 cd ..\r
272 rem   ----------------------------------------------------------------------\r
273 Echo Configuring the lib directory...\r
274 If Exist build-aux\snippet\c++defs.h update build-aux/snippet/c++defs.h build-aux/snippet/cxxdefs.h\r
275 cd lib\r
276 Rem Rename files like djtar on plain DOS filesystem would.\r
277 If Exist c++defs.h update c++defs.h cxxdefs.h\r
278 If Exist alloca.in.h update alloca.in.h alloca.in-h\r
279 If Exist byteswap.in.h update byteswap.in.h byteswap.in-h\r
280 If Exist dirent.in.h update dirent.in.h dirent.in-h\r
281 If Exist errno.in.h update errno.in.h errno.in-h\r
282 If Exist execinfo.in.h update execinfo.in.h execinfo.in-h\r
283 If Exist fcntl.in.h update fcntl.in.h fcntl.in-h\r
284 If Exist getopt.in.h update getopt.in.h getopt.in-h\r
285 If Exist getopt-cdefs.in.h update getopt-cdefs.in.h getopt-cdefs.in-h\r
286 If Exist ieee754.in.h update ieee754.in.h ieee754.in-h\r
287 If Exist inttypes.in.h update inttypes.in.h inttypes.in-h\r
288 If Exist limits.in.h update limits.in.h limits.in-h\r
289 If Exist signal.in.h update signal.in.h signal.in-h\r
290 If Exist signal.in.h update signal.in.h signal.in-h\r
291 If Exist stdalign.in.h update stdalign.in.h stdalign.in-h\r
292 If Exist stddef.in.h update stddef.in.h  stddef.in-h\r
293 If Exist stdint.in.h update stdint.in.h  stdint.in-h\r
294 If Exist stdio.in.h update stdio.in.h stdio.in-h\r
295 If Exist stdlib.in.h update stdlib.in.h stdlib.in-h\r
296 If Exist string.in.h update string.in.h string.in-h\r
297 If Exist sys_random.in.h update sys_random.in.h sys_random.in-h\r
298 If Exist sys_select.in.h update sys_select.in.h sys_select.in-h\r
299 If Exist sys_stat.in.h update sys_stat.in.h sys_stat.in-h\r
300 If Exist sys_time.in.h update sys_time.in.h sys_time.in-h\r
301 If Exist sys_types.in.h update sys_types.in.h sys_types.in-h\r
302 If Exist time.in.h update time.in.h time.in-h\r
303 If Exist unistd.in.h update unistd.in.h unistd.in-h\r
304 If Exist gnulib.mk.in update gnulib.mk.in gnulib.mk-in\r
305 Rem Only repository has the msdos/autogen directory\r
306 If Exist Makefile.in sed -f ../msdos/sedlibcf.inp < Makefile.in > makefile.tmp\r
307 If Exist ..\msdos\autogen\Makefile.in sed -f ../msdos/sedlibcf.inp < ..\msdos\autogen\Makefile.in > makefile.tmp\r
308 sed -f ../msdos/sedlibmk.inp < makefile.tmp > Makefile\r
309 rm -f makefile.tmp\r
310 sed -f ../msdos/sedlibcf.inp < gnulib.mk-in > gnulib.tmp\r
311 sed -f ../msdos/sedlibmk.inp < gnulib.tmp > gnulib.mk\r
312 rm -f gnulib.tmp\r
313 Rem Create .d files for new files in lib/ and lib/malloc/\r
314 If Not Exist deps\stamp mkdir deps\r
315 for %%f in (*.c) do @call ..\msdos\depfiles.bat %%f\r
316 echo deps-stamp > deps\stamp\r
317 If Not Exist deps\malloc\stamp mkdir deps\malloc\r
318 for %%f in (malloc\*.c) do @call ..\msdos\depfiles.bat %%f\r
319 echo deps-stamp > deps\malloc\stamp\r
320 cd ..\r
321 rem   ----------------------------------------------------------------------\r
322 Echo Configuring the lisp directory...\r
323 cd lisp\r
324 If Exist gnus\.dir-locals.el update gnus/.dir-locals.el gnus/_dir-locals.el\r
325 sed -f ../msdos/sedlisp.inp < Makefile.in > Makefile\r
326 cd ..\r
327 rem   ----------------------------------------------------------------------\r
328 Echo Configuring the leim directory...\r
329 cd leim\r
330 sed -f ../msdos/sedleim.inp < Makefile.in > Makefile\r
331 cd ..\r
332 rem   ----------------------------------------------------------------------\r
333 If Not Exist admin\unidata goto noadmin\r
334 Echo Configuring the admin/unidata directory...\r
335 cd admin\unidata\r
336 sed -f ../../msdos/sedadmin.inp < Makefile.in > Makefile\r
337 Echo Configuring the admin/charsets directory...\r
338 cd ..\charsets\r
339 sed -f ../../msdos/sedadmin.inp < Makefile.in > Makefile\r
340 Echo Configuring the admin/grammars directory...\r
341 cd ..\grammars\r
342 sed -f ../../msdos/sedadmin.inp < Makefile.in > Makefile\r
343 cd ..\..\r
344 :noadmin\r
345 rem   ----------------------------------------------------------------------\r
346 Echo Configuring the main directory...\r
347 If Exist .dir-locals.el update .dir-locals.el _dir-locals.el\r
348 If Exist src\.dbxinit update src/.dbxinit src/_dbxinit\r
349 Echo Looking for the GDB init file...\r
350 If Exist src\.gdbinit update src/.gdbinit src/_gdbinit\r
351 If Exist src\_gdbinit goto gdbinitOk\r
352 Echo ERROR:\r
353 Echo I cannot find the GDB init file.  It was called ".gdbinit" in\r
354 Echo the Emacs distribution, but was probably renamed to some other\r
355 Echo name without the leading dot when you untarred the archive.\r
356 Echo It should be in the "src/" subdirectory.  Please make sure this\r
357 Echo file exists and is called "_gdbinit" with a leading underscore.\r
358 Echo Then run CONFIG.BAT again with the same arguments you did now.\r
359 goto End\r
360 :gdbinitOk\r
361 Echo Looking for the GDB init file...found\r
362 rem GNUMakefile is not appropriate for MS-DOS so move it out of the way\r
363 If Exist GNUmakefile mv -f GNUmakefile GNUmakefile.unix\r
364 copy msdos\mainmake.v2 Makefile >nul\r
365 rem   ----------------------------------------------------------------------\r
366 goto End\r
367 :SmallEnv\r
368 echo Your environment size is too small.  Please enlarge it and run me again.\r
369 echo For example, type "command.com /e:2048" to have 2048 bytes available.\r
370 set $foo$=\r
371 :end\r
372 set X11=\r
373 set nodebug=\r
374 set djgpp_ver=\r
375 set sys_malloc=\r
376 set libxml=\r
377 set emver=\r