]>
Commit | Line | Data |
---|---|---|
3768a1ae | 1 | @echo off\r |
02650b7f PE |
2 | Rem Configure Bison for DJGPP.\r |
3 | \r | |
90ddbd5e JMG |
4 | Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line\r |
5 | Rem format, or else stock DOS/Windows shells will refuse to run it.\r | |
6 | \r | |
02650b7f PE |
7 | Rem Copyright (C) 2005, 2006 Free Software Foundation, Inc.\r |
8 | \r | |
9 | Rem This program is free software; you can redistribute it and/or modify\r | |
10 | Rem it under the terms of the GNU General Public License as published by\r | |
11 | Rem the Free Software Foundation; either version 2, or (at your option)\r | |
12 | Rem any later version.\r | |
13 | \r | |
14 | Rem This program is distributed in the hope that it will be useful,\r | |
15 | Rem but WITHOUT ANY WARRANTY; without even the implied warranty of\r | |
16 | Rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r | |
17 | Rem GNU General Public License for more details.\r | |
18 | \r | |
19 | Rem You should have received a copy of the GNU General Public License\r | |
20 | Rem along with this program; if not, write to the Free Software Foundation,\r | |
21 | Rem Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\r | |
22 | \r | |
23 | echo Configuring Bison for DJGPP v2.x...\r | |
3768a1ae JMG |
24 | \r |
25 | Rem The SmallEnv tests protect against fixed and too small size\r | |
26 | Rem of the environment in stock DOS shell.\r | |
27 | \r | |
28 | Rem Find out if NLS is wanted or not,\r | |
29 | Rem if dependency-tracking is wanted or not,\r | |
30 | Rem if caching is wanted or not\r | |
31 | Rem and where the sources are.\r | |
32 | Rem We always default to NLS support,\r | |
33 | Rem no dependency tracking\r | |
34 | Rem and to in place configuration.\r | |
35 | set ARGS=\r | |
36 | set NLS=enabled\r | |
37 | if not "%NLS%" == "enabled" goto SmallEnv\r | |
38 | set CACHING=enabled\r | |
39 | if not "%CACHING%" == "enabled" goto SmallEnv\r | |
40 | set DEPENDENCY_TRACKING=disabled\r | |
41 | if not "%DEPENDENCY_TRACKING%" == "disabled" goto SmallEnv\r | |
42 | set LIBICONV_PREFIX=disabled\r | |
43 | if not "%LIBICONV_PREFIX%" == "disabled" goto SmallEnv\r | |
44 | set LIBINTL_PREFIX=disabled\r | |
45 | if not "%LIBINTL_PREFIX%" == "disabled" goto SmallEnv\r | |
46 | set HTML=enabled\r | |
47 | if not "%HTML%" == "enabled" goto SmallEnv\r | |
48 | set XSRC=.\r | |
49 | if not "%XSRC%" == "." goto SmallEnv\r | |
50 | \r | |
51 | Rem Loop over all arguments.\r | |
52 | Rem Special arguments are: NLS, XSRC, CACHE, STATIC_LIBS, LIBICONV_PREFIX, LIBINTL_PREFIX and DEPS.\r | |
53 | Rem All other arguments are stored into ARGS.\r | |
54 | :ArgLoop\r | |
55 | if "%1" == "nls" goto NextArgument\r | |
56 | if "%1" == "NLS" goto NextArgument\r | |
57 | if "%1" == "no-nls" goto NoNLS\r | |
58 | if "%1" == "no-NLS" goto NoNLS\r | |
59 | if "%1" == "NO-NLS" goto NoNLS\r | |
60 | goto CachingOption\r | |
61 | :NoNLS\r | |
62 | if "%1" == "no-nls" set NLS=disabled\r | |
63 | if "%1" == "no-NLS" set NLS=disabled\r | |
64 | if "%1" == "NO-NLS" set NLS=disabled\r | |
65 | if not "%NLS%" == "disabled" goto SmallEnv\r | |
66 | goto NextArgument\r | |
67 | :CachingOption\r | |
68 | if "%1" == "cache" goto NextArgument\r | |
69 | if "%1" == "CACHE" goto NextArgument\r | |
70 | if "%1" == "no-cache" goto NoCaching\r | |
71 | if "%1" == "no-CACHE" goto NoCaching\r | |
72 | if "%1" == "NO-CACHE" goto NoCaching\r | |
73 | goto DependencyOption\r | |
74 | :NoCaching\r | |
75 | if "%1" == "no-cache" set CACHING=disabled\r | |
76 | if "%1" == "no-CACHE" set CACHING=disabled\r | |
77 | if "%1" == "NO-CACHE" set CACHING=disabled\r | |
78 | if not "%CACHING%" == "disabled" goto SmallEnv\r | |
79 | goto NextArgument\r | |
80 | :DependencyOption\r | |
81 | if "%1" == "no-dep" goto NextArgument\r | |
82 | if "%1" == "no-DEP" goto NextArgument\r | |
83 | if "%1" == "NO-DEP" goto NextArgument\r | |
84 | if "%1" == "dep" goto DependecyTraking\r | |
85 | if "%1" == "DEP" goto DependecyTraking\r | |
86 | goto LibiconvPrefixOption\r | |
87 | :DependecyTraking\r | |
88 | if "%1" == "dep" set DEPENDENCY_TRACKING=enabled\r | |
89 | if "%1" == "DEP" set DEPENDENCY_TRACKING=enabled\r | |
90 | if not "%DEPENDENCY_TRACKING%" == "enabled" goto SmallEnv\r | |
91 | goto NextArgument\r | |
92 | :LibiconvPrefixOption\r | |
93 | if "%1" == "no-libiconvprefix" goto NextArgument\r | |
94 | if "%1" == "no-LIBICONVPREFIX" goto NextArgument\r | |
95 | if "%1" == "NO-LIBICONVPREFIX" goto NextArgument\r | |
96 | if "%1" == "libiconvprefix" goto WithLibiconvPrefix\r | |
97 | if "%1" == "LIBICONVPREFIX" goto WithLibiconvPrefix\r | |
98 | goto LibintlPrefixOption\r | |
99 | :WithLibiconvPrefix\r | |
100 | if "%1" == "libiconvprefix" set LIBICONV_PREFIX=enabled\r | |
101 | if "%1" == "LIBICONVPREFIX" set LIBICONV_PREFIX=enabled\r | |
102 | if not "%LIBICONV_PREFIX%" == "enabled" goto SmallEnv\r | |
103 | goto NextArgument\r | |
104 | :LibintlPrefixOption\r | |
105 | if "%1" == "no-libiconvprefix" goto NextArgument\r | |
106 | if "%1" == "no-LIBICONVPREFIX" goto NextArgument\r | |
107 | if "%1" == "NO-LIBICONVPREFIX" goto NextArgument\r | |
108 | if "%1" == "libintlprefix" goto _WithLibintlPrefix\r | |
109 | if "%1" == "LIBINTLPREFIX" goto _WithLibintlPrefix\r | |
110 | goto HTMLOption\r | |
111 | :_WithLibintlPrefix\r | |
112 | if "%1" == "libintlprefix" set LIBINTL_PREFIX=enabled\r | |
113 | if "%1" == "LIBINTLPREFIX" set LIBINTL_PREFIX=enabled\r | |
114 | if not "%LIBINTL_PREFIX%" == "enabled" goto SmallEnv\r | |
115 | :HTMLOption\r | |
116 | if "%1" == "withhtml" goto NextArgument\r | |
117 | if "%1" == "withHTML" goto NextArgument\r | |
118 | if "%1" == "WITHHTML" goto NextArgument\r | |
119 | if "%1" == "withouthtml" goto _WithoutHTML\r | |
120 | if "%1" == "withoutHTML" goto _WithoutHTML\r | |
121 | if "%1" == "WITHOUTHTML" goto _WithoutHTML\r | |
122 | goto SrcDirOption\r | |
123 | :_WithoutHTML\r | |
124 | if "%1" == "withouthtml" set HTML=disabled\r | |
125 | if "%1" == "withoutHTML" set HTML=disabled\r | |
126 | if "%1" == "WITHOUTHTML" set HTML=disabled\r | |
127 | if not "%HTML%" == "disabled" goto SmallEnv\r | |
128 | goto NextArgument\r | |
129 | :SrcDirOption\r | |
130 | echo %1 | grep -q "/"\r | |
131 | if errorlevel 1 goto CollectArgument\r | |
132 | set XSRC=%1\r | |
133 | if not "%XSRC%" == "%1" goto SmallEnv\r | |
134 | goto NextArgument\r | |
135 | :CollectArgument\r | |
136 | set _ARGS=%ARGS% %1\r | |
137 | if not "%_ARGS%" == "%ARGS% %1" if not "%_ARGS%" == "%ARGS%%1" goto SmallEnv\r | |
138 | echo %_ARGS% | grep -q "[^ ]"\r | |
139 | if not errorlevel 0 set ARGS=%_ARGS%\r | |
140 | set _ARGS=\r | |
141 | :NextArgument\r | |
142 | shift\r | |
143 | if not "%1" == "" goto ArgLoop\r | |
144 | \r | |
145 | Rem Create an arguments file for the configure script.\r | |
c4d50517 JMG |
146 | echo --srcdir=%XSRC% > args\r |
147 | if "%CACHING%" == "enabled" echo --cache-file=%XSRC%/djgpp/config.cache >> args\r | |
148 | if "%DEPENDENCY_TRACKING%" == "enabled" echo --enable-dependency-tracking >> args\r | |
149 | if "%DEPENDENCY_TRACKING%" == "disabled" echo --disable-dependency-tracking >> args\r | |
150 | if "%LIBICONV_PREFIX%" == "enabled" echo --with-libiconv-prefix >> args\r | |
151 | if "%LIBICONV_PREFIX%" == "disabled" echo --without-libiconv-prefix >> args\r | |
152 | if "%LIBINTL_PREFIX%" == "enabled" echo --with-libintl-prefix >> args\r | |
153 | if "%LIBINTL_PREFIX%" == "disabled" echo --without-libintl-prefix >> args\r | |
154 | if "%HTML%" == "enabled" echo --enable-html >> args\r | |
155 | if "%HTML%" == "disabled" echo --disable-html >> args\r | |
156 | if not "%ARGS%" == "" echo %ARGS% >> args\r | |
3768a1ae JMG |
157 | set ARGS=\r |
158 | set CACHING=\r | |
159 | set DEPENDENCY_TRACKING=\r | |
1bddda4d JMG |
160 | set LIBICONV_PREFIX=\r |
161 | set LIBINTL_PREFIX=\r | |
162 | set HTML=\r | |
3768a1ae JMG |
163 | \r |
164 | if "%XSRC%" == "." goto InPlace\r | |
165 | \r | |
166 | :NotInPlace\r | |
12ab1c9d | 167 | redir -e /dev/null update %XSRC%/configure.org ./configure\r |
3768a1ae JMG |
168 | test -f ./configure\r |
169 | if errorlevel 1 update %XSRC%/configure ./configure\r | |
170 | \r | |
171 | :InPlace\r | |
172 | Rem Update configuration files\r | |
173 | echo Updating configuration scripts...\r | |
12ab1c9d JMG |
174 | test -f ./configure.org\r |
175 | if errorlevel 1 update configure configure.org\r | |
176 | sed -f %XSRC%/djgpp/config.sed configure.org > configure\r | |
3768a1ae JMG |
177 | if errorlevel 1 goto SedError\r |
178 | \r | |
179 | Rem Make sure they have a config.site file\r | |
180 | set CONFIG_SITE=%XSRC%/djgpp/config.site\r | |
181 | if not "%CONFIG_SITE%" == "%XSRC%/djgpp/config.site" goto SmallEnv\r | |
182 | \r | |
7b30971d JMG |
183 | Rem inttypes_.h and inttypes.h map to the same 8.3 alias.\r |
184 | test -f %XSRC%/lib/inttypes_.h\r | |
185 | if not errorlevel 1 mv -f %XSRC%/lib/inttypes_.h %XSRC%/lib/_inttypes.h\r | |
186 | \r | |
3768a1ae JMG |
187 | Rem Make sure crucial file names are not munged by unpacking\r |
188 | test -f %XSRC%/po/Makefile.in.in\r | |
189 | if not errorlevel 1 mv -f %XSRC%/po/Makefile.in.in %XSRC%/po/Makefile.in-in\r | |
190 | test -f %XSRC%/po/Makefile.in-in\r | |
191 | if errorlevel 1 mv -f %XSRC%/po/Makefile.in %XSRC%/po/Makefile.in-in\r | |
ebe8ee42 JMG |
192 | test -f %XSRC%/po/Makefile.in-in\r |
193 | if errorlevel 1 mv -f %XSRC%/po/Makefile.inin %XSRC%/po/Makefile.in-in\r | |
194 | test -f %XSRC%/po/Makefile.in-in\r | |
195 | if errorlevel 1 mv -f %XSRC%/po/Makefile.in_in %XSRC%/po/Makefile.in-in\r | |
196 | test -f %XSRC%/po/Makefile.in-in\r | |
197 | if errorlevel 1 mv -f %XSRC%/po/Makefile_in.in %XSRC%/po/Makefile.in-in\r | |
3768a1ae JMG |
198 | test -f %XSRC%/runtime-po/Makefile.in.in\r |
199 | if not errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in.in %XSRC%/runtime-po/Makefile.in-in\r | |
200 | test -f %XSRC%/runtime-po/Makefile.in-in\r | |
201 | if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in %XSRC%/runtime-po/Makefile.in-in\r | |
ebe8ee42 JMG |
202 | test -f %XSRC%/runtime-po/Makefile.in-in\r |
203 | if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.inin %XSRC%/runtime-po/Makefile.in-in\r | |
204 | test -f %XSRC%/runtime-po/Makefile.in-in\r | |
205 | if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in_in %XSRC%/runtime-po/Makefile.in-in\r | |
206 | test -f %XSRC%/runtime-po/Makefile.in-in\r | |
207 | if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile_in.in %XSRC%/runtime-po/Makefile.in-in\r | |
3768a1ae JMG |
208 | test -f %XSRC%/data/c++.m4\r |
209 | if not errorlevel 1 mv -f %XSRC%/data/c++.m4 %XSRC%/data/cxx.m4\r | |
210 | test -f %XSRC%/data/cxx.m4\r | |
211 | if errorlevel 1 mv -f %XSRC%/data/cpp.m4 %XSRC%/data/cxx.m4\r | |
0d1c1cab JMG |
212 | test -f %XSRC%/data/c++-skel.m4\r |
213 | if not errorlevel 1 mv -f %XSRC%/data/c++-skel.m4 %XSRC%/data/cxx-skel.m4\r | |
214 | test -f %XSRC%/data/cxx-skel.m4\r | |
215 | if errorlevel 1 mv -f %XSRC%/data/cpp-skel.m4 %XSRC%/data/cxx-skel.m4\r | |
216 | \r | |
90ddbd5e JMG |
217 | :scan_gram_c_Test\r |
218 | test -f %XSRC%/src/c-scan-gram.c\r | |
219 | if not errorlevel 1 goto scan_skel_c_Test\r | |
220 | test -f %XSRC%/src/scan-gram-c.c\r | |
221 | if not errorlevel 1 mv -f %XSRC%/src/scan-gram-c.c %XSRC%/src/c-scan-gram.c\r | |
222 | :scan_skel_c_Test\r | |
223 | test -f %XSRC%/src/c-scan-skel.c\r | |
224 | if not errorlevel 1 goto FixFiles\r | |
225 | test -f %XSRC%/src/scan-skel-c.c\r | |
226 | if not errorlevel 1 mv -f %XSRC%/src/scan-skel-c.c %XSRC%/src/c-scan-skel.c\r | |
3768a1ae | 227 | \r |
90ddbd5e | 228 | :FixFiles\r |
c59929c3 | 229 | Rem Fix data/lalr1.cc and data/location.cc to reflect the renaming of c++.m4\r |
3768a1ae JMG |
230 | sed "s/c++\.m4/cxx.m4/" %XSRC%/data/lalr1.cc > lalr1.cc\r |
231 | if errorlevel 1 goto lalr1_ccFileError\r | |
232 | mv ./lalr1.cc %XSRC%/data/lalr1.cc\r | |
c59929c3 | 233 | sed "s/c++\.m4/cxx.m4/" %XSRC%/data/location.cc > location.cc\r |
0d1c1cab | 234 | if errorlevel 1 goto location_ccFileError\r |
c59929c3 | 235 | mv ./location.cc %XSRC%/data/location.cc\r |
b9471884 | 236 | sed "s/c++\.m4/cxx.m4/" %XSRC%/data/glr.cc > glr.cc\r |
0d1c1cab | 237 | if errorlevel 1 goto glr_ccFileError\r |
b9471884 | 238 | mv ./glr.cc %XSRC%/data/glr.cc\r |
3768a1ae | 239 | \r |
0d1c1cab JMG |
240 | Rem Fix src/getargs.c to reflect the renaming of c++-skel.m4\r |
241 | sed "s/c++-skel\.m4/cxx-skel.m4/" %XSRC%/src/getargs.c > getargs.c\r | |
242 | if errorlevel 1 goto getargs_cFileError\r | |
243 | mv ./getargs.c %XSRC%/src/getargs.c\r | |
244 | \r | |
3768a1ae JMG |
245 | Rem Define DJGPP specific defs in config.hin\r |
246 | echo Editing config.hin...\r | |
12ab1c9d JMG |
247 | test -f %XSRC%/lib/config_h.org\r |
248 | if errorlevel 1 update %XSRC%/lib/config.hin %XSRC%/lib/config_h.org\r | |
249 | sed -f %XSRC%/djgpp/config_h.sed %XSRC%/lib/config_h.org > config.hin\r | |
3768a1ae | 250 | if errorlevel 1 goto SedError2\r |
179de98b | 251 | mv -f config.hin %XSRC%/lib/config.hin\r |
3768a1ae JMG |
252 | \r |
253 | \r | |
254 | Rem Fixing ilicit testsuite file name.\r | |
255 | test -f %XSRC%/tests/c++.at\r | |
256 | if not errorlevel 1 mv -f %XSRC%/tests/c++.at %XSRC%/tests/cxx.at\r | |
257 | \r | |
7ac22ca6 JMG |
258 | test -f %XSRC%/tests/testsuite.org\r |
259 | if errorlevel 1 update %XSRC%/tests/testsuite %XSRC%/tests/testsuite.org\r | |
260 | sed -f %XSRC%/djgpp/testsuite.sed %XSRC%/tests/testsuite.org > testsuite.tmp\r | |
261 | if errorlevel 1 goto SedError3\r | |
262 | mv -f ./testsuite.tmp %XSRC%/tests/testsuite\r | |
263 | \r | |
3768a1ae JMG |
264 | Rem Fixing ilicit calc++ file names in the calc++ directory.\r |
265 | test -d %XSRC%/examples/calc++\r | |
266 | if not errorlevel 1 mv -f %XSRC%/examples/calc++ %XSRC%/examples/calcxx\r | |
267 | test -d %XSRC%/examples/calcxx\r | |
268 | if errorlevel 1 mv -f %XSRC%/examples/calcpp %XSRC%/examples/calcxx\r | |
269 | test -f %XSRC%/examples/calcxx/calc++-scanner.cc\r | |
270 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-scanner.cc %XSRC%/examples/calcxx/calcxx-scanner.cc\r | |
271 | test -f %XSRC%/examples/calcxx/calcxx-scanner.cc\r | |
272 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-scanner.cc %XSRC%/examples/calcxx/calcxx-scanner.cc\r | |
273 | test -f %XSRC%/examples/calcxx/calc++-scanner.ll\r | |
274 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-scanner.ll %XSRC%/examples/calcxx/calcxx-scanner.ll\r | |
275 | test -f %XSRC%/examples/calcxx/calcxx-scanner.ll\r | |
276 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-scanner.ll %XSRC%/examples/calcxx/calcxx-scanner.ll\r | |
277 | test -f %XSRC%/examples/calcxx/calc++-driver.cc\r | |
278 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-driver.cc %XSRC%/examples/calcxx/calcxx-driver.cc\r | |
279 | test -f %XSRC%/examples/calcxx/calcxx-driver.cc\r | |
280 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-driver.cc %XSRC%/examples/calcxx/calcxx-driver.cc\r | |
281 | test -f %XSRC%/examples/calcxx/calc++-driver.hh\r | |
282 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-driver.hh %XSRC%/examples/calcxx/calcxx-driver.hh\r | |
283 | test -f %XSRC%/examples/calcxx/calcxx-driver.hh\r | |
284 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-driver.hh %XSRC%/examples/calcxx/calcxx-driver.hh\r | |
285 | test -f %XSRC%/examples/calcxx/calc++-parser.cc\r | |
286 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-parser.cc %XSRC%/examples/calcxx/calcxx-parser.cc\r | |
287 | test -f %XSRC%/examples/calcxx/calcxx-parser.cc\r | |
288 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-parser.cc %XSRC%/examples/calcxx/calcxx-parser.cc\r | |
289 | test -f %XSRC%/examples/calcxx/calc++-parser.hh\r | |
290 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-parser.hh %XSRC%/examples/calcxx/calcxx-parser.hh\r | |
291 | test -f %XSRC%/examples/calcxx/calcxx-parser.hh\r | |
292 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-parser.hh %XSRC%/examples/calcxx/calcxx-parser.hh\r | |
293 | test -f %XSRC%/examples/calcxx/calc++-parser.stamp\r | |
294 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-parser.stamp %XSRC%/examples/calcxx/calcxx-parser.stamp\r | |
295 | test -f %XSRC%/examples/calcxx/calcxx-parser.stamp\r | |
296 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-parser.stamp %XSRC%/examples/calcxx/calcxx-parser.stamp\r | |
297 | test -f %XSRC%/examples/calcxx/calc++-parser.yy\r | |
298 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-parser.yy %XSRC%/examples/calcxx/calcxx-parser.yy\r | |
299 | test -f %XSRC%/examples/calcxx/calcxx-parser.yy\r | |
300 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-parser.yy %XSRC%/examples/calcxx/calcxx-parser.yy\r | |
301 | test -f %XSRC%/examples/calcxx/calc++.cc\r | |
302 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++.cc %XSRC%/examples/calcxx/calcxx.cc\r | |
303 | test -f %XSRC%/examples/calcxx/calcxx.cc\r | |
304 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp.cc %XSRC%/examples/calcxx/calcxx.cc\r | |
305 | \r | |
306 | Rem Fixing #include lines in calcxx files.\r | |
02650b7f | 307 | sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx.cc > calcxx.cc\r |
3768a1ae JMG |
308 | if errorlevel 1 goto calcxxFileError\r |
309 | mv ./calcxx.cc %XSRC%/examples/calcxx/calcxx.cc\r | |
02650b7f | 310 | sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-driver.cc > calcxx-driver.cc\r |
3768a1ae JMG |
311 | if errorlevel 1 goto calcxxFileError\r |
312 | mv ./calcxx-driver.cc %XSRC%/examples/calcxx/calcxx-driver.cc\r | |
02650b7f | 313 | sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-driver.hh > calcxx-driver.hh\r |
3768a1ae JMG |
314 | if errorlevel 1 goto calcxxFileError\r |
315 | mv ./calcxx-driver.hh %XSRC%/examples/calcxx/calcxx-driver.hh\r | |
02650b7f | 316 | sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-parser.cc > calcxx-parser.cc\r |
3768a1ae JMG |
317 | if errorlevel 1 goto calcxxFileError\r |
318 | mv ./calcxx-parser.cc %XSRC%/examples/calcxx/calcxx-parser.cc\r | |
02650b7f | 319 | sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-parser.hh > calcxx-parser.hh\r |
3768a1ae JMG |
320 | if errorlevel 1 goto calcxxFileError\r |
321 | mv ./calcxx-parser.hh %XSRC%/examples/calcxx/calcxx-parser.hh\r | |
02650b7f | 322 | :sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-parser.yy > calcxx-parser.yy\r |
3768a1ae JMG |
323 | :if errorlevel 1 goto calcxxFileError\r |
324 | :mv ./calcxx-parser.yy %XSRC%/examples/calcxx/calcxx-parser.yy\r | |
02650b7f | 325 | sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-scanner.cc > calcxx-scanner.cc\r |
3768a1ae JMG |
326 | if errorlevel 1 goto calcxxFileError\r |
327 | mv ./calcxx-scanner.cc %XSRC%/examples/calcxx/calcxx-scanner.cc\r | |
02650b7f | 328 | :sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-scanner.ll > calcxx-scanner.ll\r |
3768a1ae JMG |
329 | :if errorlevel 1 goto calcxxFileError\r |
330 | :mv ./calcxx-scanner.ll %XSRC%/examples/calcxx/calcxx-scanner.ll\r | |
331 | sed "s/calc++/calcxx/" %XSRC%/examples/calcxx/test > test\r | |
332 | if errorlevel 1 goto calcxxFileError\r | |
333 | mv ./test %XSRC%/examples/calcxx/test\r | |
334 | \r | |
335 | \r | |
336 | Rem Fixing the scanner files to make file names 8.3 valid.\r | |
337 | Rem Use only if you want to change the scan-gram.l and scan-skel.l files.\r | |
338 | : sed "/outfile=/s/\.yy/yy/" %XSRC%/src/scan-gram.l > scan-gram.l\r | |
339 | : if errorlevel 1 goto ScannerFileError\r | |
340 | : mv ./scan-gram.l %XSRC%/src/scan-gram.l\r | |
341 | : sed "/outfile=/s/\.yy/yy/" %XSRC%/src/scan-skel.l > scan-skel.l\r | |
342 | : if errorlevel 1 goto ScannerFileError\r | |
343 | : mv ./scan-skel.l %XSRC%/src/scan-skel.l\r | |
344 | \r | |
345 | \r | |
346 | Rem This is required because DOS/Windows are case-insensitive\r | |
347 | Rem to file names, and "make install" will do nothing if Make\r | |
348 | Rem finds a file called `install'.\r | |
349 | if exist INSTALL ren INSTALL INSTALL.txt\r | |
350 | \r | |
351 | Rem Set SHELL to a sane default or some configure tests stop working\r | |
352 | Rem if the package is configured across partitions.\r | |
353 | if not "%SHELL%" == "" goto HomeName\r | |
354 | set SHELL=/bin/sh\r | |
355 | if not "%SHELL%" == "/bin/sh" goto SmallEnv\r | |
356 | echo No SHELL found in the environment, using default value\r | |
357 | \r | |
358 | :HomeName\r | |
359 | Rem Set HOME to a sane default so configure stops complaining.\r | |
360 | if not "%HOME%" == "" goto HostName\r | |
361 | set HOME=%XSRC%/djgpp\r | |
362 | if not "%HOME%" == "%XSRC%/djgpp" goto SmallEnv\r | |
363 | echo No HOME found in the environment, using default value\r | |
364 | \r | |
365 | :HostName\r | |
366 | Rem Set HOSTNAME so it shows in config.status\r | |
367 | if not "%HOSTNAME%" == "" goto hostdone\r | |
368 | if "%windir%" == "" goto msdos\r | |
369 | set OS=MS-Windows\r | |
370 | if not "%OS%" == "MS-Windows" goto SmallEnv\r | |
371 | goto haveos\r | |
372 | :msdos\r | |
373 | set OS=MS-DOS\r | |
374 | if not "%OS%" == "MS-DOS" goto SmallEnv\r | |
375 | :haveos\r | |
376 | if not "%USERNAME%" == "" goto haveuname\r | |
377 | if not "%USER%" == "" goto haveuser\r | |
378 | echo No USERNAME and no USER found in the environment, using default values\r | |
379 | set HOSTNAME=Unknown PC\r | |
380 | if not "%HOSTNAME%" == "Unknown PC" goto SmallEnv\r | |
381 | goto userdone\r | |
382 | :haveuser\r | |
383 | set HOSTNAME=%USER%'s PC\r | |
384 | if not "%HOSTNAME%" == "%USER%'s PC" goto SmallEnv\r | |
385 | goto userdone\r | |
386 | :haveuname\r | |
387 | set HOSTNAME=%USERNAME%'s PC\r | |
388 | if not "%HOSTNAME%" == "%USERNAME%'s PC" goto SmallEnv\r | |
389 | :userdone\r | |
390 | set _HOSTNAME=%HOSTNAME%, %OS%\r | |
391 | if not "%_HOSTNAME%" == "%HOSTNAME%, %OS%" goto SmallEnv\r | |
392 | set HOSTNAME=%_HOSTNAME%\r | |
393 | :hostdone\r | |
394 | set _HOSTNAME=\r | |
395 | set OS=\r | |
396 | \r | |
397 | Rem install-sh is required by the configure script but clashes with the\r | |
398 | Rem various Makefile install-foo targets, so we MUST have it before the\r | |
399 | Rem script runs and rename it afterwards\r | |
400 | test -f %XSRC%/install-sh\r | |
401 | if not errorlevel 1 goto NoRen0\r | |
402 | test -f %XSRC%/install-sh.sh\r | |
403 | if not errorlevel 1 mv -f %XSRC%/install-sh.sh %XSRC%/install-sh\r | |
404 | :NoRen0\r | |
405 | \r | |
406 | if "%NLS%" == "disabled" goto WithoutNLS\r | |
407 | \r | |
408 | :WithNLS\r | |
409 | Rem Check for the needed libraries and binaries.\r | |
410 | test -x /dev/env/DJDIR/bin/msgfmt.exe\r | |
411 | if errorlevel 1 goto MissingNLSTools\r | |
412 | test -x /dev/env/DJDIR/bin/xgettext.exe\r | |
413 | if errorlevel 1 goto MissingNLSTools\r | |
414 | test -f /dev/env/DJDIR/include/libcharset.h\r | |
415 | if errorlevel 1 goto MissingNLSTools\r | |
416 | test -f /dev/env/DJDIR/lib/libcharset.a\r | |
417 | if errorlevel 1 goto MissingNLSTools\r | |
418 | test -f /dev/env/DJDIR/include/iconv.h\r | |
419 | if errorlevel 1 goto MissingNLSTools\r | |
420 | test -f /dev/env/DJDIR/lib/libiconv.a\r | |
421 | if errorlevel 1 goto MissingNLSTools\r | |
422 | test -f /dev/env/DJDIR/include/libintl.h\r | |
423 | if errorlevel 1 goto MissingNLSTools\r | |
424 | test -f /dev/env/DJDIR/lib/libintl.a\r | |
425 | if errorlevel 1 goto MissingNLSTools\r | |
426 | \r | |
427 | Rem Recreate the files in the %XSRC%/po subdir with our ported tools.\r | |
428 | redir -e /dev/null rm %XSRC%/po/*.gmo\r | |
429 | redir -e /dev/null rm %XSRC%/po/bison.pot\r | |
430 | redir -e /dev/null rm %XSRC%/po/cat-id-tbl.c\r | |
431 | redir -e /dev/null rm %XSRC%/po/stamp-cat-id\r | |
432 | \r | |
433 | Rem Update the arguments file for the configure script.\r | |
434 | Rem We prefer without-included-gettext because libintl.a from gettext package\r | |
435 | Rem is the only one that is garanteed to have been ported to DJGPP.\r | |
c4d50517 | 436 | echo --enable-nls --without-included-gettext >> args\r |
3768a1ae JMG |
437 | goto ConfigurePackage\r |
438 | \r | |
439 | :MissingNLSTools\r | |
440 | echo Needed libs/tools for NLS not found. Configuring without NLS.\r | |
441 | :WithoutNLS\r | |
442 | Rem Update the arguments file for the configure script.\r | |
c4d50517 | 443 | echo --disable-nls >> args\r |
3768a1ae JMG |
444 | \r |
445 | :ConfigurePackage\r | |
446 | echo Running the ./configure script...\r | |
c4d50517 | 447 | sh ./configure @args\r |
3768a1ae | 448 | if errorlevel 1 goto CfgError\r |
c4d50517 | 449 | rm args\r |
3768a1ae JMG |
450 | echo Done.\r |
451 | goto End\r | |
452 | \r | |
453 | :lalr1_ccFileError\r | |
454 | echo ./data/lalr1.cc file editing failed!\r | |
455 | goto End\r | |
456 | \r | |
b9471884 JMG |
457 | :glr_ccFileError\r |
458 | echo ./data/glr.cc file editing failed!\r | |
459 | goto End\r | |
460 | \r | |
0d1c1cab JMG |
461 | :getargs_cFileError\r |
462 | echo ./src/getargs.c file editing failed!\r | |
463 | goto End\r | |
464 | \r | |
c59929c3 JMG |
465 | :location_ccFileError\r |
466 | echo ./data/location.cc file editing failed!\r | |
467 | goto End\r | |
468 | \r | |
3768a1ae JMG |
469 | :calcxxFileError\r |
470 | echo ./examples/calcxx file editing failed!\r | |
471 | goto End\r | |
472 | \r | |
473 | :ScannerFileError\r | |
474 | echo ./scanner file editing failed!\r | |
475 | goto End\r | |
476 | \r | |
477 | :SedError\r | |
478 | echo ./configure script editing failed!\r | |
479 | goto End\r | |
480 | \r | |
481 | :SedError2\r | |
7ac22ca6 JMG |
482 | echo ./lib/config.hin editing failed!\r |
483 | goto End\r | |
484 | \r | |
485 | :SedError3\r | |
486 | echo ./tests/testsuite editing failed!\r | |
3768a1ae JMG |
487 | goto End\r |
488 | \r | |
489 | :CfgError\r | |
490 | echo ./configure script exited abnormally!\r | |
491 | goto End\r | |
492 | \r | |
493 | :SmallEnv\r | |
494 | echo Your environment size is too small. Enlarge it and run me again.\r | |
495 | echo Configuration NOT done!\r | |
496 | \r | |
497 | :End\r | |
498 | test -f %XSRC%/install-sh.sh\r | |
499 | if not errorlevel 1 goto NoRen1\r | |
500 | test -f %XSRC%/install-sh\r | |
501 | if not errorlevel 1 mv -f %XSRC%/install-sh %XSRC%/install-sh.sh\r | |
502 | :NoRen1\r | |
503 | if "%SHELL%" == "/bin/sh" set SHELL=\r | |
504 | if "%HOME%" == "%XSRC%/djgpp" set HOME=\r | |
3768a1ae JMG |
505 | set CONFIG_SITE=\r |
506 | set HOSTNAME=\r | |
507 | set NLS=\r | |
3768a1ae | 508 | set XSRC=\r |