*** empty log message ***
[bpt/emacs.git] / nt / configure.bat
CommitLineData
f466241d
EZ
1@echo off\r
2rem ----------------------------------------------------------------------\r
12ff2dc5 3rem Configuration script for MS Windows 95/98/Me and NT/2000/XP\r
ceb4c4d3 4rem Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005,\r
4e6835db 5rem 2006, 2007 Free Software Foundation, Inc.\r
f466241d
EZ
6\r
7rem This file is part of GNU Emacs.\r
8\r
9rem GNU Emacs is free software; you can redistribute it and/or modify\r
10rem it under the terms of the GNU General Public License as published by\r
4a9f99bd 11rem the Free Software Foundation; either version 3, or (at your option)\r
f466241d
EZ
12rem any later version.\r
13\r
14rem GNU Emacs is distributed in the hope that it will be useful,\r
15rem but WITHOUT ANY WARRANTY; without even the implied warranty of\r
16rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
17rem GNU General Public License for more details.\r
18\r
19rem You should have received a copy of the GNU General Public License\r
20rem along with GNU Emacs; see the file COPYING. If not, write to the\r
364c38d3
LK
21rem Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\r
22rem Boston, MA 02110-1301, USA.\r
f466241d
EZ
23rem ----------------------------------------------------------------------\r
24rem YOU'LL NEED THE FOLLOWING UTILITIES TO MAKE EMACS:\r
25rem\r
12ff2dc5 26rem + MS Windows 95/98/Me or NT/2000/XP\r
f466241d 27rem + either MSVC 2.x or later, or gcc-2.95 or later (with gmake 3.75\r
56a469c3
EZ
28rem or later) and the Mingw32 and W32 API headers and libraries.\r
29rem + Visual Studio 2005 is not supported at this time.\r
f466241d
EZ
30rem\r
31rem For reference, here is a list of which builds of gmake are known to\r
32rem work or not, and whether they work in the presence and/or absence of\r
33rem sh.exe.\r
7019fb66 34rem\r
f466241d 35rem sh exists no sh\r
56a469c3 36rem cygwin b20.1 make (3.75): fails[1,5] fails[2,5]\r
f466241d
EZ
37rem MSVC compiled gmake 3.77: okay okay\r
38rem MSVC compiled gmake 3.78.1: okay okay\r
39rem MSVC compiled gmake 3.79.1: okay okay\r
56a469c3
EZ
40rem mingw32/gcc-2.92.2 make (3.77): okay okay[4]\r
41rem cygwin compiled gmake 3.77: fails[1,5] fails[2,5]\r
42rem cygwin compiled gmake 3.78.1: fails[5] fails[2,5]\r
43rem cygwin compiled gmake 3.79.1: fails[3,5] fails[2?,5]\r
17f55fae
EZ
44rem cygwin compiled make 3.80: okay[6] fails?[7]\r
45rem cygwin compiled make 3.81: fails fails?[7]\r
56a469c3 46rem mingw32 compiled make 3.79.1: okay okay\r
17f55fae
EZ
47rem mingw32 compiled make 3.80: okay okay?[7]\r
48rem mingw32 compiled make 3.81: okay okay[8]\r
f466241d
EZ
49rem\r
50rem [1] doesn't cope with makefiles with DOS line endings, so must mount\r
51rem emacs source with text!=binary.\r
52rem [2] fails when needs to invoke shell commands; okay invoking gcc etc.\r
56a469c3
EZ
53rem [3] requires LC_MESSAGES support to build; cannot build with early\r
54rem versions of cygwin.\r
55rem [4] may fail on Windows 9X and Windows ME; if so, install Bash.\r
56rem [5] fails when building leim due to the use of cygwin style paths.\r
57rem May work if building emacs without leim.\r
17f55fae
EZ
58rem [6] need to uncomment 3 lines in nt/gmake.defs that invoke `cygpath';\r
59rem look for "cygpath" near line 85 of gmake.defs.\r
60rem [7] not recommended; please report if you try this combination.\r
61rem [8] tested only on Windows XP.\r
f466241d
EZ
62rem\r
63\r
dbbdb507
EZ
64if exist config.log del config.log\r
65\r
f466241d
EZ
66rem ----------------------------------------------------------------------\r
67rem See if the environment is large enough. We need 43 (?) bytes.\r
68set $foo$=123456789_123456789_123456789_123456789_123\r
69if not "%$foo$%" == "123456789_123456789_123456789_123456789_123" goto SmallEnv\r
70set $foo$=\r
71\r
72rem ----------------------------------------------------------------------\r
73rem Make sure we are running in the nt subdir\r
74if exist configure.bat goto start\r
75echo You must run configure from the nt subdirectory.\r
76goto end\r
77\r
78:start\r
79rem ----------------------------------------------------------------------\r
80rem Default settings.\r
81set prefix=\r
82set nodebug=N\r
83set noopt=N\r
84set nocygwin=N\r
85set COMPILER=\r
86set usercflags=\r
87set userldflags=\r
88set sep1=\r
89set sep2=\r
90\r
91rem ----------------------------------------------------------------------\r
92rem Handle arguments.\r
93:again\r
94if "%1" == "-h" goto usage\r
95if "%1" == "--help" goto usage\r
96if "%1" == "--prefix" goto setprefix\r
97if "%1" == "--with-gcc" goto withgcc\r
98if "%1" == "--with-msvc" goto withmsvc\r
99if "%1" == "--no-debug" goto nodebug\r
100if "%1" == "--no-opt" goto noopt\r
101if "%1" == "--no-cygwin" goto nocygwin\r
102if "%1" == "--cflags" goto usercflags\r
103if "%1" == "--ldflags" goto userldflags\r
e0006538 104if "%1" == "--without-png" goto withoutpng\r
aad0eae4 105if "%1" == "--without-jpeg" goto withoutjpeg\r
12ff2dc5 106if "%1" == "--without-gif" goto withoutgif\r
47c01e80 107if "%1" == "--without-tiff" goto withouttiff\r
507f5dce 108if "%1" == "--without-xpm" goto withoutxpm\r
53a4961c 109if "%1" == "--enable-font-backend" goto withfont\r
f466241d
EZ
110if "%1" == "" goto checkutils\r
111:usage\r
112echo Usage: configure [options]\r
113echo Options:\r
114echo. --prefix PREFIX install Emacs in directory PREFIX\r
115echo. --with-gcc use GCC to compile Emacs\r
116echo. --with-msvc use MSVC to compile Emacs\r
117echo. --no-debug exclude debug info from executables\r
118echo. --no-opt disable optimization\r
119echo. --no-cygwin use -mno-cygwin option with GCC\r
120echo. --cflags FLAG pass FLAG to compiler\r
121echo. --ldflags FLAG pass FLAG to compiler when linking\r
32154d10
JR
122echo. --without-png do not use libpng\r
123echo. --without-jpeg do not use jpeg-6b\r
124echo. --without-gif do not use giflib or libungif\r
125echo. --without-tiff do not use libtiff\r
126echo. --without-xpm do not use libXpm\r
53a4961c 127echo. --enable-font-backend build with font backend support\r
f466241d
EZ
128goto end\r
129rem ----------------------------------------------------------------------\r
130:setprefix\r
131shift\r
132set prefix=%1\r
133shift\r
134goto again\r
135rem ----------------------------------------------------------------------\r
136:withgcc\r
137set COMPILER=gcc\r
138shift\r
139goto again\r
140rem ----------------------------------------------------------------------\r
141:withmsvc\r
142set COMPILER=cl\r
143shift\r
144goto again\r
145rem ----------------------------------------------------------------------\r
146:nodebug\r
147set nodebug=Y\r
148shift\r
149goto again\r
150rem ----------------------------------------------------------------------\r
151:noopt\r
152set noopt=Y\r
153shift\r
154goto again\r
155rem ----------------------------------------------------------------------\r
156:nocygwin\r
157set nocygwin=Y\r
158shift\r
159goto again\r
160rem ----------------------------------------------------------------------\r
161:usercflags\r
162shift\r
163set usercflags=%usercflags%%sep1%%1\r
164set sep1= %nothing%\r
165shift\r
166goto again\r
167rem ----------------------------------------------------------------------\r
168:userldflags\r
169shift\r
170set userldflags=%userldflags%%sep2%%1\r
171set sep2= %nothing%\r
172shift\r
173goto again\r
e0006538
JR
174rem ----------------------------------------------------------------------\r
175\r
176:withoutpng\r
177set pngsupport=N\r
178set HAVE_PNG=\r
39bd0e03 179shift\r
e0006538 180goto again\r
f466241d 181\r
aad0eae4
JR
182rem ----------------------------------------------------------------------\r
183\r
184:withoutjpeg\r
185set jpegsupport=N\r
186set HAVE_JPEG=\r
39bd0e03 187shift\r
aad0eae4
JR
188goto again\r
189\r
12ff2dc5
JB
190rem ----------------------------------------------------------------------\r
191\r
192:withoutgif\r
193set gifsupport=N\r
194set HAVE_GIF=\r
195shift\r
196goto again\r
197\r
47c01e80
JB
198rem ----------------------------------------------------------------------\r
199\r
200:withouttiff\r
201set tiffsupport=N\r
202set HAVE_TIFF=\r
203shift\r
204goto again\r
205\r
507f5dce
JR
206rem ----------------------------------------------------------------------\r
207\r
208:withoutxpm\r
209set xpmsupport=N\r
210set HAVE_XPM=\r
211shift\r
212goto again\r
213\r
2cd47384
JR
214:withfont\r
215set usercflags=%usercflags%%sep1%-DUSE_FONT_BACKEND\r
216set usefontbackend=Y\r
217shift\r
218goto again\r
219\r
f466241d
EZ
220rem ----------------------------------------------------------------------\r
221rem Check that necessary utilities (cp and rm) are present.\r
222:checkutils\r
223echo Checking for 'cp'...\r
224cp configure.bat junk.bat\r
225if not exist junk.bat goto needcp\r
226echo Checking for 'rm'...\r
227rm junk.bat\r
228if exist junk.bat goto needrm\r
229goto checkcompiler\r
230:needcp\r
231echo You need 'cp' (the Unix file copy program) to build Emacs.\r
232goto end\r
233:needrm\r
234del junk.bat\r
235echo You need 'rm' (the Unix file delete program) to build Emacs.\r
236goto end\r
237\r
238rem ----------------------------------------------------------------------\r
239rem Auto-detect compiler if not specified, and validate GCC if chosen.\r
240:checkcompiler\r
e0006538 241if (%COMPILER%)==(cl) goto compilercheckdone\r
f466241d
EZ
242if (%COMPILER%)==(gcc) goto checkgcc\r
243\r
244echo Checking whether 'cl' is available...\r
245echo main(){} >junk.c\r
246cl -nologo -c junk.c\r
247if exist junk.obj goto clOK\r
248\r
249echo Checking whether 'gcc' is available...\r
250gcc -c junk.c\r
251if not exist junk.o goto nocompiler\r
252del junk.o\r
253\r
254:checkgcc\r
255Rem WARNING -- COMMAND.COM on some systems only looks at the first\r
256Rem 8 characters of a label. So do NOT be tempted to change\r
257Rem chkapi* into something fancier like checkw32api\r
258Rem You HAVE been warned!\r
259if (%nocygwin%) == (Y) goto chkapi\r
260echo Checking whether gcc requires '-mno-cygwin'...\r
261echo #include "cygwin/version.h" >junk.c\r
262echo main(){} >>junk.c\r
dbbdb507
EZ
263echo gcc -c junk.c >>config.log\r
264gcc -c junk.c >>config.log 2>&1\r
f466241d 265if not exist junk.o goto chkapi\r
dbbdb507
EZ
266echo gcc -mno-cygwin -c junk.c >>config.log\r
267gcc -mno-cygwin -c junk.c >>config.log 2>&1\r
f466241d
EZ
268if exist junk.o set nocygwin=Y\r
269rm -f junk.c junk.o\r
270\r
271:chkapi\r
dbbdb507
EZ
272echo The failed program was: >>config.log\r
273type junk.c >>config.log\r
f466241d
EZ
274rem ----------------------------------------------------------------------\r
275rem Older versions of the Windows API headers either don't have any of\r
276rem the IMAGE_xxx definitions (the headers that come with Cygwin b20.1\r
277rem are like this), or have a typo in the definition of\r
278rem IMAGE_FIRST_SECTION (the headers with gcc/mingw32 2.95 have this\r
279rem problem). The gcc/mingw32 2.95.2 headers are okay, as are distros\r
280rem of w32api-xxx.zip from Anders Norlander since 1999-11-18 at least.\r
281rem\r
282echo Checking whether W32 API headers are too old...\r
283echo #include "windows.h" >junk.c\r
284echo test(PIMAGE_NT_HEADERS pHeader) >>junk.c\r
285echo {PIMAGE_SECTION_HEADER pSection = IMAGE_FIRST_SECTION(pHeader);} >>junk.c\r
286if (%nocygwin%) == (Y) goto chkapi1\r
287set cf=%usercflags%\r
288goto chkapi2\r
289:chkapi1\r
290set cf=%usercflags% -mno-cygwin\r
291:chkapi2\r
292echo on\r
293gcc %cf% -c junk.c\r
dbbdb507
EZ
294@echo off\r
295@echo gcc %cf% -c junk.c >>config.log\r
296gcc %cf% -c junk.c >>config.log 2>&1\r
f466241d
EZ
297set cf=\r
298if exist junk.o goto gccOk\r
dbbdb507
EZ
299echo The failed program was: >>config.log\r
300type junk.c >>config.log\r
f466241d
EZ
301\r
302:nocompiler\r
303echo.\r
304echo Configure failed.\r
305echo To configure Emacs for Windows, you need to have either\r
306echo gcc-2.95 or later with Mingw32 and the W32 API headers,\r
307echo or MSVC 2.x or later.\r
308del junk.c\r
309goto end\r
310\r
311:gccOk\r
312set COMPILER=gcc\r
f466241d 313echo Using 'gcc'\r
dbbdb507
EZ
314rm -f junk.c junk.o\r
315Rem It is not clear what GCC version began supporting -mtune\r
316Rem and pentium4 on x86, so check this explicitly.\r
317echo main(){} >junk.c\r
318echo gcc -c -O2 -mtune=pentium4 junk.c >>config.log\r
319gcc -c -O2 -mtune=pentium4 junk.c >>config.log 2>&1\r
320if not errorlevel 1 goto gccMtuneOk\r
321echo The failed program was: >>config.log\r
322type junk.c >>config.log\r
323set mf=-mcpu=i686\r
324rm -f junk.c junk.o\r
325goto compilercheckdone\r
326:gccMtuneOk\r
327echo GCC supports -mtune=pentium4 >>config.log\r
328set mf=-mtune=pentium4\r
329rm -f junk.c junk.o\r
e0006538 330goto compilercheckdone\r
f466241d
EZ
331\r
332:clOk\r
333set COMPILER=cl\r
334rm -f junk.c junk.obj\r
335echo Using 'MSVC'\r
e0006538
JR
336\r
337:compilercheckdone\r
338\r
339rem ----------------------------------------------------------------------\r
340rem Check for external image libraries. Since they are loaded\r
341rem dynamically, the libraries themselves do not need to be present\r
342rem at compile time, but the header files are required.\r
343\r
112dc8e1
JR
344set mingwflag=\r
345\r
346if (%nocygwin%) == (N) goto flagsOK\r
347set mingwflag=-mno-cygwin\r
348\r
349:flagsOK\r
350\r
e0006538
JR
351if (%pngsupport%) == (N) goto pngDone\r
352\r
353echo Checking for libpng...\r
354echo #include "png.h" >junk.c\r
355echo main (){} >>junk.c\r
356rem -o option is ignored with cl, but allows result to be consistent.\r
dbbdb507
EZ
357echo %COMPILER% %usercflags% %mingwflag% -c junk.c -o junk.obj >>config.log\r
358%COMPILER% %usercflags% %mingwflag% -c junk.c -o junk.obj >junk.out 2>>config.log\r
e0006538
JR
359if exist junk.obj goto havePng\r
360\r
507f5dce 361echo ...png.h not found, building without PNG support.\r
dbbdb507
EZ
362echo The failed program was: >>config.log\r
363type junk.c >>config.log\r
e0006538
JR
364set HAVE_PNG=\r
365goto :pngDone\r
366\r
367:havePng\r
368echo ...PNG header available, building with PNG support.\r
369set HAVE_PNG=1\r
370\r
371:pngDone\r
372rm -f junk.c junk.obj\r
f466241d 373\r
aad0eae4
JR
374if (%jpegsupport%) == (N) goto jpegDone\r
375\r
507f5dce 376echo Checking for jpeg-6b...\r
aad0eae4
JR
377echo #include "jconfig.h" >junk.c\r
378echo main (){} >>junk.c\r
379rem -o option is ignored with cl, but allows result to be consistent.\r
dbbdb507
EZ
380echo %COMPILER% %usercflags% %mingwflag% -c junk.c -o junk.obj >>config.log\r
381%COMPILER% %usercflags% %mingwflag% -c junk.c -o junk.obj >junk.out 2>>config.log\r
aad0eae4
JR
382if exist junk.obj goto haveJpeg\r
383\r
507f5dce 384echo ...jconfig.h not found, building without JPEG support.\r
dbbdb507
EZ
385echo The failed program was: >>config.log\r
386type junk.c >>config.log\r
aad0eae4
JR
387set HAVE_JPEG=\r
388goto :jpegDone\r
389\r
390:haveJpeg\r
391echo ...JPEG header available, building with JPEG support.\r
392set HAVE_JPEG=1\r
393\r
394:jpegDone\r
395rm -f junk.c junk.obj\r
396\r
12ff2dc5
JB
397if (%gifsupport%) == (N) goto gifDone\r
398\r
507f5dce 399echo Checking for libgif...\r
12ff2dc5
JB
400echo #include "gif_lib.h" >junk.c\r
401echo main (){} >>junk.c\r
402rem -o option is ignored with cl, but allows result to be consistent.\r
dbbdb507
EZ
403echo %COMPILER% %usercflags% %mingwflag% -c junk.c -o junk.obj >>config.log\r
404%COMPILER% %usercflags% %mingwflag% -c junk.c -o junk.obj >junk.out 2>>config.log\r
12ff2dc5
JB
405if exist junk.obj goto haveGif\r
406\r
507f5dce 407echo ...gif_lib.h not found, building without GIF support.\r
dbbdb507
EZ
408echo The failed program was: >>config.log\r
409type junk.c >>config.log\r
12ff2dc5
JB
410set HAVE_GIF=\r
411goto :gifDone\r
412\r
413:haveGif\r
414echo ...GIF header available, building with GIF support.\r
415set HAVE_GIF=1\r
416\r
417:gifDone\r
418rm -f junk.c junk.obj\r
419\r
47c01e80
JB
420if (%tiffsupport%) == (N) goto tiffDone\r
421\r
422echo Checking for tiff...\r
423echo #include "tiffio.h" >junk.c\r
424echo main (){} >>junk.c\r
425rem -o option is ignored with cl, but allows result to be consistent.\r
dbbdb507
EZ
426echo %COMPILER% %usercflags% %mingwflag% -c junk.c -o junk.obj >>config.log\r
427%COMPILER% %usercflags% %mingwflag% -c junk.c -o junk.obj >junk.out 2>>config.log\r
47c01e80
JB
428if exist junk.obj goto haveTiff\r
429\r
507f5dce 430echo ...tiffio.h not found, building without TIFF support.\r
dbbdb507
EZ
431echo The failed program was: >>config.log\r
432type junk.c >>config.log\r
47c01e80
JB
433set HAVE_TIFF=\r
434goto :tiffDone\r
435\r
436:haveTiff\r
437echo ...TIFF header available, building with TIFF support.\r
438set HAVE_TIFF=1\r
439\r
440:tiffDone\r
441rm -f junk.c junk.obj\r
442\r
507f5dce
JR
443if (%xpmsupport%) == (N) goto xpmDone\r
444\r
445echo Checking for libXpm...\r
446echo #define FOR_MSW 1 >junk.c\r
447echo #include "X11/xpm.h" >>junk.c\r
448echo main (){} >>junk.c\r
449rem -o option is ignored with cl, but allows result to be consistent.\r
dbbdb507
EZ
450echo %COMPILER% %usercflags% %mingwflag% -c junk.c -o junk.obj >>config.log\r
451%COMPILER% %usercflags% %mingwflag% -c junk.c -o junk.obj >junk.out 2>>config.log\r
507f5dce
JR
452if exist junk.obj goto haveXpm\r
453\r
454echo ...X11/xpm.h not found, building without XPM support.\r
dbbdb507
EZ
455echo The failed program was: >>config.log\r
456type junk.c >>config.log\r
507f5dce
JR
457set HAVE_XPM=\r
458goto :xpmDone\r
459\r
460:haveXpm\r
461echo ...XPM header available, building with XPM support.\r
462set HAVE_XPM=1\r
463\r
464:xpmDone\r
465rm -f junk.c junk.obj junk.err junk.out\r
466\r
f466241d
EZ
467rem ----------------------------------------------------------------------\r
468:genmakefiles\r
469echo Generating makefiles\r
470if %COMPILER% == gcc set MAKECMD=gmake\r
471if %COMPILER% == cl set MAKECMD=nmake\r
472\r
473rem Pass on chosen settings to makefiles.\r
474rem NB. Be very careful to not have a space before redirection symbols\r
475rem except when there is a preceding digit, when a space is required.\r
476rem\r
477echo # Start of settings from configure.bat >config.settings\r
478echo COMPILER=%COMPILER%>>config.settings\r
dbbdb507 479if not "(%mf%)" == "()" echo MCPU_FLAG=%mf%>>config.settings\r
f466241d
EZ
480if (%nodebug%) == (Y) echo NODEBUG=1 >>config.settings\r
481if (%noopt%) == (Y) echo NOOPT=1 >>config.settings\r
482if (%nocygwin%) == (Y) echo NOCYGWIN=1 >>config.settings\r
483if not "(%prefix%)" == "()" echo INSTALL_DIR=%prefix%>>config.settings\r
484if not "(%usercflags%)" == "()" echo USER_CFLAGS=%usercflags%>>config.settings\r
485if not "(%userldflags%)" == "()" echo USER_LDFLAGS=%userldflags%>>config.settings\r
2cd47384 486if (%usefontbackend%) == (Y) echo USE_FONTBACKEND=1 >>config.settings\r
f466241d
EZ
487echo # End of settings from configure.bat>>config.settings\r
488echo. >>config.settings\r
489\r
c262c68c
EZ
490copy config.nt config.tmp\r
491echo. >>config.tmp\r
492echo /* Start of settings from configure.bat. */ >>config.tmp\r
493if not "(%usercflags%)" == "()" echo #define USER_CFLAGS " %usercflags%">>config.tmp\r
494if not "(%userldflags%)" == "()" echo #define USER_LDFLAGS " %userldflags%">>config.tmp\r
495if not "(%HAVE_PNG%)" == "()" echo #define HAVE_PNG 1 >>config.tmp\r
496if not "(%HAVE_JPEG%)" == "()" echo #define HAVE_JPEG 1 >>config.tmp\r
497if not "(%HAVE_GIF%)" == "()" echo #define HAVE_GIF 1 >>config.tmp\r
498if not "(%HAVE_TIFF%)" == "()" echo #define HAVE_TIFF 1 >>config.tmp\r
499if not "(%HAVE_XPM%)" == "()" echo #define HAVE_XPM 1 >>config.tmp\r
500echo /* End of settings from configure.bat. */ >>config.tmp\r
501\r
502Rem See if fc.exe returns a meaningful exit status. If it does, we\r
503Rem might as well avoid unnecessary overwriting of config.h and epaths.h,\r
504Rem since this forces recompilation of every source file.\r
505if exist foo.bar del foo.bar\r
506fc /b foo.bar foo.bar >nul 2>&1\r
507if not errorlevel 2 goto doCopy\r
508fc /b config.tmp ..\src\config.h >nul 2>&1\r
509if errorlevel 1 goto doCopy\r
510fc /b paths.h ..\src\epaths.h >nul 2>&1\r
511if errorlevel 0 goto dontCopy\r
512:doCopy\r
513copy config.tmp ..\src\config.h\r
f466241d
EZ
514copy paths.h ..\src\epaths.h\r
515\r
c262c68c
EZ
516:dontCopy\r
517if exist config.tmp del config.tmp\r
f466241d
EZ
518copy /b config.settings+%MAKECMD%.defs+..\nt\makefile.w32-in ..\nt\makefile\r
519copy /b config.settings+%MAKECMD%.defs+..\lib-src\makefile.w32-in ..\lib-src\makefile\r
520copy /b config.settings+%MAKECMD%.defs+..\src\makefile.w32-in ..\src\makefile\r
8aee12d0
GM
521copy /b config.settings+%MAKECMD%.defs+..\doc\emacs\makefile.w32-in ..\doc\emacs\makefile\r
522copy /b config.settings+%MAKECMD%.defs+..\doc\misc\makefile.w32-in ..\doc\misc\makefile\r
523copy /b config.settings+%MAKECMD%.defs+..\doc\lispref\makefile.w32-in ..\doc\lispref\makefile\r
524copy /b config.settings+%MAKECMD%.defs+..\doc\lispintro\makefile.w32-in ..\doc\lispintro\makefile\r
f466241d
EZ
525if exist ..\lisp\makefile rm -f ../lisp/[Mm]akefile\r
526copy /b config.settings+%MAKECMD%.defs+..\lisp\makefile.w32-in ..\lisp\makefile\r
527rem Use the default (no-op) Makefile.in if the nt version is not present.\r
528if exist ..\leim\makefile.w32-in copy /b config.settings+%MAKECMD%.defs+..\leim\makefile.w32-in ..\leim\makefile\r
529if not exist ..\leim\makefile.w32-in copy /b config.settings+%MAKECMD%.defs+..\leim\Makefile.in ..\leim\makefile\r
530del config.settings\r
531\r
e44f8099
EZ
532Rem Some people use WinZip which doesn't create empty directories!\r
533if not exist ..\site-lisp\nul mkdir ..\site-lisp\\r
57a64408
JB
534Rem Update subdirs.el only if it is different or fc.exe doesn't work.\r
535if exist foo.bar del foo.bar\r
536fc /b foo.bar foo.bar >nul 2>&1\r
537if not errorlevel 2 goto doUpdateSubdirs\r
538fc /b subdirs.el ..\site-lisp\subdirs.el >nul 2>&1\r
539if not errorlevel 1 goto dontUpdateSubdirs\r
540:doUpdateSubdirs\r
541if exist ..\site-lisp\subdirs.el del ..\site-lisp\subdirs.el\r
542copy subdirs.el ..\site-lisp\subdirs.el\r
543\r
544:dontUpdateSubdirs\r
f466241d 545echo.\r
32154d10
JR
546\r
547rem check that we have all the libraries we need.\r
548set libsOK=1\r
549\r
550if not "(%HAVE_XPM%)" == "()" goto checkpng\r
551if (%xpmsupport%) == (N) goto checkpng\r
552 set libsOK=0\r
553 echo XPM support is missing. It is required for color icons in the toolbar.\r
554 echo Install libXpm development files or use --without-xpm\r
555\r
556:checkpng\r
557if not "(%HAVE_PNG%)" == "()" goto checkjpeg\r
558if (%pngsupport%) == (N) goto checkjpeg\r
559 set libsOK=0\r
560 echo PNG support is missing.\r
561 echo Install libpng development files or use --without-png\r
562\r
563:checkjpeg\r
564if not "(%HAVE_JPEG%)" == "()" goto checktiff\r
565if (%jpegsupport%) == (N) goto checktiff\r
566 set libsOK=0\r
567 echo JPEG support is missing.\r
568 echo Install jpeg development files or use --without-jpeg\r
569\r
570:checktiff\r
571if not "(%HAVE_TIFF%)" == "()" goto checkgif\r
572if (%tiffsupport%) == (N) goto checkgif\r
573 set libsOK=0\r
574 echo TIFF support is missing.\r
575 echo Install libtiff development files or use --without-tiff\r
576\r
577:checkgif\r
578if not "(%HAVE_GIF%)" == "()" goto donelibchecks\r
579if (%gifsupport%) == (N) goto donelibchecks\r
580 set libsOK=0\r
581 echo GIF support is missing.\r
582 echo Install giflib or libungif development files or use --without-gif\r
583\r
584:donelibchecks\r
585if (%libsOK%) == (1) goto success\r
586echo.\r
587echo Important libraries are missing. Fix these issues before running make.\r
588goto end\r
589\r
590:success\r
f466241d 591echo Emacs successfully configured.\r
a27014fc 592echo Emacs successfully configured. >>config.log\r
f466241d
EZ
593echo Run `%MAKECMD%' to build, then run `%MAKECMD% install' to install.\r
594goto end\r
595\r
596:SmallEnv\r
597echo Your environment size is too small. Please enlarge it and rerun configure.\r
598echo For example, type "command.com /e:2048" to have 2048 bytes available.\r
599set $foo$=\r
600:end\r
601set prefix=\r
602set nodebug=\r
603set noopt=\r
604set nocygwin=\r
605set COMPILER=\r
606set MAKECMD=\r
607set usercflags=\r
608set userldflags=\r
112dc8e1 609set mingwflag=\r
dbbdb507 610set mf=\r
a2fcf029
MB
611\r
612goto skipArchTag\r
613 arch-tag: 300d20a4-1675-4e75-b615-7ce1a8c5376c\r
614:skipArchTag\r