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