Linux gcc 4.8 now builds clean with -Wcast-qual flag.

This commit is contained in:
Nigel Stewart 2014-10-14 19:24:49 +10:00
parent d99211a9d3
commit 3f48639825
5 changed files with 7 additions and 6 deletions

View File

@ -211,7 +211,7 @@ static GLboolean _glewStrSame (const GLubyte* a, const GLubyte* b, GLuint n)
return i == n ? GL_TRUE : GL_FALSE; return i == n ? GL_TRUE : GL_FALSE;
} }
static GLboolean _glewStrSame1 (GLubyte** a, GLuint* na, const GLubyte* b, GLuint nb) static GLboolean _glewStrSame1 (const GLubyte** a, GLuint* na, const GLubyte* b, GLuint nb)
{ {
while (*na > 0 && (**a == ' ' || **a == '\n' || **a == '\r' || **a == '\t')) while (*na > 0 && (**a == ' ' || **a == '\n' || **a == '\r' || **a == '\t'))
{ {
@ -232,7 +232,7 @@ static GLboolean _glewStrSame1 (GLubyte** a, GLuint* na, const GLubyte* b, GLuin
return GL_FALSE; return GL_FALSE;
} }
static GLboolean _glewStrSame2 (GLubyte** a, GLuint* na, const GLubyte* b, GLuint nb) static GLboolean _glewStrSame2 (const GLubyte** a, GLuint* na, const GLubyte* b, GLuint nb)
{ {
if(*na >= nb) if(*na >= nb)
{ {
@ -248,7 +248,7 @@ static GLboolean _glewStrSame2 (GLubyte** a, GLuint* na, const GLubyte* b, GLuin
return GL_FALSE; return GL_FALSE;
} }
static GLboolean _glewStrSame3 (GLubyte** a, GLuint* na, const GLubyte* b, GLuint nb) static GLboolean _glewStrSame3 (const GLubyte** a, GLuint* na, const GLubyte* b, GLuint nb)
{ {
if(*na >= nb) if(*na >= nb)
{ {

View File

@ -12,7 +12,7 @@ GLboolean glxewContextIsSupported (const GLXEWContext* ctx, const char* name)
GLboolean glxewIsSupported (const char* name) GLboolean glxewIsSupported (const char* name)
#endif #endif
{ {
GLubyte* pos = (GLubyte*)name; const GLubyte* pos = (const GLubyte*)name;
GLuint len = _glewStrLen(pos); GLuint len = _glewStrLen(pos);
GLboolean ret = GL_TRUE; GLboolean ret = GL_TRUE;
while (ret && len > 0) while (ret && len > 0)

View File

@ -4,7 +4,7 @@ GLboolean GLEWAPIENTRY glewContextIsSupported (const GLEWContext* ctx, const cha
GLboolean GLEWAPIENTRY glewIsSupported (const char* name) GLboolean GLEWAPIENTRY glewIsSupported (const char* name)
#endif #endif
{ {
GLubyte* pos = (GLubyte*)name; const GLubyte* pos = (const GLubyte*)name;
GLuint len = _glewStrLen(pos); GLuint len = _glewStrLen(pos);
GLboolean ret = GL_TRUE; GLboolean ret = GL_TRUE;
while (ret && len > 0) while (ret && len > 0)

View File

@ -12,7 +12,7 @@ GLboolean GLEWAPIENTRY wglewContextIsSupported (const WGLEWContext* ctx, const c
GLboolean GLEWAPIENTRY wglewIsSupported (const char* name) GLboolean GLEWAPIENTRY wglewIsSupported (const char* name)
#endif #endif
{ {
GLubyte* pos = (GLubyte*)name; const GLubyte* pos = (const GLubyte*)name;
GLuint len = _glewStrLen(pos); GLuint len = _glewStrLen(pos);
GLboolean ret = GL_TRUE; GLboolean ret = GL_TRUE;
while (ret && len > 0) while (ret && len > 0)

View File

@ -23,6 +23,7 @@ NAME = GLEW
WARN = -Wall -W WARN = -Wall -W
POPT = -O2 POPT = -O2
CFLAGS.EXTRA += -fPIC CFLAGS.EXTRA += -fPIC
CFLAGS.EXTRA += -Wcast-qual
BIN.SUFFIX = BIN.SUFFIX =
LIB.SONAME = lib$(NAME).so.$(SO_MAJOR) LIB.SONAME = lib$(NAME).so.$(SO_MAJOR)
LIB.DEVLNK = lib$(NAME).so LIB.DEVLNK = lib$(NAME).so