Update of /cvsroot/wxlua/wxLua/build/msw
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv14409/build/msw
Modified Files:
makefile.gcc makefile.vc makefile.wat
Log Message:
add RUNTIME_LIBS to the list of global options to pass to subprojects
Index: makefile.vc
===================================================================
RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.vc,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** makefile.vc 3 Feb 2007 19:12:22 -0000 1.41
--- makefile.vc 3 Feb 2007 19:47:41 -0000 1.42
***************
*** 66,69 ****
--- 66,75 ----
LUA_DIR = ..\..\..\modules\lua
+ # This is an advanced option. Handle with care.
+ # Version of C runtime library to use. You can change this to
+ # static if SHARED=0, but it is highly recommended to not do
+ # it if SHARED=1 unless you know what you are doing. [dynamic,static]
+ RUNTIME_LIBS = dynamic
+
# Does the wxLua bindings for STC need to be compiled ? [0,1]
USE_WXBINDSTC = 1
Index: makefile.wat
===================================================================
RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.wat,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** makefile.wat 3 Feb 2007 19:12:22 -0000 1.40
--- makefile.wat 3 Feb 2007 19:47:41 -0000 1.41
***************
*** 66,69 ****
--- 66,75 ----
LUA_DIR = ..\..\..\modules\lua
+ # This is an advanced option. Handle with care.
+ # Version of C runtime library to use. You can change this to
+ # static if SHARED=0, but it is highly recommended to not do
+ # it if SHARED=1 unless you know what you are doing. [dynamic,static]
+ RUNTIME_LIBS = dynamic
+
# Does the wxLua bindings for STC need to be compiled ? [0,1]
USE_WXBINDSTC = 1
Index: makefile.gcc
===================================================================
RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.gcc,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** makefile.gcc 3 Feb 2007 19:12:22 -0000 1.39
--- makefile.gcc 3 Feb 2007 19:47:41 -0000 1.40
***************
*** 59,62 ****
--- 59,68 ----
LUA_DIR = ..\..\..\modules\lua
+ # This is an advanced option. Handle with care.
+ # Version of C runtime library to use. You can change this to
+ # static if SHARED=0, but it is highly recommended to not do
+ # it if SHARED=1 unless you know what you are doing. [dynamic,static]
+ RUNTIME_LIBS = dynamic
+
# Does the wxLua bindings for STC need to be compiled ? [0,1]
USE_WXBINDSTC = 1
|