From 6fb13dd1aaf27ba7494cf65a11404339ef0e7754 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Thu, 25 Oct 2012 14:26:22 +0200 Subject: curl: disable use of debug configuration (needs msvcr90d.dll) Change-Id: I7c22869028a78f48836741a4eb4cd5bbff16e884 --- curl/makefile.mk | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'curl/makefile.mk') diff --git a/curl/makefile.mk b/curl/makefile.mk index d3da8b318b7c..7a8d784f2332 100644 --- a/curl/makefile.mk +++ b/curl/makefile.mk @@ -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 -- cgit