07a13c31f0
SDL_perl is a package of perl modules that provides both functional and object orient interfaces to the Simple DirectMedia Layer for Perl 5. This package does take some liberties with the SDL API, and attempts to adhere to the spirit of both the SDL and Perl. For the object oriented programming interface please see the documentation provided on a per class basis.
24 lines
521 B
Plaintext
24 lines
521 B
Plaintext
$OpenBSD: patch-src_OpenGL_xs,v 1.1.1.1 2009/06/02 21:57:38 sthen Exp $
|
|
--- src/OpenGL.xs.orig Wed Oct 5 02:25:49 2005
|
|
+++ src/OpenGL.xs Mon May 25 14:07:37 2009
|
|
@@ -12,8 +12,8 @@
|
|
|
|
#include <SDL.h>
|
|
|
|
-#include <gl.h>
|
|
-#include <glu.h>
|
|
+#include <GL/gl.h>
|
|
+#include <GL/glu.h>
|
|
|
|
#ifdef USE_THREADS
|
|
#define HAVE_TLS_CONTEXT
|
|
@@ -23,7 +23,7 @@
|
|
#define GL_ALL_CLIENT_ATTRIB_BITS 0xFFFFFFF
|
|
#endif /* GL_ALL_CLIENT_BITS */
|
|
|
|
-#include "../defines.h"
|
|
+#include "../src/defines.h"
|
|
|
|
SV* sdl_perl_nurbs_error_hook;
|
|
void
|