Mercurial > emacs
annotate config.bat @ 28923:dcafe3c9cd6c
(sh-while-getopts) <sh>: Handle case that
user-specified option string is empty.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Mon, 15 May 2000 20:14:39 +0000 |
| parents | a723efe4f841 |
| children | 7e7a2522a302 |
| rev | line source |
|---|---|
| 5484 | 1 @echo off |
| 2 rem ---------------------------------------------------------------------- | |
| 3 rem Configuration script for MSDOS | |
|
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
4 rem Copyright (C) 1994 Free Software Foundation, Inc. |
|
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
5 |
| 5484 | 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 | |
| 15742 | 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. | |
| 5484 | 22 rem ---------------------------------------------------------------------- |
| 23 rem YOU'LL NEED THE FOLLOWING UTILITIES TO MAKE EMACS: | |
| 24 rem | |
|
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
25 rem + msdos version 3 or better. |
|
14976
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
26 rem + djgpp version 1.12maint1 or later (version 2.0 or later recommended). |
|
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
27 rem + make utility that allows breaking of the 128 chars limit on |
|
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
28 rem command lines. ndmake (as of version 4.5) won't work due to a |
|
13927
327ff78701e0
Discuss djgpp version; eliminate mention of Simtel.
Richard M. Stallman <rms@gnu.org>
parents:
12992
diff
changeset
|
29 rem line length limit. The make that comes with djgpp does work. |
|
14976
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
30 rem + rm and mv (from GNU file utilities). |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
31 rem + sed (you can use the port that comes with DJGPP). |
|
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
32 rem |
|
14976
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
33 rem You should be able to get all the above utilities from any SimTel |
|
21582
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
34 rem repository, e.g. ftp.simtel.net, in the directory |
|
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
35 rem "pub/simtelnet/gnu/djgpp/v2gnu". As usual, please use your local |
|
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
36 rem mirroring site to reduce trans-Atlantic traffic. |
| 5484 | 37 rem ---------------------------------------------------------------------- |
| 9570 | 38 set X11= |
| 39 set nodebug= | |
|
15007
5baafbcd9dc2
(djgpp_ver): Variable renamed from djgpp-ver.
Richard M. Stallman <rms@gnu.org>
parents:
14976
diff
changeset
|
40 set djgpp_ver= |
|
21582
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
41 if "%1" == "" goto usage |
|
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
42 rem ---------------------------------------------------------------------- |
|
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
43 rem See if their environment is large enough. We need 28 bytes. |
|
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
44 set $foo$=789012345678901234567 |
|
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
45 if not "%$foo$%" == "789012345678901234567" goto SmallEnv |
|
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
46 set $foo$= |
| 9570 | 47 :again |
| 48 if "%1" == "" goto usage | |
| 49 if "%1" == "--with-x" goto withx | |
| 50 if "%1" == "--no-debug" goto nodebug | |
| 5484 | 51 if "%1" == "msdos" goto msdos |
| 52 :usage | |
| 9570 | 53 echo Usage: config [--with-x] [--no-debug] msdos |
| 54 echo [Read the script before you run it.] | |
| 5484 | 55 goto end |
| 56 rem ---------------------------------------------------------------------- | |
| 9570 | 57 :withx |
| 58 set X11=Y | |
| 59 shift | |
| 60 goto again | |
| 61 rem ---------------------------------------------------------------------- | |
| 62 :nodebug | |
| 63 set nodebug=Y | |
| 64 shift | |
| 65 goto again | |
|
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
66 rem ---------------------------------------------------------------------- |
| 5484 | 67 :msdos |
|
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
68 Echo Checking whether 'sed' is available... |
|
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
69 sed -e "w junk.$$$" <Nul |
| 9570 | 70 If Exist junk.$$$ Goto sedOk |
|
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
71 Echo To configure 'Emacs' you need to have 'sed'! |
| 9570 | 72 Goto End |
| 73 :sedOk | |
|
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
74 Echo Checking whether 'rm' is available... |
| 9570 | 75 rm -f junk.$$$ |
| 76 If Not Exist junk.$$$ Goto rmOk | |
|
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
77 Echo To configure 'Emacs' you need to have 'rm'! |
| 9570 | 78 Goto End |
| 79 :rmOk | |
|
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
80 Echo Checking whether 'mv' is available... |
| 9570 | 81 rm -f junk.1 junk.2 |
| 82 echo foo >junk.1 | |
|
16489
a6df390c0f5e
Make sure `mv' supports forward slashes and -f.
Richard M. Stallman <rms@gnu.org>
parents:
15742
diff
changeset
|
83 mv junk.1 ./junk.2 |
| 9570 | 84 If Exist junk.2 Goto mvOk |
|
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
85 Echo To configure 'Emacs' you need to have 'mv'! |
| 9570 | 86 rm -f junk.1 |
| 87 Goto End | |
| 88 :mvOk | |
| 89 rm -f junk.2 | |
|
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
90 Echo Checking whether 'gcc' is available... |
| 9570 | 91 echo main(){} >junk.c |
| 92 gcc -c junk.c | |
| 93 if exist junk.o goto gccOk | |
|
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
94 Echo To configure 'Emacs' you need to have 'gcc'! |
| 9570 | 95 rm -f junk.c |
| 96 Goto End | |
| 97 :gccOk | |
|
15020
85feb24c0ac5
With DJGPP v1.x, use `COFF2EXE' to produce JUNK.EXE test program.
Richard M. Stallman <rms@gnu.org>
parents:
15007
diff
changeset
|
98 rm -f junk.c junk.o junk junk.exe |
|
14976
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
99 Echo Checking what version of DJGPP is installed... |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
100 If Not "%DJGPP%" == "" goto djgppOk |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
101 Echo To compile 'Emacs' under MS-DOS you MUST have DJGPP installed! |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
102 Goto End |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
103 :djgppOk |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
104 echo int main() >junk.c |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
105 echo #ifdef __DJGPP__ >>junk.c |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
106 echo {return (__DJGPP__)*10;} >>junk.c |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
107 echo #else >>junk.c |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
108 echo #ifdef __GO32__ >>junk.c |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
109 echo {return 10;} >>junk.c |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
110 echo #else >>junk.c |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
111 echo {return 0;} >>junk.c |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
112 echo #endif >>junk.c |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
113 echo #endif >>junk.c |
|
15020
85feb24c0ac5
With DJGPP v1.x, use `COFF2EXE' to produce JUNK.EXE test program.
Richard M. Stallman <rms@gnu.org>
parents:
15007
diff
changeset
|
114 gcc -o junk junk.c |
|
85feb24c0ac5
With DJGPP v1.x, use `COFF2EXE' to produce JUNK.EXE test program.
Richard M. Stallman <rms@gnu.org>
parents:
15007
diff
changeset
|
115 if not exist junk.exe coff2exe junk |
|
14976
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
116 junk |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
117 If ErrorLevel 10 Goto go32Ok |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
118 rm -f junk.c junk junk.exe |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
119 Echo To compile 'Emacs' under MS-DOS you MUST have DJGPP installed! |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
120 Goto End |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
121 :go32Ok |
|
15007
5baafbcd9dc2
(djgpp_ver): Variable renamed from djgpp-ver.
Richard M. Stallman <rms@gnu.org>
parents:
14976
diff
changeset
|
122 set djgpp_ver=1 |
|
5baafbcd9dc2
(djgpp_ver): Variable renamed from djgpp-ver.
Richard M. Stallman <rms@gnu.org>
parents:
14976
diff
changeset
|
123 If ErrorLevel 20 set djgpp_ver=2 |
|
14976
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
124 rm -f junk.c junk junk.exe |
|
15007
5baafbcd9dc2
(djgpp_ver): Variable renamed from djgpp-ver.
Richard M. Stallman <rms@gnu.org>
parents:
14976
diff
changeset
|
125 Echo Configuring for DJGPP Version %DJGPP_VER% ... |
| 9570 | 126 Rem ---------------------------------------------------------------------- |
| 5484 | 127 Echo Configuring the source directory... |
| 128 cd src | |
| 129 | |
|
24528
440fb6df32c8
Use epaths.* instead of paths.*.
Eli Zaretskii <eliz@gnu.org>
parents:
24018
diff
changeset
|
130 rem Create "epaths.h" |
|
440fb6df32c8
Use epaths.* instead of paths.*.
Eli Zaretskii <eliz@gnu.org>
parents:
24018
diff
changeset
|
131 sed -f ../msdos/sed4.inp <epaths.in >epaths.tmp |
|
440fb6df32c8
Use epaths.* instead of paths.*.
Eli Zaretskii <eliz@gnu.org>
parents:
24018
diff
changeset
|
132 update epaths.tmp epaths.h >nul |
|
440fb6df32c8
Use epaths.* instead of paths.*.
Eli Zaretskii <eliz@gnu.org>
parents:
24018
diff
changeset
|
133 rm -f epaths.tmp |
| 5484 | 134 |
| 135 rem Create "config.h" | |
| 9570 | 136 rm -f config.h2 config.tmp |
|
18767
31e6205f80b6
Use `sed' instead of `cp', which might not be installed.
Richard M. Stallman <rms@gnu.org>
parents:
16489
diff
changeset
|
137 sed -e '' config.in > config.tmp |
|
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
138 if "%X11%" == "" goto src4 |
|
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
139 sed -f ../msdos/sed2x.inp <config.in >config.tmp |
|
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
140 :src4 |
| 9570 | 141 sed -f ../msdos/sed2.inp <config.tmp >config.h2 |
| 142 update config.h2 config.h >nul | |
| 143 rm -f config.tmp config.h2 | |
| 5484 | 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 | |
|
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
148 rem Create "makefile" from "makefile.in". |
|
20284
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
149 rm -f Makefile junk.c |
|
28767
a723efe4f841
Identify the beginning of cpp stuff in src/Makefile.in and
Eli Zaretskii <eliz@gnu.org>
parents:
25169
diff
changeset
|
150 sed -e "1,/== start of cpp stuff ==/s@^# .*$@@" <Makefile.in >junk.c |
|
15007
5baafbcd9dc2
(djgpp_ver): Variable renamed from djgpp-ver.
Richard M. Stallman <rms@gnu.org>
parents:
14976
diff
changeset
|
151 If "%DJGPP_VER%" == "1" Goto mfV1 |
|
20284
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
152 gcc -E junk.c | sed -f ../msdos/sed1v2.inp >Makefile |
|
14976
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
153 goto mfDone |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
154 :mfV1 |
|
20284
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
155 gcc -E junk.c | sed -f ../msdos/sed1.inp >Makefile |
|
14976
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
156 :mfDone |
|
5486
c87d1cd3f62a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5484
diff
changeset
|
157 rm -f junk.c |
|
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
158 |
| 9570 | 159 if "%X11%" == "" goto src5 |
|
20284
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
160 mv Makefile makefile.tmp |
|
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
161 sed -f ../msdos/sed1x.inp <makefile.tmp >Makefile |
| 9570 | 162 rm -f makefile.tmp |
| 163 :src5 | |
| 164 | |
| 165 if "%nodebug%" == "" goto src6 | |
|
25169
827d4eface8f
Make --no-debug work again by removing -gcoff.
Eli Zaretskii <eliz@gnu.org>
parents:
24528
diff
changeset
|
166 sed -e "/^CFLAGS *=/s/ *-gcoff//" <Makefile >makefile.tmp |
|
20284
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
167 sed -e "/^LDFLAGS *=/s/=/=-s/" <makefile.tmp >Makefile |
|
14976
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
168 rm -f makefile.tmp |
| 9570 | 169 :src6 |
| 5484 | 170 cd .. |
| 171 rem ---------------------------------------------------------------------- | |
| 172 Echo Configuring the library source directory... | |
| 173 cd lib-src | |
| 174 rem Create "makefile" from "makefile.in". | |
|
28767
a723efe4f841
Identify the beginning of cpp stuff in src/Makefile.in and
Eli Zaretskii <eliz@gnu.org>
parents:
25169
diff
changeset
|
175 sed -e "1,/== start of cpp stuff ==/s@^# .*$@@" <Makefile.in >junk.c |
|
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
176 gcc -E -I. -I../src junk.c | sed -e "s/^ / /" -e "/^#/d" -e "/^[ ]*$/d" >makefile.new |
|
15007
5baafbcd9dc2
(djgpp_ver): Variable renamed from djgpp-ver.
Richard M. Stallman <rms@gnu.org>
parents:
14976
diff
changeset
|
177 If "%DJGPP_VER%" == "2" goto libsrc-v2 |
|
20284
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
178 sed -f ../msdos/sed3.inp <makefile.new >Makefile |
|
14976
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
179 Goto libsrc2 |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
180 :libsrc-v2 |
|
20284
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
181 sed -f ../msdos/sed3v2.inp <makefile.new >Makefile |
|
14976
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
182 :libsrc2 |
| 9570 | 183 rm -f makefile.new junk.c |
|
14976
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
184 if "%nodebug%" == "" goto libsrc3 |
|
25169
827d4eface8f
Make --no-debug work again by removing -gcoff.
Eli Zaretskii <eliz@gnu.org>
parents:
24528
diff
changeset
|
185 sed -e "/^CFLAGS *=/s/ *-gcoff//" <Makefile >makefile.tmp |
|
20284
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
186 sed -e "/^ALL_CFLAGS *=/s/=/= -s/" <makefile.tmp >Makefile |
|
14976
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
187 rm -f makefile.tmp |
|
63951d3f3995
Set djgpp-ver, and unset it at the end.
Richard M. Stallman <rms@gnu.org>
parents:
13927
diff
changeset
|
188 :libsrc3 |
| 5484 | 189 cd .. |
| 190 rem ---------------------------------------------------------------------- | |
| 9570 | 191 if "%X11%" == "" goto oldx1 |
| 192 Echo Configuring the oldxmenu directory... | |
| 193 cd oldxmenu | |
|
20284
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
194 sed -f ../msdos/sed5x.inp <Makefile.in >Makefile |
| 9570 | 195 if "%nodebug%" == "" goto oldx2 |
|
25169
827d4eface8f
Make --no-debug work again by removing -gcoff.
Eli Zaretskii <eliz@gnu.org>
parents:
24528
diff
changeset
|
196 sed -e "/^CFLAGS *=/s/ *-gcoff//" <Makefile >makefile.tmp |
|
20284
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
197 mv -f makefile.tmp Makefile |
| 9570 | 198 :oldx2 |
| 199 cd .. | |
| 200 :oldx1 | |
| 201 rem ---------------------------------------------------------------------- | |
|
20284
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
202 Echo Configuring the manual directory... |
|
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
203 cd man |
|
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
204 sed -f ../msdos/sed6.inp < Makefile.in > Makefile |
|
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
205 cd .. |
|
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
206 rem ---------------------------------------------------------------------- |
|
24018
b918e6330d6e
Support configuring with leim.
Eli Zaretskii <eliz@gnu.org>
parents:
21582
diff
changeset
|
207 If not Exist leim\quail\latin-pre.el goto maindir |
|
b918e6330d6e
Support configuring with leim.
Eli Zaretskii <eliz@gnu.org>
parents:
21582
diff
changeset
|
208 Echo Configuring the leim directory... |
|
b918e6330d6e
Support configuring with leim.
Eli Zaretskii <eliz@gnu.org>
parents:
21582
diff
changeset
|
209 cd leim |
|
b918e6330d6e
Support configuring with leim.
Eli Zaretskii <eliz@gnu.org>
parents:
21582
diff
changeset
|
210 sed -f ../msdos/sedleim.inp < Makefile.in > Makefile |
|
b918e6330d6e
Support configuring with leim.
Eli Zaretskii <eliz@gnu.org>
parents:
21582
diff
changeset
|
211 cd .. |
|
b918e6330d6e
Support configuring with leim.
Eli Zaretskii <eliz@gnu.org>
parents:
21582
diff
changeset
|
212 rem ---------------------------------------------------------------------- |
|
b918e6330d6e
Support configuring with leim.
Eli Zaretskii <eliz@gnu.org>
parents:
21582
diff
changeset
|
213 :maindir |
| 5484 | 214 Echo Configuring the main directory... |
|
15023
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
215 If "%DJGPP_VER%" == "1" goto mainv1 |
|
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
216 Echo Looking for the GDB init file... |
|
19567
3f6f67f86a48
If src/_gdbinit doesn't exist, try using src/.gdbinit to create it (for
Eli Zaretskii <eliz@gnu.org>
parents:
18767
diff
changeset
|
217 If not Exist src\_gdbinit If Exist src\.gdbinit update src/.gdbinit src/_gdbinit |
|
15023
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
218 If Exist src\_gdbinit goto gdbinitOk |
|
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
219 Echo ERROR: |
|
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
220 Echo I cannot find the GDB init file. It was called ".gdbinit" in |
|
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
221 Echo the Emacs distribution, but was probably renamed to some other |
|
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
222 Echo name without the leading dot when you untarred the archive. |
|
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
223 Echo It should be in the "src/" subdirectory. Please make sure this |
|
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
224 Echo file exists and is called "_gdbinit" with a leading underscore. |
|
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
225 Echo Then run CONFIG.BAT again with the same arguments you did now. |
|
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
226 goto End |
|
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
227 :gdbinitOk |
|
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
228 Echo Looking for the GDB init file...found |
|
20284
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
229 copy msdos\mainmake.v2 Makefile >nul |
|
15023
6f4dd53a62d4
Make sure the GDB init file is called src/_gdbinit;
Richard M. Stallman <rms@gnu.org>
parents:
15020
diff
changeset
|
230 :mainv1 |
|
20284
ff0f79a7b8b6
Configure the man subdirectory.
Eli Zaretskii <eliz@gnu.org>
parents:
19567
diff
changeset
|
231 If "%DJGPP_VER%" == "1" copy msdos\mainmake Makefile >nul |
| 5484 | 232 rem ---------------------------------------------------------------------- |
|
21582
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
233 goto End |
|
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
234 :SmallEnv |
|
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
235 echo Your environment size is too small. Please enlarge it and run me again. |
|
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
236 echo For example, type "command.com /e:2048" to have 2048 bytes available. |
|
4c2b38ea02fe
Make sure the environment is large enough to accomodate
Eli Zaretskii <eliz@gnu.org>
parents:
20284
diff
changeset
|
237 set $foo$= |
| 5484 | 238 :end |
|
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
239 set X11= |
| 9570 | 240 set nodebug= |
|
15007
5baafbcd9dc2
(djgpp_ver): Variable renamed from djgpp-ver.
Richard M. Stallman <rms@gnu.org>
parents:
14976
diff
changeset
|
241 set djgpp_ver= |
