diff --git a/premake4.lua b/premake4.lua
index 25bef7ef611435ac2fee7b7e8e99d206767ad884..b9b764c37ba3d23133c4f73d1ccd16c0d8d3f374 100644
--- a/premake4.lua
+++ b/premake4.lua
@@ -10,6 +10,7 @@ solution "TEngine"
 		"src/physfs",
 		"src/physfs/zlib123",
 		"/usr/include/SDL",
+		"/usr/include/GL",
 	}
 
 	libdirs {
@@ -37,8 +38,19 @@ project "TEngine"
 	defines { [[TENGINE_HOME_PATH='".t-engine"']] }
 
 configuration "macosx"
-	linkoptions { "mac/SDLmain.m", "-framework SDL", "-framework SDL_gfx", "-framework SDL_image", "-framework SDL_ttf", "-framework SDL_mixer", "-framework Cocoa" }
-	files { "mac/SDL*" }
+	linkoptions { "-framework SDL", "-framework SDL_gfx", "-framework SDL_image", "-framework SDL_ttf", "-framework SDL_mixer", "-framework Cocoa", "-framework OpenGL" }
+	files { "src/mac/SDL*" }
+        links { "IOKit" }
+        includedirs {
+              "/System/Library/Frameworks/OpenGL.framework/Headers",
+              "/Library/Frameworks/SDL.framework/Headers",
+              "/Library/Frameworks/SDL_net.framework/Headers",
+              "/Library/Frameworks/SDL_image.framework/Headers",
+              "/Library/Frameworks/SDL_ttf.framework/Headers",
+              "/Library/Frameworks/SDL_gfx.framework/Headers",
+              "/Library/Frameworks/SDL_mixer.framework/Headers"
+        }
+        defines { "USE_TENGINE_MAIN" }
 	targetdir "."
 
 configuration "not macosx"
@@ -68,6 +80,7 @@ project "physfs"
 		files { "src/physfs/platform/windows.c",  }
 	configuration "macosx"
 		files { "src/physfs/platform/macosx.c", "src/physfs/platform/posix.c",  }
+                includedirs { "/Library/Frameworks/SDL.framework/Headers" }
 
 project "lua"
 	kind "StaticLib"
diff --git a/src/core_lua.c b/src/core_lua.c
index 90166aaebc9a02f96d15d4ea2592b880306b2389..8e049ce4b9f36fd220a191b5a39b81167b7327a5 100644
--- a/src/core_lua.c
+++ b/src/core_lua.c
@@ -410,6 +410,10 @@ static int sdl_new_surface(lua_State *L)
 		32,
 		rmask, gmask, bmask, amask
 		);
+
+        if (s == NULL)
+          printf("ERROR : SDL_CreateRGBSurface : %s\n",SDL_GetError());
+
 	return 1;
 }
 
@@ -503,6 +507,10 @@ static int sdl_surface_toscreen(lua_State *L)
 
 	// Jonction entre OpenGL et SDL.
 	glTexImage2D(GL_TEXTURE_2D, 0, nOfColors, (*s)->w, (*s)->h, 0, texture_format, GL_UNSIGNED_BYTE, (*s)->pixels);
+        GLenum err = glGetError();
+        if (err != GL_NO_ERROR) {
+          printf("glTexImage2D : %s\n",gluErrorString(err));
+        }
 
 	glBegin( GL_QUADS );                 /* Draw A Quad              */
 	glTexCoord2f(0,0); glVertex2f(0  + x, 0  + y);
diff --git a/src/display_sdl.c b/src/display_sdl.c
index 032eed7b9fa52ea02ec013bcc1d55401ddba0bd1..133dfe760af4a90452a9736b5a110f67d2ecaafb 100644
--- a/src/display_sdl.c
+++ b/src/display_sdl.c
@@ -37,5 +37,7 @@ inline void sdlDrawImage(SDL_Surface *dest, SDL_Surface *image, int x, int y)
 	r.h=image->h;
 	r.x=x;
 	r.y=y;
-	SDL_BlitSurface(image, NULL, dest, &r);
+	int errcode = SDL_BlitSurface(image, NULL, dest, &r);
+        if (errcode)
+          printf("ERROR! SDL_BlitSurface failed! (%d,%s)\n",errcode,SDL_GetError());
 }
diff --git a/src/display_sdl.h b/src/display_sdl.h
index 6a422e40897012b6c36f20cb84b5b865ba37590a..0c78f1efe8cd69f7e6940a297475548d656bd5b0 100644
--- a/src/display_sdl.h
+++ b/src/display_sdl.h
@@ -36,8 +36,8 @@
 
 #include <SDL.h>
 #include <SDL_framerate.h>
-#include <GL/gl.h>
-#include <GL/glu.h>
+#include <gl.h>
+#include <glu.h>
 
 #ifdef __cplusplus
 extern "C" {
diff --git a/src/main.c b/src/main.c
index f112105a1e5886147207da2988619b1a32fa101c..afe2cb4c48c9fb6a943c88ce83b515a37f3bb43c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -356,6 +356,12 @@ int resizeWindow(int width, int height)
 /**
  * Program entry point.
  */
+
+// Let some platforms use a different entry point
+#ifdef USE_TENGINE_MAIN
+#define main tengine_main
+#endif
+
 int main(int argc, char *argv[])
 {
 	// RNG init
diff --git a/src/map.h b/src/map.h
index c056ea951aac0383e6bd7145331ebe909a51ecb5..b651e6b767e7de98cf196331946fab41548ee23f 100644
--- a/src/map.h
+++ b/src/map.h
@@ -1,7 +1,7 @@
 #ifndef _MAP_H_
 #define _MAP_H_
 
-#include <GL/gl.h>
+#include <gl.h>
 
 typedef struct {
 	GLuint **grids_terrain;