Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv16138/wxLua/modules/wxluadebug/src
Modified Files:
Makefile splttree.cpp
Log Message:
Update Makefiles for AMD64, add -fPIC
Add temp junk to empty files for nmake.exe, these files will be removed
Index: Makefile
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/Makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Makefile 19 May 2007 02:05:47 -0000 1.8
--- Makefile 23 May 2007 20:17:24 -0000 1.9
***************
*** 32,36 ****
# ----------------------------------------------------------------------------
! CXXFLAGS = $(WXCXXFLAGS) -MMD -g -Wall
LDLIBS = $(WXLDLIBS)
CXX = $(WXCXX)
--- 32,36 ----
# ----------------------------------------------------------------------------
! CXXFLAGS = $(WXCXXFLAGS) -MMD -g -Wall -fPIC
LDLIBS = $(WXLDLIBS)
CXX = $(WXCXX)
Index: splttree.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/splttree.cpp,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** splttree.cpp 22 May 2007 03:27:54 -0000 1.16
--- splttree.cpp 23 May 2007 20:17:25 -0000 1.17
***************
*** 12,13 ****
--- 12,23 ----
// Licence: wxWidgets licence
/////////////////////////////////////////////////////////////////////////////
+
+ #include "wx/wxprec.h"
+
+ #ifdef __BORLANDC__
+ #pragma hdrstop
+ #endif
+
+ #ifndef WX_PRECOMP
+ #include "wx/wx.h"
+ #endif
|