From: John L. <jr...@us...> - 2006-08-08 22:54:42
|
Update of /cvsroot/wxlua/wxLua/modules/wxbind/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv20786/wxLua/modules/wxbind/src Modified Files: wx_bind.cpp Log Message: more small compilation fixes for gcc in MSW (cygwin) Index: wx_bind.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxbind/src/wx_bind.cpp,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** wx_bind.cpp 7 Aug 2006 21:17:12 -0000 1.51 --- wx_bind.cpp 8 Aug 2006 22:54:37 -0000 1.52 *************** *** 61,65 **** wxCursor* wxLua_wxCROSS_CURSOR = NULL; ! #ifdef __MINGW32__ // dll creation fix const wxPoint wxDefaultPositionHack = wxDefaultPosition; const wxSize wxDefaultSizeHack = wxDefaultSize; --- 61,66 ---- wxCursor* wxLua_wxCROSS_CURSOR = NULL; ! #if defined(__MINGW32__) || defined(__GNUWIN32__) ! // FIX: "internal compiler error: output_operand: invalid expression as operand" const wxPoint wxDefaultPositionHack = wxDefaultPosition; const wxSize wxDefaultSizeHack = wxDefaultSize; |