+2008-02-03 Jason Rumney <jasonr@gnu.org>
+
+ * configure.bat: Make gcc the default compiler.
+
2008-02-02 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (unidatagen-SH, unidatagen-clean-SH): Ignore
if (%COMPILER%)==(cl) goto compilercheckdone\r
if (%COMPILER%)==(gcc) goto checkgcc\r
\r
-echo Checking whether 'cl' is available...\r
-echo main(){} >junk.c\r
-cl -nologo -c junk.c\r
-if exist junk.obj goto clOK\r
-\r
echo Checking whether 'gcc' is available...\r
+echo main(){} >junk.c\r
gcc -c junk.c\r
-if not exist junk.o goto nocompiler\r
+if exist junk.o goto checkgcc\r
del junk.o\r
\r
+echo Checking whether 'cl' is available...\r
+cl -nologo -c junk.c\r
+if exist junk.obj goto clOK\r
+goto nocompiler\r
+\r
:checkgcc\r
Rem WARNING -- COMMAND.COM on some systems only looks at the first\r
Rem 8 characters of a label. So do NOT be tempted to change\r