Bläddra i källkod

Tweaked modules.

Mark Sibly 9 år sedan
förälder
incheckning
d6cbeeceba

+ 5 - 2
modules/gles20/gles20.monkey2

@@ -32,9 +32,12 @@ Using monkey
 		
 	#Endif
 	
-#Else If __TARGET__="emscripten"
+#Else
 
-	#Import "<GLES2/gl2.h>"	
+	#Import "<GLES2/gl2.h>"
+	
+	#import "<libGLESv1_CM.a>"
+	#import "<libGLESv2.a>"
 	
 #Endif
 

+ 1 - 0
modules/libc/libc.monkey2

@@ -131,6 +131,7 @@ Const S_IFREG:mode_t	'$8000
 
 Struct stat_t
 	Field st_mode:mode_t
+	Field st_size:Long
 	Field st_atime:time_t	'last access
 	Field st_mtime:time_t	'last modification
 	Field st_ctime:time_t	'status change

+ 5 - 1
modules/libc/module.json

@@ -1,4 +1,8 @@
 {
 	"module":"libc",
-	"versoin":"1.0.0"
+	"about":"StdC library wrapper",
+	"author":"Mark Sibly",
+	"version":"1.0.0",
+	"support":"http://monkey2.monkey-x.com",
+	"depends":[]
 }

+ 5 - 1
modules/litehtml/module.json

@@ -1,4 +1,8 @@
 {
 	"module":"litehtml",
-	"version":"1.0.0"
+	"about":"Simple html renderer",
+	"author":"Mark Sibly",
+	"version":"1.0.0",
+	"support":"http://monkey2.monkey-x.com",
+	"depends":["libc"]
 }