Author: manjula
Date: Sun Oct 14 22:29:54 2007
New Revision: 584681
URL: http://svn.apache.org/viewvc?rev=584681&view=rev
Log:
Fixed the build to select run time library.
Modified:
webservices/sandesha/trunk/c/build/win32/configure.in
webservices/sandesha/trunk/c/build/win32/makefile
Modified: webservices/sandesha/trunk/c/build/win32/configure.in
URL:
http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/build/win32/configure.in?rev=584681&r1=584680&r2=584681&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/build/win32/configure.in (original)
+++ webservices/sandesha/trunk/c/build/win32/configure.in Sun Oct 14 22:29:54
2007
@@ -4,3 +4,6 @@
SQLITE_SRC_DIR = "E:\sqlite-source-3_3_8"
MYSQL_BIN_DIR = "C:\Program Files\MySQL\MySQL Server 5.0"
AXIS2_BIN_DIR = E:\axis2c\build\axis2c-bin-1.1.0-win32
+
+#CRUNTIME Library (Use /MD or /MT )
+CRUNTIME=/MD
Modified: webservices/sandesha/trunk/c/build/win32/makefile
URL:
http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/build/win32/makefile?rev=584681&r1=584680&r2=584681&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/build/win32/makefile (original)
+++ webservices/sandesha/trunk/c/build/win32/makefile Sun Oct 14 22:29:54 2007
@@ -20,7 +20,7 @@
#compiler options
CC = @cl.exe
-CFLAGS = /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "AXIS2_DECLARE_EXPORT" /w
/nologo \
+CFLAGS = /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "AXIS2_DECLARE_EXPORT" /w
/nologo $(CRUNTIME) \
/I$(AXIS2_BIN_DIR)\include /I$(SANDESHASRC)\include
#linker options
@@ -48,7 +48,7 @@
#debug symbols
!if "$(DEBUG)" == "1"
CFLAGS = $(CFLAGS) /D "_DEBUG" /Od /Z7
-LDFLAGS = $(LDFLAGS) /DEBUG /NODEFAULTLIB:LIBCMTD.lib
+LDFLAGS = $(LDFLAGS) /DEBUG
!else
CFLAGS = $(CFLAGS) /D "NDEBUG" /O2
LDFLAGS = $(LDFLAGS) /LIBPATH:$(MYSQL_BIN_DIR)\lib\opt
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]