]>
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 | |
146 | echo --srcdir=%XSRC% > arguments\r | |
147 | if "%CACHING%" == "enabled" echo --cache-file=%XSRC%/djgpp/config.cache >> arguments\r | |
148 | if "%DEPENDENCY_TRACKING%" == "enabled" echo --enable-dependency-tracking >> arguments\r | |
149 | if "%DEPENDENCY_TRACKING%" == "disabled" echo --disable-dependency-tracking >> arguments\r | |
150 | if "%LIBICONV_PREFIX%" == "enabled" echo --with-libiconv-prefix >> arguments\r | |
151 | if "%LIBICONV_PREFIX%" == "disabled" echo --without-libiconv-prefix >> arguments\r | |
152 | if "%LIBINTL_PREFIX%" == "enabled" echo --with-libintl-prefix >> arguments\r | |
153 | if "%LIBINTL_PREFIX%" == "disabled" echo --without-libintl-prefix >> arguments\r | |
154 | if "%HTML%" == "enabled" echo --enable-html >> arguments\r | |
155 | if "%HTML%" == "disabled" echo --disable-html >> arguments\r | |
156 | if not "%ARGS%" == "" echo %ARGS% >> arguments\r | |
157 | set ARGS=\r | |
158 | set CACHING=\r | |
159 | set DEPENDENCY_TRACKING=\r | |
160 | \r | |
161 | if "%XSRC%" == "." goto InPlace\r | |
162 | \r | |
163 | :NotInPlace\r | |
164 | redir -e /dev/null update %XSRC%/configure.orig ./configure\r | |
165 | test -f ./configure\r | |
166 | if errorlevel 1 update %XSRC%/configure ./configure\r | |
167 | \r | |
168 | :InPlace\r | |
169 | Rem Update configuration files\r | |
170 | echo Updating configuration scripts...\r | |
171 | test -f ./configure.orig\r | |
172 | if errorlevel 1 update configure configure.orig\r | |
173 | sed -f %XSRC%/djgpp/config.sed configure.orig > configure\r | |
174 | if errorlevel 1 goto SedError\r | |
175 | \r | |
176 | Rem Make sure they have a config.site file\r | |
177 | set CONFIG_SITE=%XSRC%/djgpp/config.site\r | |
178 | if not "%CONFIG_SITE%" == "%XSRC%/djgpp/config.site" goto SmallEnv\r | |
179 | \r | |
180 | Rem Make sure crucial file names are not munged by unpacking\r | |
181 | test -f %XSRC%/po/Makefile.in.in\r | |
182 | if not errorlevel 1 mv -f %XSRC%/po/Makefile.in.in %XSRC%/po/Makefile.in-in\r | |
183 | test -f %XSRC%/po/Makefile.in-in\r | |
184 | if errorlevel 1 mv -f %XSRC%/po/Makefile.in %XSRC%/po/Makefile.in-in\r | |
185 | test -f %XSRC%/runtime-po/Makefile.in.in\r | |
186 | if not errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in.in %XSRC%/runtime-po/Makefile.in-in\r | |
187 | test -f %XSRC%/runtime-po/Makefile.in-in\r | |
188 | if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in %XSRC%/runtime-po/Makefile.in-in\r | |
189 | test -f %XSRC%/data/c++.m4\r | |
190 | if not errorlevel 1 mv -f %XSRC%/data/c++.m4 %XSRC%/data/cxx.m4\r | |
191 | test -f %XSRC%/data/cxx.m4\r | |
192 | if errorlevel 1 mv -f %XSRC%/data/cpp.m4 %XSRC%/data/cxx.m4\r | |
90ddbd5e JMG |
193 | :scan_gram_c_Test\r |
194 | test -f %XSRC%/src/c-scan-gram.c\r | |
195 | if not errorlevel 1 goto scan_skel_c_Test\r | |
196 | test -f %XSRC%/src/scan-gram-c.c\r | |
197 | if not errorlevel 1 mv -f %XSRC%/src/scan-gram-c.c %XSRC%/src/c-scan-gram.c\r | |
198 | :scan_skel_c_Test\r | |
199 | test -f %XSRC%/src/c-scan-skel.c\r | |
200 | if not errorlevel 1 goto FixFiles\r | |
201 | test -f %XSRC%/src/scan-skel-c.c\r | |
202 | if not errorlevel 1 mv -f %XSRC%/src/scan-skel-c.c %XSRC%/src/c-scan-skel.c\r | |
3768a1ae | 203 | \r |
90ddbd5e | 204 | :FixFiles\r |
c59929c3 | 205 | Rem Fix data/lalr1.cc and data/location.cc to reflect the renaming of c++.m4\r |
3768a1ae JMG |
206 | sed "s/c++\.m4/cxx.m4/" %XSRC%/data/lalr1.cc > lalr1.cc\r |
207 | if errorlevel 1 goto lalr1_ccFileError\r | |
208 | mv ./lalr1.cc %XSRC%/data/lalr1.cc\r | |
c59929c3 JMG |
209 | sed "s/c++\.m4/cxx.m4/" %XSRC%/data/location.cc > location.cc\r |
210 | if errorlevel 1 goto location.ccFileError\r | |
211 | mv ./location.cc %XSRC%/data/location.cc\r | |
b9471884 JMG |
212 | sed "s/c++\.m4/cxx.m4/" %XSRC%/data/glr.cc > glr.cc\r |
213 | if errorlevel 1 goto glr.ccFileError\r | |
214 | mv ./glr.cc %XSRC%/data/glr.cc\r | |
3768a1ae JMG |
215 | \r |
216 | Rem Define DJGPP specific defs in config.hin\r | |
217 | echo Editing config.hin...\r | |
218 | test -f %XSRC%/config_h.orig\r | |
219 | if errorlevel 1 update %XSRC%/config.hin %XSRC%/config_h.orig\r | |
220 | sed -f %XSRC%/djgpp/config_h.sed %XSRC%/config_h.orig > config.hin\r | |
221 | if errorlevel 1 goto SedError2\r | |
222 | mv -f config.hin %XSRC%/config.hin\r | |
223 | \r | |
224 | \r | |
225 | Rem Fixing ilicit testsuite file name.\r | |
226 | test -f %XSRC%/tests/c++.at\r | |
227 | if not errorlevel 1 mv -f %XSRC%/tests/c++.at %XSRC%/tests/cxx.at\r | |
228 | \r | |
229 | Rem Fixing ilicit calc++ file names in the calc++ directory.\r | |
230 | test -d %XSRC%/examples/calc++\r | |
231 | if not errorlevel 1 mv -f %XSRC%/examples/calc++ %XSRC%/examples/calcxx\r | |
232 | test -d %XSRC%/examples/calcxx\r | |
233 | if errorlevel 1 mv -f %XSRC%/examples/calcpp %XSRC%/examples/calcxx\r | |
234 | test -f %XSRC%/examples/calcxx/calc++-scanner.cc\r | |
235 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-scanner.cc %XSRC%/examples/calcxx/calcxx-scanner.cc\r | |
236 | test -f %XSRC%/examples/calcxx/calcxx-scanner.cc\r | |
237 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-scanner.cc %XSRC%/examples/calcxx/calcxx-scanner.cc\r | |
238 | test -f %XSRC%/examples/calcxx/calc++-scanner.ll\r | |
239 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-scanner.ll %XSRC%/examples/calcxx/calcxx-scanner.ll\r | |
240 | test -f %XSRC%/examples/calcxx/calcxx-scanner.ll\r | |
241 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-scanner.ll %XSRC%/examples/calcxx/calcxx-scanner.ll\r | |
242 | test -f %XSRC%/examples/calcxx/calc++-driver.cc\r | |
243 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-driver.cc %XSRC%/examples/calcxx/calcxx-driver.cc\r | |
244 | test -f %XSRC%/examples/calcxx/calcxx-driver.cc\r | |
245 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-driver.cc %XSRC%/examples/calcxx/calcxx-driver.cc\r | |
246 | test -f %XSRC%/examples/calcxx/calc++-driver.hh\r | |
247 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-driver.hh %XSRC%/examples/calcxx/calcxx-driver.hh\r | |
248 | test -f %XSRC%/examples/calcxx/calcxx-driver.hh\r | |
249 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-driver.hh %XSRC%/examples/calcxx/calcxx-driver.hh\r | |
250 | test -f %XSRC%/examples/calcxx/calc++-parser.cc\r | |
251 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-parser.cc %XSRC%/examples/calcxx/calcxx-parser.cc\r | |
252 | test -f %XSRC%/examples/calcxx/calcxx-parser.cc\r | |
253 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-parser.cc %XSRC%/examples/calcxx/calcxx-parser.cc\r | |
254 | test -f %XSRC%/examples/calcxx/calc++-parser.hh\r | |
255 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-parser.hh %XSRC%/examples/calcxx/calcxx-parser.hh\r | |
256 | test -f %XSRC%/examples/calcxx/calcxx-parser.hh\r | |
257 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-parser.hh %XSRC%/examples/calcxx/calcxx-parser.hh\r | |
258 | test -f %XSRC%/examples/calcxx/calc++-parser.stamp\r | |
259 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-parser.stamp %XSRC%/examples/calcxx/calcxx-parser.stamp\r | |
260 | test -f %XSRC%/examples/calcxx/calcxx-parser.stamp\r | |
261 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-parser.stamp %XSRC%/examples/calcxx/calcxx-parser.stamp\r | |
262 | test -f %XSRC%/examples/calcxx/calc++-parser.yy\r | |
263 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-parser.yy %XSRC%/examples/calcxx/calcxx-parser.yy\r | |
264 | test -f %XSRC%/examples/calcxx/calcxx-parser.yy\r | |
265 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp-parser.yy %XSRC%/examples/calcxx/calcxx-parser.yy\r | |
266 | test -f %XSRC%/examples/calcxx/calc++.cc\r | |
267 | if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++.cc %XSRC%/examples/calcxx/calcxx.cc\r | |
268 | test -f %XSRC%/examples/calcxx/calcxx.cc\r | |
269 | if errorlevel 1 mv -f %XSRC%/examples/calcxx/calcpp.cc %XSRC%/examples/calcxx/calcxx.cc\r | |
270 | \r | |
271 | Rem Fixing #include lines in calcxx files.\r | |
02650b7f | 272 | sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx.cc > calcxx.cc\r |
3768a1ae JMG |
273 | if errorlevel 1 goto calcxxFileError\r |
274 | mv ./calcxx.cc %XSRC%/examples/calcxx/calcxx.cc\r | |
02650b7f | 275 | sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-driver.cc > calcxx-driver.cc\r |
3768a1ae JMG |
276 | if errorlevel 1 goto calcxxFileError\r |
277 | mv ./calcxx-driver.cc %XSRC%/examples/calcxx/calcxx-driver.cc\r | |
02650b7f | 278 | sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-driver.hh > calcxx-driver.hh\r |
3768a1ae JMG |
279 | if errorlevel 1 goto calcxxFileError\r |
280 | mv ./calcxx-driver.hh %XSRC%/examples/calcxx/calcxx-driver.hh\r | |
02650b7f | 281 | sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-parser.cc > calcxx-parser.cc\r |
3768a1ae JMG |
282 | if errorlevel 1 goto calcxxFileError\r |
283 | mv ./calcxx-parser.cc %XSRC%/examples/calcxx/calcxx-parser.cc\r | |
02650b7f | 284 | sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-parser.hh > calcxx-parser.hh\r |
3768a1ae JMG |
285 | if errorlevel 1 goto calcxxFileError\r |
286 | mv ./calcxx-parser.hh %XSRC%/examples/calcxx/calcxx-parser.hh\r | |
02650b7f | 287 | :sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-parser.yy > calcxx-parser.yy\r |
3768a1ae JMG |
288 | :if errorlevel 1 goto calcxxFileError\r |
289 | :mv ./calcxx-parser.yy %XSRC%/examples/calcxx/calcxx-parser.yy\r | |
02650b7f | 290 | sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-scanner.cc > calcxx-scanner.cc\r |
3768a1ae JMG |
291 | if errorlevel 1 goto calcxxFileError\r |
292 | mv ./calcxx-scanner.cc %XSRC%/examples/calcxx/calcxx-scanner.cc\r | |
02650b7f | 293 | :sed "/#[ ]*include/s/++/xx/" %XSRC%/examples/calcxx/calcxx-scanner.ll > calcxx-scanner.ll\r |
3768a1ae JMG |
294 | :if errorlevel 1 goto calcxxFileError\r |
295 | :mv ./calcxx-scanner.ll %XSRC%/examples/calcxx/calcxx-scanner.ll\r | |
296 | sed "s/calc++/calcxx/" %XSRC%/examples/calcxx/test > test\r | |
297 | if errorlevel 1 goto calcxxFileError\r | |
298 | mv ./test %XSRC%/examples/calcxx/test\r | |
299 | \r | |
300 | \r | |
301 | Rem Fixing the scanner files to make file names 8.3 valid.\r | |
302 | Rem Use only if you want to change the scan-gram.l and scan-skel.l files.\r | |
303 | : sed "/outfile=/s/\.yy/yy/" %XSRC%/src/scan-gram.l > scan-gram.l\r | |
304 | : if errorlevel 1 goto ScannerFileError\r | |
305 | : mv ./scan-gram.l %XSRC%/src/scan-gram.l\r | |
306 | : sed "/outfile=/s/\.yy/yy/" %XSRC%/src/scan-skel.l > scan-skel.l\r | |
307 | : if errorlevel 1 goto ScannerFileError\r | |
308 | : mv ./scan-skel.l %XSRC%/src/scan-skel.l\r | |
309 | \r | |
310 | \r | |
311 | Rem This is required because DOS/Windows are case-insensitive\r | |
312 | Rem to file names, and "make install" will do nothing if Make\r | |
313 | Rem finds a file called `install'.\r | |
314 | if exist INSTALL ren INSTALL INSTALL.txt\r | |
315 | \r | |
316 | Rem Set SHELL to a sane default or some configure tests stop working\r | |
317 | Rem if the package is configured across partitions.\r | |
318 | if not "%SHELL%" == "" goto HomeName\r | |
319 | set SHELL=/bin/sh\r | |
320 | if not "%SHELL%" == "/bin/sh" goto SmallEnv\r | |
321 | echo No SHELL found in the environment, using default value\r | |
322 | \r | |
323 | :HomeName\r | |
324 | Rem Set HOME to a sane default so configure stops complaining.\r | |
325 | if not "%HOME%" == "" goto HostName\r | |
326 | set HOME=%XSRC%/djgpp\r | |
327 | if not "%HOME%" == "%XSRC%/djgpp" goto SmallEnv\r | |
328 | echo No HOME found in the environment, using default value\r | |
329 | \r | |
330 | :HostName\r | |
331 | Rem Set HOSTNAME so it shows in config.status\r | |
332 | if not "%HOSTNAME%" == "" goto hostdone\r | |
333 | if "%windir%" == "" goto msdos\r | |
334 | set OS=MS-Windows\r | |
335 | if not "%OS%" == "MS-Windows" goto SmallEnv\r | |
336 | goto haveos\r | |
337 | :msdos\r | |
338 | set OS=MS-DOS\r | |
339 | if not "%OS%" == "MS-DOS" goto SmallEnv\r | |
340 | :haveos\r | |
341 | if not "%USERNAME%" == "" goto haveuname\r | |
342 | if not "%USER%" == "" goto haveuser\r | |
343 | echo No USERNAME and no USER found in the environment, using default values\r | |
344 | set HOSTNAME=Unknown PC\r | |
345 | if not "%HOSTNAME%" == "Unknown PC" goto SmallEnv\r | |
346 | goto userdone\r | |
347 | :haveuser\r | |
348 | set HOSTNAME=%USER%'s PC\r | |
349 | if not "%HOSTNAME%" == "%USER%'s PC" goto SmallEnv\r | |
350 | goto userdone\r | |
351 | :haveuname\r | |
352 | set HOSTNAME=%USERNAME%'s PC\r | |
353 | if not "%HOSTNAME%" == "%USERNAME%'s PC" goto SmallEnv\r | |
354 | :userdone\r | |
355 | set _HOSTNAME=%HOSTNAME%, %OS%\r | |
356 | if not "%_HOSTNAME%" == "%HOSTNAME%, %OS%" goto SmallEnv\r | |
357 | set HOSTNAME=%_HOSTNAME%\r | |
358 | :hostdone\r | |
359 | set _HOSTNAME=\r | |
360 | set OS=\r | |
361 | \r | |
362 | Rem install-sh is required by the configure script but clashes with the\r | |
363 | Rem various Makefile install-foo targets, so we MUST have it before the\r | |
364 | Rem script runs and rename it afterwards\r | |
365 | test -f %XSRC%/install-sh\r | |
366 | if not errorlevel 1 goto NoRen0\r | |
367 | test -f %XSRC%/install-sh.sh\r | |
368 | if not errorlevel 1 mv -f %XSRC%/install-sh.sh %XSRC%/install-sh\r | |
369 | :NoRen0\r | |
370 | \r | |
371 | if "%NLS%" == "disabled" goto WithoutNLS\r | |
372 | \r | |
373 | :WithNLS\r | |
374 | Rem Check for the needed libraries and binaries.\r | |
375 | test -x /dev/env/DJDIR/bin/msgfmt.exe\r | |
376 | if errorlevel 1 goto MissingNLSTools\r | |
377 | test -x /dev/env/DJDIR/bin/xgettext.exe\r | |
378 | if errorlevel 1 goto MissingNLSTools\r | |
379 | test -f /dev/env/DJDIR/include/libcharset.h\r | |
380 | if errorlevel 1 goto MissingNLSTools\r | |
381 | test -f /dev/env/DJDIR/lib/libcharset.a\r | |
382 | if errorlevel 1 goto MissingNLSTools\r | |
383 | test -f /dev/env/DJDIR/include/iconv.h\r | |
384 | if errorlevel 1 goto MissingNLSTools\r | |
385 | test -f /dev/env/DJDIR/lib/libiconv.a\r | |
386 | if errorlevel 1 goto MissingNLSTools\r | |
387 | test -f /dev/env/DJDIR/include/libintl.h\r | |
388 | if errorlevel 1 goto MissingNLSTools\r | |
389 | test -f /dev/env/DJDIR/lib/libintl.a\r | |
390 | if errorlevel 1 goto MissingNLSTools\r | |
391 | \r | |
392 | Rem Recreate the files in the %XSRC%/po subdir with our ported tools.\r | |
393 | redir -e /dev/null rm %XSRC%/po/*.gmo\r | |
394 | redir -e /dev/null rm %XSRC%/po/bison.pot\r | |
395 | redir -e /dev/null rm %XSRC%/po/cat-id-tbl.c\r | |
396 | redir -e /dev/null rm %XSRC%/po/stamp-cat-id\r | |
397 | \r | |
398 | Rem Update the arguments file for the configure script.\r | |
399 | Rem We prefer without-included-gettext because libintl.a from gettext package\r | |
400 | Rem is the only one that is garanteed to have been ported to DJGPP.\r | |
401 | echo --enable-nls --without-included-gettext >> arguments\r | |
402 | goto ConfigurePackage\r | |
403 | \r | |
404 | :MissingNLSTools\r | |
405 | echo Needed libs/tools for NLS not found. Configuring without NLS.\r | |
406 | :WithoutNLS\r | |
407 | Rem Update the arguments file for the configure script.\r | |
408 | echo --disable-nls >> arguments\r | |
409 | \r | |
410 | :ConfigurePackage\r | |
411 | echo Running the ./configure script...\r | |
412 | sh ./configure @arguments\r | |
413 | if errorlevel 1 goto CfgError\r | |
414 | rm arguments\r | |
415 | echo Done.\r | |
416 | goto End\r | |
417 | \r | |
418 | :lalr1_ccFileError\r | |
419 | echo ./data/lalr1.cc file editing failed!\r | |
420 | goto End\r | |
421 | \r | |
b9471884 JMG |
422 | :glr_ccFileError\r |
423 | echo ./data/glr.cc file editing failed!\r | |
424 | goto End\r | |
425 | \r | |
c59929c3 JMG |
426 | :location_ccFileError\r |
427 | echo ./data/location.cc file editing failed!\r | |
428 | goto End\r | |
429 | \r | |
3768a1ae JMG |
430 | :calcxxFileError\r |
431 | echo ./examples/calcxx file editing failed!\r | |
432 | goto End\r | |
433 | \r | |
434 | :ScannerFileError\r | |
435 | echo ./scanner file editing failed!\r | |
436 | goto End\r | |
437 | \r | |
438 | :SedError\r | |
439 | echo ./configure script editing failed!\r | |
440 | goto End\r | |
441 | \r | |
442 | :SedError2\r | |
443 | echo ./config.hin editing failed!\r | |
444 | goto End\r | |
445 | \r | |
446 | :CfgError\r | |
447 | echo ./configure script exited abnormally!\r | |
448 | goto End\r | |
449 | \r | |
450 | :SmallEnv\r | |
451 | echo Your environment size is too small. Enlarge it and run me again.\r | |
452 | echo Configuration NOT done!\r | |
453 | \r | |
454 | :End\r | |
455 | test -f %XSRC%/install-sh.sh\r | |
456 | if not errorlevel 1 goto NoRen1\r | |
457 | test -f %XSRC%/install-sh\r | |
458 | if not errorlevel 1 mv -f %XSRC%/install-sh %XSRC%/install-sh.sh\r | |
459 | :NoRen1\r | |
460 | if "%SHELL%" == "/bin/sh" set SHELL=\r | |
461 | if "%HOME%" == "%XSRC%/djgpp" set HOME=\r | |
462 | set ARGS=\r | |
463 | set CONFIG_SITE=\r | |
464 | set HOSTNAME=\r | |
465 | set NLS=\r | |
466 | set CACHING=\r | |
467 | set DEPENDENCY_TRACKING=\r | |
468 | set XSRC=\r |