Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 9, 2009, 4:29:42 PM (15 years ago)
Author:
rgrieder
Message:

Update to tolua 1.0.93

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pch/src/tolua/changes_orxonox.diff

    r2710 r3127  
    1 diff -ruN tolua/tolua++.h tolua2/tolua++.h
    2 --- tolua/tolua++.h     Wed Jan 28 21:51:38 2009
    3 +++ tolua2/tolua++.h    Sat Jan 10 14:48:44 2009
     1--- tolua++.h   Tue Jun  9 16:27:17 2009
     2+++ tolua++.h   Tue Jun  9 14:50:04 2009
    43@@ -16,9 +16,34 @@
    54 #ifndef TOLUA_H
     
    3736 #define TOLUA_VERSION "tolua++-1.0.92"
    3837 
    39 diff -ruN tolua/tolua.c tolua2/tolua.c
    40 --- tolua/tolua.c       Wed Jan 28 21:51:00 2009
    41 +++ tolua2/tolua.c      Sat Jan 10 14:48:45 2009
     38--- tolua.c     Tue Jun  9 16:27:12 2009
     39+++ tolua.c     Tue Jun  9 14:50:04 2009
    4240@@ -4,6 +4,8 @@
    4341 ** TeCGraf/PUC-Rio
     
    5856          "  -P       : parse and print structure information (for debug).\n"
    5957          "  -S       : disable support for c++ strings.\n"
    60 @@ -64,12 +68,12 @@
     58@@ -65,12 +69,12 @@
    6159 }
    6260 
     
    7775 
    7876 static void error (char* o)
    79 @@ -81,6 +85,9 @@
     77@@ -82,6 +86,9 @@
    8078 
    8179 int main (int argc, char* argv[])
     
    8785  lua_State* L = luaL_newstate();
    8886  luaL_openlibs(L);
    89 @@ -97,6 +104,7 @@
     87@@ -98,6 +105,7 @@
    9088  lua_pushstring(L,TOLUA_VERSION); lua_setglobal(L,"TOLUA_VERSION");
    9189  lua_pushstring(L,LUA_VERSION); lua_setglobal(L,"TOLUA_LUA_VERSION");
     
    9593  {
    9694   help();
    97 @@ -124,6 +132,14 @@
     95@@ -125,6 +133,14 @@
    9896      case 'o': setfield(L,t,"o",argv[++i]); break;
    9997      case 'n': setfield(L,t,"n",argv[++i]); break;
     
    110108      case '1': setfield(L,t,"1",""); break;
    111109      case 'L': setfield(L,t,"L",argv[++i]); break;
    112 @@ -143,25 +159,53 @@
     110@@ -145,25 +161,53 @@
    113111   }
    114112   lua_pop(L,1);
Note: See TracChangeset for help on using the changeset viewer.