temp tweak pending build system change

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5864 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2007-10-12 23:53:32 +00:00
parent 49fbd1d835
commit d1ff29dda5

View File

@ -663,7 +663,7 @@ static switch_status_t switch_loadable_module_load_file(char *path, char *filena
#ifdef WIN32
status = switch_dso_load(&dso, "FreeSwitch.dll", loadable_modules.pool);
#elif defined (MACOSX) || defined(DARWIN)
status = switch_dso_load(&dso, "libfreeswitch.dylib", loadable_modules.pool);
status = switch_dso_load(&dso, SWITCH_PREFIX_DIR "/lib/libfreeswitch.dylib", loadable_modules.pool);
#else
status = switch_dso_load(&dso, NULL, loadable_modules.pool);
#endif