2 Rem Configure Bison for DJGPP.
4 Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
5 Rem format, or else stock DOS/Windows shells will refuse to run it.
7 Rem Copyright (C) 2005, 2006 Free Software Foundation, Inc.
9 Rem This program is free software; you can redistribute it and/or modify
10 Rem it under the terms of the GNU General Public License as published by
11 Rem the Free Software Foundation; either version 2, or (at your option)
12 Rem any later version.
14 Rem This program is distributed in the hope that it will be useful,
15 Rem but WITHOUT ANY WARRANTY; without even the implied warranty of
16 Rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 Rem GNU General Public License for more details.
19 Rem You should have received a copy of the GNU General Public License
20 Rem along with this program; if not, write to the Free Software Foundation,
21 Rem Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 echo Configuring Bison
for DJGPP v2.x...
25 Rem The SmallEnv tests protect against fixed and too small size
26 Rem of the environment in stock DOS shell.
28 Rem Find out if NLS is wanted or not,
29 Rem if dependency-tracking is wanted or not,
30 Rem if caching is wanted or not
31 Rem and where the sources are.
32 Rem We always default to NLS support,
33 Rem no dependency tracking
34 Rem and to in place configuration.
37 if not "%NLS%" == "enabled" goto SmallEnv
39 if not "%CACHING%" == "enabled" goto SmallEnv
40 set DEPENDENCY_TRACKING
=disabled
41 if not "%DEPENDENCY_TRACKING%" == "disabled" goto SmallEnv
42 set LIBICONV_PREFIX
=disabled
43 if not "%LIBICONV_PREFIX%" == "disabled" goto SmallEnv
44 set LIBINTL_PREFIX
=disabled
45 if not "%LIBINTL_PREFIX%" == "disabled" goto SmallEnv
47 if not "%HTML%" == "enabled" goto SmallEnv
49 if not "%XSRC%" == "." goto SmallEnv
51 Rem Loop over all arguments.
52 Rem Special arguments are: NLS, XSRC, CACHE, STATIC_LIBS, LIBICONV_PREFIX, LIBINTL_PREFIX and DEPS.
53 Rem All other arguments are stored into ARGS.
55 if "%1" == "nls" goto NextArgument
56 if "%1" == "NLS" goto NextArgument
57 if "%1" == "no-nls" goto NoNLS
58 if "%1" == "no-NLS" goto NoNLS
59 if "%1" == "NO-NLS" goto NoNLS
62 if "%1" == "no-nls" set NLS
=disabled
63 if "%1" == "no-NLS" set NLS
=disabled
64 if "%1" == "NO-NLS" set NLS
=disabled
65 if not "%NLS%" == "disabled" goto SmallEnv
68 if "%1" == "cache" goto NextArgument
69 if "%1" == "CACHE" goto NextArgument
70 if "%1" == "no-cache" goto NoCaching
71 if "%1" == "no-CACHE" goto NoCaching
72 if "%1" == "NO-CACHE" goto NoCaching
75 if "%1" == "no-cache" set CACHING
=disabled
76 if "%1" == "no-CACHE" set CACHING
=disabled
77 if "%1" == "NO-CACHE" set CACHING
=disabled
78 if not "%CACHING%" == "disabled" goto SmallEnv
81 if "%1" == "no-dep" goto NextArgument
82 if "%1" == "no-DEP" goto NextArgument
83 if "%1" == "NO-DEP" goto NextArgument
84 if "%1" == "dep" goto DependecyTraking
85 if "%1" == "DEP" goto DependecyTraking
86 goto LibiconvPrefixOption
88 if "%1" == "dep" set DEPENDENCY_TRACKING
=enabled
89 if "%1" == "DEP" set DEPENDENCY_TRACKING
=enabled
90 if not "%DEPENDENCY_TRACKING%" == "enabled" goto SmallEnv
93 if "%1" == "no-libiconvprefix" goto NextArgument
94 if "%1" == "no-LIBICONVPREFIX" goto NextArgument
95 if "%1" == "NO-LIBICONVPREFIX" goto NextArgument
96 if "%1" == "libiconvprefix" goto WithLibiconvPrefix
97 if "%1" == "LIBICONVPREFIX" goto WithLibiconvPrefix
98 goto LibintlPrefixOption
100 if "%1" == "libiconvprefix" set LIBICONV_PREFIX
=enabled
101 if "%1" == "LIBICONVPREFIX" set LIBICONV_PREFIX
=enabled
102 if not "%LIBICONV_PREFIX%" == "enabled" goto SmallEnv
105 if "%1" == "no-libiconvprefix" goto NextArgument
106 if "%1" == "no-LIBICONVPREFIX" goto NextArgument
107 if "%1" == "NO-LIBICONVPREFIX" goto NextArgument
108 if "%1" == "libintlprefix" goto _WithLibintlPrefix
109 if "%1" == "LIBINTLPREFIX" goto _WithLibintlPrefix
112 if "%1" == "libintlprefix" set LIBINTL_PREFIX
=enabled
113 if "%1" == "LIBINTLPREFIX" set LIBINTL_PREFIX
=enabled
114 if not "%LIBINTL_PREFIX%" == "enabled" goto SmallEnv
116 if "%1" == "withhtml" goto NextArgument
117 if "%1" == "withHTML" goto NextArgument
118 if "%1" == "WITHHTML" goto NextArgument
119 if "%1" == "withouthtml" goto _WithoutHTML
120 if "%1" == "withoutHTML" goto _WithoutHTML
121 if "%1" == "WITHOUTHTML" goto _WithoutHTML
124 if "%1" == "withouthtml" set HTML
=disabled
125 if "%1" == "withoutHTML" set HTML
=disabled
126 if "%1" == "WITHOUTHTML" set HTML
=disabled
127 if not "%HTML%" == "disabled" goto SmallEnv
130 echo %1 | grep
-q
"/"
131 if errorlevel 1 goto CollectArgument
133 if not "%XSRC%" == "%1" goto SmallEnv
137 if not "%_ARGS%" == "%ARGS% %1" if not "%_ARGS%" == "%ARGS%%1" goto SmallEnv
138 echo %_ARGS% | grep
-q
"[^ ]"
139 if not errorlevel 0 set ARGS
=%_ARGS%
143 if not "%1" == "" goto ArgLoop
145 Rem Create an arguments file for the configure script.
146 echo --srcdir
=%XSRC% > arguments
147 if "%CACHING%" == "enabled" echo --cache-file
=%XSRC%/djgpp
/config.
cache >> arguments
148 if "%DEPENDENCY_TRACKING%" == "enabled" echo --enable
-dependency
-tracking
>> arguments
149 if "%DEPENDENCY_TRACKING%" == "disabled" echo --disable
-dependency
-tracking
>> arguments
150 if "%LIBICONV_PREFIX%" == "enabled" echo --with
-libiconv
-prefix
>> arguments
151 if "%LIBICONV_PREFIX%" == "disabled" echo --without
-libiconv
-prefix
>> arguments
152 if "%LIBINTL_PREFIX%" == "enabled" echo --with
-libintl
-prefix
>> arguments
153 if "%LIBINTL_PREFIX%" == "disabled" echo --without
-libintl
-prefix
>> arguments
154 if "%HTML%" == "enabled" echo --enable
-html
>> arguments
155 if "%HTML%" == "disabled" echo --disable
-html
>> arguments
156 if not "%ARGS%" == "" echo %ARGS% >> arguments
159 set DEPENDENCY_TRACKING
=
164 if "%XSRC%" == "." goto InPlace
167 redir
-e
/dev
/null update
%XSRC%/configure.orig .
/configure
169 if errorlevel 1 update
%XSRC%/configure .
/configure
172 Rem Update configuration files
173 echo Updating configuration scripts...
174 test
-f .
/configure.orig
175 if errorlevel 1 update configure configure.orig
176 sed
-f
%XSRC%/djgpp
/config.sed configure.orig
> configure
177 if errorlevel 1 goto SedError
179 Rem Make sure they have a config.site file
180 set CONFIG_SITE
=%XSRC%/djgpp
/config.site
181 if not "%CONFIG_SITE%" == "%XSRC%/djgpp/config.site" goto SmallEnv
183 Rem Make sure crucial file names are not munged by unpacking
184 test
-f
%XSRC%/po
/Makefile.in.in
185 if not errorlevel 1 mv
-f
%XSRC%/po
/Makefile.in.in
%XSRC%/po
/Makefile.in
-in
186 test
-f
%XSRC%/po
/Makefile.in
-in
187 if errorlevel 1 mv
-f
%XSRC%/po
/Makefile.in
%XSRC%/po
/Makefile.in
-in
188 test
-f
%XSRC%/po
/Makefile.in
-in
189 if errorlevel 1 mv
-f
%XSRC%/po
/Makefile.inin
%XSRC%/po
/Makefile.in
-in
190 test
-f
%XSRC%/po
/Makefile.in
-in
191 if errorlevel 1 mv
-f
%XSRC%/po
/Makefile.in_in
%XSRC%/po
/Makefile.in
-in
192 test
-f
%XSRC%/po
/Makefile.in
-in
193 if errorlevel 1 mv
-f
%XSRC%/po
/Makefile_in.in
%XSRC%/po
/Makefile.in
-in
194 test
-f
%XSRC%/runtime
-po
/Makefile.in.in
195 if not errorlevel 1 mv
-f
%XSRC%/runtime
-po
/Makefile.in.in
%XSRC%/runtime
-po
/Makefile.in
-in
196 test
-f
%XSRC%/runtime
-po
/Makefile.in
-in
197 if errorlevel 1 mv
-f
%XSRC%/runtime
-po
/Makefile.in
%XSRC%/runtime
-po
/Makefile.in
-in
198 test
-f
%XSRC%/runtime
-po
/Makefile.in
-in
199 if errorlevel 1 mv
-f
%XSRC%/runtime
-po
/Makefile.inin
%XSRC%/runtime
-po
/Makefile.in
-in
200 test
-f
%XSRC%/runtime
-po
/Makefile.in
-in
201 if errorlevel 1 mv
-f
%XSRC%/runtime
-po
/Makefile.in_in
%XSRC%/runtime
-po
/Makefile.in
-in
202 test
-f
%XSRC%/runtime
-po
/Makefile.in
-in
203 if errorlevel 1 mv
-f
%XSRC%/runtime
-po
/Makefile_in.in
%XSRC%/runtime
-po
/Makefile.in
-in
204 test
-f
%XSRC%/data
/c
++.m4
205 if not errorlevel 1 mv
-f
%XSRC%/data
/c
++.m4
%XSRC%/data
/cxx.m4
206 test
-f
%XSRC%/data
/cxx.m4
207 if errorlevel 1 mv
-f
%XSRC%/data
/cpp.m4
%XSRC%/data
/cxx.m4
209 test
-f
%XSRC%/src
/c
-scan
-gram.c
210 if not errorlevel 1 goto scan_skel_c_Test
211 test
-f
%XSRC%/src
/scan
-gram
-c.c
212 if not errorlevel 1 mv
-f
%XSRC%/src
/scan
-gram
-c.c
%XSRC%/src
/c
-scan
-gram.c
214 test
-f
%XSRC%/src
/c
-scan
-skel.c
215 if not errorlevel 1 goto FixFiles
216 test
-f
%XSRC%/src
/scan
-skel
-c.c
217 if not errorlevel 1 mv
-f
%XSRC%/src
/scan
-skel
-c.c
%XSRC%/src
/c
-scan
-skel.c
220 Rem Fix data/lalr1.cc and data/location.cc to reflect the renaming of c++.m4
221 sed
"s/c++\.m4/cxx.m4/" %XSRC%/data
/lalr1.cc
> lalr1.cc
222 if errorlevel 1 goto lalr1_ccFileError
223 mv .
/lalr1.cc
%XSRC%/data
/lalr1.cc
224 sed
"s/c++\.m4/cxx.m4/" %XSRC%/data
/location.cc
> location.cc
225 if errorlevel 1 goto location.ccFileError
226 mv .
/location.cc
%XSRC%/data
/location.cc
227 sed
"s/c++\.m4/cxx.m4/" %XSRC%/data
/glr.cc
> glr.cc
228 if errorlevel 1 goto glr.ccFileError
229 mv .
/glr.cc
%XSRC%/data
/glr.cc
231 Rem Define DJGPP specific defs in config.hin
232 echo Editing config.hin...
233 test
-f
%XSRC%/config_h.orig
234 if errorlevel 1 update
%XSRC%/config.hin
%XSRC%/config_h.orig
235 sed
-f
%XSRC%/djgpp
/config_h.sed
%XSRC%/config_h.orig
> config.hin
236 if errorlevel 1 goto SedError2
237 mv
-f config.hin
%XSRC%/config.hin
240 Rem Fixing ilicit testsuite file name.
241 test
-f
%XSRC%/tests
/c
++.at
242 if not errorlevel 1 mv
-f
%XSRC%/tests
/c
++.at
%XSRC%/tests
/cxx.at
244 Rem Fixing ilicit calc++ file names in the calc++ directory.
245 test
-d
%XSRC%/examples
/calc
++
246 if not errorlevel 1 mv
-f
%XSRC%/examples
/calc
++ %XSRC%/examples
/calcxx
247 test
-d
%XSRC%/examples
/calcxx
248 if errorlevel 1 mv
-f
%XSRC%/examples
/calcpp
%XSRC%/examples
/calcxx
249 test
-f
%XSRC%/examples
/calcxx
/calc
++-scanner.cc
250 if not errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calc
++-scanner.cc
%XSRC%/examples
/calcxx
/calcxx
-scanner.cc
251 test
-f
%XSRC%/examples
/calcxx
/calcxx
-scanner.cc
252 if errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calcpp
-scanner.cc
%XSRC%/examples
/calcxx
/calcxx
-scanner.cc
253 test
-f
%XSRC%/examples
/calcxx
/calc
++-scanner.ll
254 if not errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calc
++-scanner.ll
%XSRC%/examples
/calcxx
/calcxx
-scanner.ll
255 test
-f
%XSRC%/examples
/calcxx
/calcxx
-scanner.ll
256 if errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calcpp
-scanner.ll
%XSRC%/examples
/calcxx
/calcxx
-scanner.ll
257 test
-f
%XSRC%/examples
/calcxx
/calc
++-driver.cc
258 if not errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calc
++-driver.cc
%XSRC%/examples
/calcxx
/calcxx
-driver.cc
259 test
-f
%XSRC%/examples
/calcxx
/calcxx
-driver.cc
260 if errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calcpp
-driver.cc
%XSRC%/examples
/calcxx
/calcxx
-driver.cc
261 test
-f
%XSRC%/examples
/calcxx
/calc
++-driver.hh
262 if not errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calc
++-driver.hh
%XSRC%/examples
/calcxx
/calcxx
-driver.hh
263 test
-f
%XSRC%/examples
/calcxx
/calcxx
-driver.hh
264 if errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calcpp
-driver.hh
%XSRC%/examples
/calcxx
/calcxx
-driver.hh
265 test
-f
%XSRC%/examples
/calcxx
/calc
++-parser.cc
266 if not errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calc
++-parser.cc
%XSRC%/examples
/calcxx
/calcxx
-parser.cc
267 test
-f
%XSRC%/examples
/calcxx
/calcxx
-parser.cc
268 if errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calcpp
-parser.cc
%XSRC%/examples
/calcxx
/calcxx
-parser.cc
269 test
-f
%XSRC%/examples
/calcxx
/calc
++-parser.hh
270 if not errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calc
++-parser.hh
%XSRC%/examples
/calcxx
/calcxx
-parser.hh
271 test
-f
%XSRC%/examples
/calcxx
/calcxx
-parser.hh
272 if errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calcpp
-parser.hh
%XSRC%/examples
/calcxx
/calcxx
-parser.hh
273 test
-f
%XSRC%/examples
/calcxx
/calc
++-parser.stamp
274 if not errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calc
++-parser.stamp
%XSRC%/examples
/calcxx
/calcxx
-parser.stamp
275 test
-f
%XSRC%/examples
/calcxx
/calcxx
-parser.stamp
276 if errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calcpp
-parser.stamp
%XSRC%/examples
/calcxx
/calcxx
-parser.stamp
277 test
-f
%XSRC%/examples
/calcxx
/calc
++-parser.yy
278 if not errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calc
++-parser.yy
%XSRC%/examples
/calcxx
/calcxx
-parser.yy
279 test
-f
%XSRC%/examples
/calcxx
/calcxx
-parser.yy
280 if errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calcpp
-parser.yy
%XSRC%/examples
/calcxx
/calcxx
-parser.yy
281 test
-f
%XSRC%/examples
/calcxx
/calc
++.cc
282 if not errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calc
++.cc
%XSRC%/examples
/calcxx
/calcxx.cc
283 test
-f
%XSRC%/examples
/calcxx
/calcxx.cc
284 if errorlevel 1 mv
-f
%XSRC%/examples
/calcxx
/calcpp.cc
%XSRC%/examples
/calcxx
/calcxx.cc
286 Rem Fixing #include lines in calcxx files.
287 sed
"/#[ ]*include/s/++/xx/" %XSRC%/examples
/calcxx
/calcxx.cc
> calcxx.cc
288 if errorlevel 1 goto calcxxFileError
289 mv .
/calcxx.cc
%XSRC%/examples
/calcxx
/calcxx.cc
290 sed
"/#[ ]*include/s/++/xx/" %XSRC%/examples
/calcxx
/calcxx
-driver.cc
> calcxx
-driver.cc
291 if errorlevel 1 goto calcxxFileError
292 mv .
/calcxx
-driver.cc
%XSRC%/examples
/calcxx
/calcxx
-driver.cc
293 sed
"/#[ ]*include/s/++/xx/" %XSRC%/examples
/calcxx
/calcxx
-driver.hh
> calcxx
-driver.hh
294 if errorlevel 1 goto calcxxFileError
295 mv .
/calcxx
-driver.hh
%XSRC%/examples
/calcxx
/calcxx
-driver.hh
296 sed
"/#[ ]*include/s/++/xx/" %XSRC%/examples
/calcxx
/calcxx
-parser.cc
> calcxx
-parser.cc
297 if errorlevel 1 goto calcxxFileError
298 mv .
/calcxx
-parser.cc
%XSRC%/examples
/calcxx
/calcxx
-parser.cc
299 sed
"/#[ ]*include/s/++/xx/" %XSRC%/examples
/calcxx
/calcxx
-parser.hh
> calcxx
-parser.hh
300 if errorlevel 1 goto calcxxFileError
301 mv .
/calcxx
-parser.hh
%XSRC%/examples
/calcxx
/calcxx
-parser.hh
302 :sed "/#[ ]*include/s/++/xx/" %XSRC%/examples
/calcxx
/calcxx
-parser.yy
> calcxx
-parser.yy
303 :if errorlevel 1 goto calcxxFileError
304 :mv .
/calcxx
-parser.yy
%XSRC%/examples
/calcxx
/calcxx
-parser.yy
305 sed
"/#[ ]*include/s/++/xx/" %XSRC%/examples
/calcxx
/calcxx
-scanner.cc
> calcxx
-scanner.cc
306 if errorlevel 1 goto calcxxFileError
307 mv .
/calcxx
-scanner.cc
%XSRC%/examples
/calcxx
/calcxx
-scanner.cc
308 :sed "/#[ ]*include/s/++/xx/" %XSRC%/examples
/calcxx
/calcxx
-scanner.ll
> calcxx
-scanner.ll
309 :if errorlevel 1 goto calcxxFileError
310 :mv .
/calcxx
-scanner.ll
%XSRC%/examples
/calcxx
/calcxx
-scanner.ll
311 sed
"s/calc++/calcxx/" %XSRC%/examples
/calcxx
/test
> test
312 if errorlevel 1 goto calcxxFileError
313 mv .
/test
%XSRC%/examples
/calcxx
/test
316 Rem Fixing the scanner files to make file names 8.3 valid.
317 Rem Use only if you want to change the scan-gram.l and scan-skel.l files.
318 : sed
"/outfile=/s/\.yy/yy/" %XSRC%/src
/scan
-gram.l
> scan
-gram.l
319 : if errorlevel 1 goto ScannerFileError
320 : mv .
/scan
-gram.l
%XSRC%/src
/scan
-gram.l
321 : sed
"/outfile=/s/\.yy/yy/" %XSRC%/src
/scan
-skel.l
> scan
-skel.l
322 : if errorlevel 1 goto ScannerFileError
323 : mv .
/scan
-skel.l
%XSRC%/src
/scan
-skel.l
326 Rem This is required because DOS/Windows are case-insensitive
327 Rem to file names, and "make install" will do nothing if Make
328 Rem finds a file called `install'.
329 if exist INSTALL
ren INSTALL INSTALL.txt
331 Rem Set SHELL to a sane default or some configure tests stop working
332 Rem if the package is configured across partitions.
333 if not "%SHELL%" == "" goto HomeName
335 if not "%SHELL%" == "/bin/sh" goto SmallEnv
336 echo No
SHELL found in the environment
, using default value
339 Rem Set HOME to a sane default so configure stops complaining.
340 if not "%HOME%" == "" goto HostName
341 set HOME
=%XSRC%/djgpp
342 if not "%HOME%" == "%XSRC%/djgpp" goto SmallEnv
343 echo No HOME found in the environment
, using default value
346 Rem Set HOSTNAME so it shows in config.status
347 if not "%HOSTNAME%" == "" goto hostdone
348 if "%windir%" == "" goto msdos
350 if not "%OS%" == "MS-Windows" goto SmallEnv
354 if not "%OS%" == "MS-DOS" goto SmallEnv
356 if not "%USERNAME%" == "" goto haveuname
357 if not "%USER%" == "" goto haveuser
358 echo No USERNAME and no USER found in the environment
, using default values
359 set HOSTNAME
=Unknown PC
360 if not "%HOSTNAME%" == "Unknown PC" goto SmallEnv
363 set HOSTNAME
=%USER%'s PC
364 if not "%HOSTNAME%" == "%USER%'s PC
" goto SmallEnv
367 set HOSTNAME=%USERNAME%'s PC
368 if not "%HOSTNAME%" == "%USERNAME%'s PC" goto SmallEnv
370 set _HOSTNAME=%HOSTNAME%, %OS%
371 if not "%_HOSTNAME%" == "%HOSTNAME%, %OS%" goto SmallEnv
372 set HOSTNAME=%_HOSTNAME%
377 Rem install-sh is required by the configure script but clashes with the
378 Rem various Makefile install-foo targets, so we MUST have it before the
379 Rem script runs and rename it afterwards
380 test -f %XSRC%/install-sh
381 if not errorlevel 1 goto NoRen0
382 test -f %XSRC%/install-sh.sh
383 if not errorlevel 1 mv -f %XSRC%/install-sh.sh %XSRC%/install-sh
386 if "%NLS%" == "disabled" goto WithoutNLS
389 Rem Check for the needed libraries and binaries.
390 test -x /dev/env/DJDIR/bin/msgfmt.exe
391 if errorlevel 1 goto MissingNLSTools
392 test -x /dev/env/DJDIR/bin/xgettext.exe
393 if errorlevel 1 goto MissingNLSTools
394 test -f /dev/env/DJDIR/include/libcharset.h
395 if errorlevel 1 goto MissingNLSTools
396 test -f /dev/env/DJDIR/lib/libcharset.a
397 if errorlevel 1 goto MissingNLSTools
398 test -f /dev/env/DJDIR/include/iconv.h
399 if errorlevel 1 goto MissingNLSTools
400 test -f /dev/env/DJDIR/lib/libiconv.a
401 if errorlevel 1 goto MissingNLSTools
402 test -f /dev/env/DJDIR/include/libintl.h
403 if errorlevel 1 goto MissingNLSTools
404 test -f /dev/env/DJDIR/lib/libintl.a
405 if errorlevel 1 goto MissingNLSTools
407 Rem Recreate the files in the %XSRC%/po subdir with our ported tools.
408 redir -e /dev/null rm %XSRC%/po/*.gmo
409 redir -e /dev/null rm %XSRC%/po/bison.pot
410 redir -e /dev/null rm %XSRC%/po/cat-id-tbl.c
411 redir -e /dev/null rm %XSRC%/po/stamp-cat-id
413 Rem Update the arguments file for the configure script.
414 Rem We prefer without-included-gettext because libintl.a from gettext package
415 Rem is the only one that is garanteed to have been ported to DJGPP.
416 echo --enable-nls --without-included-gettext >> arguments
417 goto ConfigurePackage
420 echo Needed libs/tools for NLS not found. Configuring without NLS.
422 Rem Update the arguments file for the configure script.
423 echo --disable-nls >> arguments
426 echo Running the ./configure script...
427 sh ./configure @arguments
428 if errorlevel 1 goto CfgError
434 echo ./data/lalr1.cc file editing failed!
438 echo ./data/glr.cc file editing failed!
441 :location_ccFileError
442 echo ./data/location.cc file editing failed!
446 echo ./examples/calcxx file editing failed!
450 echo ./scanner file editing failed!
454 echo ./configure script editing failed!
458 echo ./config.hin editing failed!
462 echo ./configure script exited abnormally!
466 echo Your environment size is too small. Enlarge it and run me again.
467 echo Configuration NOT done!
470 test -f %XSRC%/install-sh.sh
471 if not errorlevel 1 goto NoRen1
472 test -f %XSRC%/install-sh
473 if not errorlevel 1 mv -f %XSRC%/install-sh %XSRC%/install-sh.sh
475 if "%SHELL%" == "/bin/sh" set SHELL=
476 if "%HOME%" == "%XSRC%/djgpp" set HOME=