Ooops... previous fix didn't work, corrected.
This commit is contained in:
@@ -61,7 +61,12 @@ inline void* getGLExtensionFuncPtr(const char *funcName)
|
||||
} else
|
||||
return NULL;
|
||||
|
||||
#elif defined (__sun) || defined (__sgi)
|
||||
#elif defined (__sun)
|
||||
|
||||
static void *handle = dlopen((const char *)0L, RTLD_LAZY);
|
||||
return dlsym(handle, funcName);
|
||||
|
||||
#elif defined (__sgi)
|
||||
|
||||
static void *handle = dlopen((const char *)0L, RTLD_LAZY);
|
||||
return dlsym(handle, funcName);
|
||||
|
||||
Reference in New Issue
Block a user