Move the (require 'cl) to the front of the
[emacs.git] / config.bat
blob302eb24b0dcb176ab3e692d41af47fbe31b6ea45
1 @echo off\r
2 rem   ----------------------------------------------------------------------\r
3 rem   Configuration script for MSDOS\r
4 rem   Copyright (C) 1994 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 2, or (at your option)\r
11 rem   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; see the file COPYING.  If not, write to the\r
20 rem   Free Software Foundation, Inc., 59 Temple Place - Suite 330,\r
21 rem   Boston, MA 02111-1307, USA.\r
22 rem   ----------------------------------------------------------------------\r
23 rem   YOU'LL NEED THE FOLLOWING UTILITIES TO MAKE EMACS:\r
24 rem\r
25 rem   + msdos version 3 or better.\r
26 rem   + djgpp version 1.12maint1 or later (version 2.0 or later recommended).\r
27 rem   + make utility that allows breaking of the 128 chars limit on\r
28 rem     command lines.  ndmake (as of version 4.5) won't work due to a\r
29 rem     line length limit.  The make that comes with djgpp does work.\r
30 rem   + rm and mv (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 any SimTel\r
34 rem   repository, e.g. ftp.simtel.net, in the directory\r
35 rem   "pub/simtelnet/gnu/djgpp/v2gnu".  As usual, please use your local\r
36 rem   mirroring site to reduce trans-Atlantic traffic.\r
37 rem   ----------------------------------------------------------------------\r
38 set X11=\r
39 set nodebug=\r
40 set djgpp_ver=\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 :usage\r
53 echo Usage: config [--with-x] [--no-debug] msdos\r
54 echo [Read the script before you run it.]\r
55 goto end\r
56 rem   ----------------------------------------------------------------------\r
57 :withx\r
58 set X11=Y\r
59 shift\r
60 goto again\r
61 rem   ----------------------------------------------------------------------\r
62 :nodebug\r
63 set nodebug=Y\r
64 shift\r
65 goto again\r
66 rem   ----------------------------------------------------------------------\r
67 :msdos\r
68 Echo Checking whether 'sed' is available...\r
69 sed -e "w junk.$$$" <Nul\r
70 If Exist junk.$$$ Goto sedOk\r
71 Echo To configure 'Emacs' you need to have 'sed'!\r
72 Goto End\r
73 :sedOk\r
74 Echo Checking whether 'rm' is available...\r
75 rm -f junk.$$$\r
76 If Not Exist junk.$$$ Goto rmOk\r
77 Echo To configure 'Emacs' you need to have 'rm'!\r
78 Goto End\r
79 :rmOk\r
80 Echo Checking whether 'mv' is available...\r
81 rm -f junk.1 junk.2\r
82 echo foo >junk.1\r
83 mv junk.1 ./junk.2\r
84 If Exist junk.2 Goto mvOk\r
85 Echo To configure 'Emacs' you need to have 'mv'!\r
86 rm -f junk.1\r
87 Goto End\r
88 :mvOk\r
89 rm -f junk.2\r
90 Echo Checking whether 'gcc' is available...\r
91 echo main(){} >junk.c\r
92 gcc -c junk.c\r
93 if exist junk.o goto gccOk\r
94 Echo To configure 'Emacs' you need to have 'gcc'!\r
95 rm -f junk.c\r
96 Goto End\r
97 :gccOk\r
98 rm -f junk.c junk.o junk junk.exe\r
99 Echo Checking what version of DJGPP is installed...\r
100 If Not "%DJGPP%" == "" goto djgppOk\r
101 Echo To compile 'Emacs' under MS-DOS you MUST have DJGPP installed!\r
102 Goto End\r
103 :djgppOk\r
104 echo int main()           >junk.c\r
105 echo #ifdef __DJGPP__    >>junk.c\r
106 echo {return (__DJGPP__)*10;} >>junk.c\r
107 echo #else               >>junk.c\r
108 echo #ifdef __GO32__     >>junk.c\r
109 echo {return 10;}         >>junk.c\r
110 echo #else               >>junk.c\r
111 echo {return 0;}         >>junk.c\r
112 echo #endif              >>junk.c\r
113 echo #endif              >>junk.c\r
114 gcc -o junk junk.c\r
115 if not exist junk.exe coff2exe junk\r
116 junk\r
117 If ErrorLevel 10 Goto go32Ok\r
118 rm -f junk.c junk junk.exe\r
119 Echo To compile 'Emacs' under MS-DOS you MUST have DJGPP installed!\r
120 Goto End\r
121 :go32Ok\r
122 set djgpp_ver=1\r
123 If ErrorLevel 20 set djgpp_ver=2\r
124 rm -f junk.c junk junk.exe\r
125 rem DJECHO is used by the top-level Makefile\r
126 Echo Checking whether 'djecho' is available...\r
127 redir -o Nul -eo djecho -o junk.$$$ foo\r
128 If Exist junk.$$$ Goto djechoOk\r
129 Echo To build 'Emacs' you need the 'djecho.exe' program!\r
130 Echo 'djecho.exe' is part of 'djdevNNN.zip' basic DJGPP development kit.\r
131 Echo Versions of DJGPP before 2.02 called this program 'echo.exe'.\r
132 Echo Either unpack 'djecho.exe' from the 'djdevNNN.zip' archive,\r
133 Echo or, if you have 'echo.exe', copy it to 'djecho.exe'.\r
134 Echo Then run CONFIG.BAT again with the same arguments you did now.\r
135 Goto End\r
136 :djechoOk\r
137 rm -f junk.$$$\r
138 Echo Configuring for DJGPP Version %DJGPP_VER% ...\r
139 Rem   ----------------------------------------------------------------------\r
140 Echo Configuring the source directory...\r
141 cd src\r
143 rem   Create "epaths.h"\r
144 sed -f ../msdos/sed4.inp <epaths.in >epaths.tmp\r
145 update epaths.tmp epaths.h >nul\r
146 rm -f epaths.tmp\r
148 rem   Create "config.h"\r
149 rm -f config.h2 config.tmp\r
150 sed -e '' config.in > config.tmp\r
151 if "%X11%" == "" goto src4\r
152 sed -f ../msdos/sed2x.inp <config.in >config.tmp\r
153 :src4\r
154 sed -f ../msdos/sed2.inp <config.tmp >config.h2\r
155 update config.h2 config.h >nul\r
156 rm -f config.tmp config.h2\r
158 rem   On my system dir.h gets in the way.  It's a VMS file so who cares.\r
159 if exist dir.h ren dir.h vmsdir.h\r
161 rem   Create "makefile" from "makefile.in".\r
162 rm -f Makefile junk.c\r
163 sed -e "1,/== start of cpp stuff ==/s@^# .*$@@" <Makefile.in >junk.c\r
164 If "%DJGPP_VER%" == "1" Goto mfV1\r
165 gcc -E junk.c | sed -f ../msdos/sed1v2.inp >Makefile\r
166 goto mfDone\r
167 :mfV1\r
168 gcc -E junk.c | sed -f ../msdos/sed1.inp >Makefile\r
169 :mfDone\r
170 rm -f junk.c\r
172 if "%X11%" == "" goto src5\r
173 mv Makefile makefile.tmp\r
174 sed -f ../msdos/sed1x.inp <makefile.tmp >Makefile\r
175 rm -f makefile.tmp\r
176 :src5\r
178 if "%nodebug%" == "" goto src6\r
179 sed -e "/^CFLAGS *=/s/ *-gcoff//" <Makefile >makefile.tmp\r
180 sed -e "/^LDFLAGS *=/s/=/=-s/" <makefile.tmp >Makefile\r
181 rm -f makefile.tmp\r
182 :src6\r
183 cd ..\r
184 rem   ----------------------------------------------------------------------\r
185 Echo Configuring the library source directory...\r
186 cd lib-src\r
187 rem   Create "makefile" from "makefile.in".\r
188 sed -e "1,/== start of cpp stuff ==/s@^# .*$@@" <Makefile.in >junk.c\r
189 gcc -E -I. -I../src junk.c | sed -e "s/^ /      /" -e "/^#/d" -e "/^[   \f]*$/d" >makefile.new\r
190 If "%DJGPP_VER%" == "2" goto libsrc-v2\r
191 sed -f ../msdos/sed3.inp <makefile.new >Makefile\r
192 Goto libsrc2\r
193 :libsrc-v2\r
194 sed -f ../msdos/sed3v2.inp <makefile.new >Makefile\r
195 :libsrc2\r
196 rm -f makefile.new junk.c\r
197 if "%nodebug%" == "" goto libsrc3\r
198 sed -e "/^CFLAGS *=/s/ *-gcoff//" <Makefile >makefile.tmp\r
199 sed -e "/^ALL_CFLAGS *=/s/=/= -s/" <makefile.tmp >Makefile\r
200 rm -f makefile.tmp\r
201 :libsrc3\r
202 cd ..\r
203 rem   ----------------------------------------------------------------------\r
204 if "%X11%" == "" goto oldx1\r
205 Echo Configuring the oldxmenu directory...\r
206 cd oldxmenu\r
207 sed -f ../msdos/sed5x.inp <Makefile.in >Makefile\r
208 if "%nodebug%" == "" goto oldx2\r
209 sed -e "/^CFLAGS *=/s/ *-gcoff//" <Makefile >makefile.tmp\r
210 mv -f makefile.tmp Makefile\r
211 :oldx2\r
212 cd ..\r
213 :oldx1\r
214 rem   ----------------------------------------------------------------------\r
215 Echo Configuring the manual directory...\r
216 cd man\r
217 sed -f ../msdos/sed6.inp < Makefile.in > Makefile\r
218 cd ..\r
219 rem   ----------------------------------------------------------------------\r
220 Echo Configuring the lisp directory...\r
221 cd lisp\r
222 sed -f ../msdos/sedlisp.inp < Makefile.in > Makefile\r
223 cd ..\r
224 rem   ----------------------------------------------------------------------\r
225 If not Exist leim\quail\latin-pre.el goto maindir\r
226 Echo Configuring the leim directory...\r
227 cd leim\r
228 sed -f ../msdos/sedleim.inp < Makefile.in > Makefile\r
229 cd ..\r
230 rem   ----------------------------------------------------------------------\r
231 :maindir\r
232 Echo Configuring the main directory...\r
233 If "%DJGPP_VER%" == "1" goto mainv1\r
234 Echo Looking for the GDB init file...\r
235 If Exist src\.gdbinit update src/.gdbinit src/_gdbinit\r
236 If Exist src\_gdbinit goto gdbinitOk\r
237 Echo ERROR:\r
238 Echo I cannot find the GDB init file.  It was called ".gdbinit" in\r
239 Echo the Emacs distribution, but was probably renamed to some other\r
240 Echo name without the leading dot when you untarred the archive.\r
241 Echo It should be in the "src/" subdirectory.  Please make sure this\r
242 Echo file exists and is called "_gdbinit" with a leading underscore.\r
243 Echo Then run CONFIG.BAT again with the same arguments you did now.\r
244 goto End\r
245 :gdbinitOk\r
246 Echo Looking for the GDB init file...found\r
247 copy msdos\mainmake.v2 Makefile >nul\r
248 :mainv1\r
249 If "%DJGPP_VER%" == "1" copy msdos\mainmake Makefile >nul\r
250 rem   ----------------------------------------------------------------------\r
251 goto End\r
252 :SmallEnv\r
253 echo Your environment size is too small.  Please enlarge it and run me again.\r
254 echo For example, type "command.com /e:2048" to have 2048 bytes available.\r
255 set $foo$=\r
256 :end\r
257 set X11=\r
258 set nodebug=\r
259 set djgpp_ver=\r