summaryrefslogtreecommitdiffstats
path: root/UnknownVersion/UIComposer Changes.txt
blob: 6c0f7795cef7ad79da83c7e466032ec89225a773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
1. luaconf.h
	Added scripts directory to the package path.

Lua 5.1.1
+++++++++
1. loadlib.c
	setpath is commented and unusable. getenv is failing on XDK NDEBUG build

2. loslib.c
	os_execute is commented and unusable. system is failing on XDK NDEBUG build
	os_getenv is commented and unusable. getenv is failing on XDK NDEBUG build
3. lua.c
	removed from make. 

4. luaconf.h
	a.	#pragma warning( disable : 4244 ) added to remove warning about possible when converting from "type1" to "type2"
	b.	LUA_NUMBER changed from double to float
	c.	LUA_NUMBER_SCAN changed from "%lf" to "%f"
	
5. lauxlib.c
	a.	// AKPATCHEND added to the ak_lua_realloc and ak_lua_free function declaration block
	b.	// AKPATCHEND added to l_alloc function definition
	
6. lmathlib.c
	An 'f' added to PI and RADIANS_PER_DEGREE definitions to make it float numbers

/////////////////////////////////////////////////////////////////////////////////////////////////

Lua 5.1.2
+++++++++
Added on April 04, 2007

1. loadlib.h
		Added #define for getenv( ). getenv( ) is failing on XDK NDEBUG build
		
2. loslib.c
		Added #define for getenv( ) and system( ). getenv( ) and system( ) is failing on XDK NDEBUG build

3. lua.c
		removed from make. 

4. luaconf.h
		a.	#pragma warning( disable : 4244 ) added to remove warning about possible data loss when converting from "type1" to "type2"
		b.	LUA_NUMBER changed from double to float and removed #define LUA_NUMBER_DOUBLE
		c.	LUA_NUMBER_SCAN changed from "%lf" to "%f"
	
5. lauxlib.c
	a.	// AKPATCHEND added to the ak_lua_realloc and ak_lua_free function declaration block
	b.	// AKPATCHEND added to l_alloc function definition
	
6. lmathlib.c
		An 'f' added to PI and RADIANS_PER_DEGREE definitions to make it float numbers.

++++++++++++++++++++
Monday, May 21, 2007

1. Removed previous modifications to lauxlib.c. Using lua_newstate and providing our allocator, will remove our 'hack' to the lua code.