Use correct options when compiling a test program with Cygwin.
From David Ponce <dponce@voila.fr>.
This commit is contained in:
parent
d0f05d60c5
commit
ff432558a6
2 changed files with 15 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-03-05 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* configure.bat: Use correct options when compiling a test program
|
||||
with Cygwin. From David Ponce <dponce@voila.fr>.
|
||||
|
||||
2001-02-24 Andrew Innes <andrewi@gnu.org>
|
||||
|
||||
* _emacs: Remove obsolete file.
|
||||
|
|
|
@ -202,7 +202,16 @@ echo Checking whether W32 API headers are too old...
|
|||
echo #include "windows.h" >junk.c
|
||||
echo test(PIMAGE_NT_HEADERS pHeader) >>junk.c
|
||||
echo {PIMAGE_SECTION_HEADER pSection = IMAGE_FIRST_SECTION(pHeader);} >>junk.c
|
||||
gcc -c junk.c
|
||||
if (%nocygwin%) == (Y) goto checkw32api1
|
||||
set cf=%usercflags%
|
||||
goto checkw32api2
|
||||
:checkw32api1
|
||||
set cf=%usercflags% -mno-cygwin
|
||||
:checkw32api2
|
||||
echo on
|
||||
gcc %cf% -c junk.c
|
||||
echo off
|
||||
set cf=
|
||||
if exist junk.o goto gccOk
|
||||
|
||||
:nocompiler
|
||||
|
|
Loading…
Add table
Reference in a new issue