mirror of
https://github.com/curl/curl.git
synced 2026-08-25 09:03:32 +03:00
- Robert A. Monat improved the maketgz and VC6/8 generating to set the correct
machine type too.
This commit is contained in:
parent
3789e2e6ce
commit
6dd4fe0740
4 changed files with 15 additions and 4 deletions
|
|
@ -23,6 +23,10 @@ ZLIB_PATH = ../../zlib-1.2.1
|
|||
OPENSSL_PATH = ../../openssl-0.9.7e
|
||||
!ENDIF
|
||||
|
||||
!IFNDEF MACHINE
|
||||
MACHINE = X86
|
||||
!ENDIF
|
||||
|
||||
# USE_WINDOWS_SSPI uses windows libraries to allow NTLM authentication
|
||||
# without an openssl installation and offers the ability to authenticate
|
||||
# using the "current logged in user". It does however require that the
|
||||
|
|
@ -64,7 +68,7 @@ LINKD = link.exe /incremental:yes /debug /libpath:"../lib"
|
|||
RCD = rc.exe /dCURLDEBUG=1
|
||||
|
||||
CFLAGS = /I../lib /I../include /nologo /W3 /GX /DWIN32 /YX /FD /c
|
||||
LFLAGS = /nologo /out:$(PROGRAM_NAME) /subsystem:console /machine:I386
|
||||
LFLAGS = /nologo /out:$(PROGRAM_NAME) /subsystem:console /machine:$(MACHINE)
|
||||
RESFLAGS = /i../include
|
||||
|
||||
!IFDEF WINDOWS_SSPI
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue