Added dlsymb settting for QNX

This commit is contained in:
Robert Osfield
2009-11-06 13:53:16 +00:00
parent 959cd04097
commit 4c01079d57

View File

@@ -378,6 +378,10 @@ void* osg::getGLExtensionFuncPtr(const char *funcName)
return dlsym(0, funcName);
#elif defined (__QNX__)
return dlsym(RTLD_DEFAULT, funcName);
#else // all other unixes
return dlsym(0, funcName);