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