curl: disable use of debug configuration (needs msvcr90d.dll)

Change-Id: I7c22869028a78f48836741a4eb4cd5bbff16e884
This commit is contained in:
Michael Stahl
2012-10-25 14:26:22 +02:00
parent abc873feb3
commit 6fb13dd1aa

View File

@@ -153,11 +153,14 @@ MACHINE=X86
MACHINE=X64
.ENDIF
.IF "$(debug)"==""
# that debug configuration is disabled for now because it needs msvcr90d.dll
# (the debug MSVC runtime) and that is not copied into the solver currently,
# causing unit tests to fail
#.IF "$(debug)"==""
BUILD_ACTION=nmake -f Makefile.vc9 cfg=release-dll EXCFLAGS=$(EXCFLAGS) MACHINE=$(MACHINE)
.ELSE
BUILD_ACTION=nmake -f Makefile.vc9 cfg=debug-dll EXCFLAGS=$(EXCFLAGS) MACHINE=$(MACHINE)
.ENDIF
#.ELSE
#BUILD_ACTION=nmake -f Makefile.vc9 cfg=debug-dll EXCFLAGS=$(EXCFLAGS) MACHINE=$(MACHINE)
#.ENDIF
OUT2BIN=$(BUILD_DIR)$/libcurl.dll
OUT2LIB=$(BUILD_DIR)$/libcurl.lib