Commit a2698a00 authored by David Reid's avatar David Reid

Fix compilation error relating to dlopen() and family.

parent ea42e16a
...@@ -17721,6 +17721,13 @@ MA_API ma_result ma_job_queue_next(ma_job_queue* pQueue, ma_job* pJob) ...@@ -17721,6 +17721,13 @@ MA_API ma_result ma_job_queue_next(ma_job_queue* pQueue, ma_job* pJob)
Dynamic Linking Dynamic Linking
*******************************************************************************/ *******************************************************************************/
#ifdef MA_POSIX
/* No need for dlfcn.h if we're not using runtime linking. */
#ifndef MA_NO_RUNTIME_LINKING
#include <dlfcn.h>
#endif
#endif
MA_API ma_handle ma_dlopen(ma_log* pLog, const char* filename) MA_API ma_handle ma_dlopen(ma_log* pLog, const char* filename)
{ {
#ifndef MA_NO_RUNTIME_LINKING #ifndef MA_NO_RUNTIME_LINKING
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment