Implement support for loading OS X libraries.

Refs #4993
This commit is contained in:
Gunnar Beutner 2013-11-04 07:49:51 +01:00
parent 9062604f13
commit 8586f90379
1 changed files with 4 additions and 2 deletions

View File

@ -251,9 +251,11 @@ void *
Utility::LoadExtensionLibrary(const String& library)
{
String path;
#ifdef _WIN32
#if defined(_WIN32)
path = library + ".dll";
#else /* _WIN32 */
#elif defined(__APPLE__)
path = "lib" + library + ".dylib";
#else /* __APPLE__ */
path = "lib" + library + ".so";
#endif /* _WIN32 */