* cyglsa.c: Include ntddk.h again, but only if __MINGW32__ is defined.

* cyglsa64.dll: Regenerate.
	* make-64bit-version-with-visual-c.bat: Fix comment.
This commit is contained in:
Corinna Vinschen 2008-07-15 09:43:48 +00:00
parent 3e153bcd55
commit dc4b5caedc
4 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2008-07-15 Corinna Vinschen <corinna@vinschen.de>
* cyglsa.c: Include ntddk.h again, but only if __MINGW32__ is defined.
* cyglsa64.dll: Regenerate.
* make-64bit-version-with-visual-c.bat: Fix comment.
2008-07-13 Corinna Vinschen <corinna@vinschen.de> 2008-07-13 Corinna Vinschen <corinna@vinschen.de>
* cyglsa.c: Don't include ntddk.h. * cyglsa.c: Don't include ntddk.h.

View File

@ -19,6 +19,9 @@ Cygwin license. Please consult the file "CYGWIN_LICENSE" for details. */
#include <lm.h> #include <lm.h>
#include <iptypes.h> #include <iptypes.h>
#include <ntsecapi.h> #include <ntsecapi.h>
#ifdef __MINGW32__
#include <ntddk.h>
#endif
#include "../cygwin/cyglsa.h" #include "../cygwin/cyglsa.h"
#include "../cygwin/include/cygwin/version.h" #include "../cygwin/include/cygwin/version.h"

Binary file not shown.

View File

@ -6,8 +6,8 @@ rem Note that you need not only the SDK headers and libs, but also the
rem 64 bit ntdll.lib file from a DDK supporting 64 bit builds. rem 64 bit ntdll.lib file from a DDK supporting 64 bit builds.
rem rem
rem Make sure all necessary include paths are set in %Include% (inc\ddk, rem Make sure all necessary include paths are set in %Include% (inc\ddk,
rem inc\atl, inc\crt) and rem that %Lib% points to the 64 bit libs, not rem inc\atl, inc\crt) and make sure that %Lib% points to the 64 bit libs, not
rem the 32 bit libs. In the latter case the link stage will succeed, rem to the 32 bit libs. In the latter case the link stage will succeed,
rem but the resulting DLL is non-functional. rem but the resulting DLL is non-functional.
rem rem
rem This can be used as long as no x86_64-pe/coff capable gcc is available. rem This can be used as long as no x86_64-pe/coff capable gcc is available.