diff --git a/uppsrc/plugin/glew/eglew.h b/uppsrc/plugin/glew/eglew.h index e9e5a0b29..cf8a8b106 100644 --- a/uppsrc/plugin/glew/eglew.h +++ b/uppsrc/plugin/glew/eglew.h @@ -107,7 +107,7 @@ #include #ifndef GLEW_INCLUDE -# include +# include "glew.h" #else # include GLEW_INCLUDE #endif diff --git a/uppsrc/plugin/glew/glew.c b/uppsrc/plugin/glew/glew.c index 967c5c91f..2182237de 100644 --- a/uppsrc/plugin/glew/glew.c +++ b/uppsrc/plugin/glew/glew.c @@ -31,7 +31,7 @@ */ #ifndef GLEW_INCLUDE -# include +# include "glew.h" #else # include GLEW_INCLUDE #endif @@ -40,7 +40,7 @@ # define GLAPI extern # include #elif defined(GLEW_EGL) -# include +# include "eglew.h" #elif defined(_WIN32) /* * If NOGDI is defined, wingdi.h won't be included by windows.h, and thus @@ -50,9 +50,9 @@ # if defined(NOGDI) # undef NOGDI # endif -# include +# include "wglew.h" #elif !defined(__ANDROID__) && !defined(__native_client__) && !defined(__HAIKU__) && (!defined(__APPLE__) || defined(GLEW_APPLE_GLX)) -# include +# include "glxew.h" #endif #include /* For size_t */ diff --git a/uppsrc/plugin/glew/glxew.h b/uppsrc/plugin/glew/glxew.h index 0474ed5ed..bcdb49cde 100644 --- a/uppsrc/plugin/glew/glxew.h +++ b/uppsrc/plugin/glew/glxew.h @@ -100,7 +100,7 @@ #include #ifndef GLEW_INCLUDE -# include +# include "glew.h" #else # include GLEW_INCLUDE #endif