Set names for mpg123 and sndfile macOS dynamic libraries

This commit is contained in:
alexey.lysiuk 2017-04-17 19:21:57 +03:00
parent a7cb7bbb9c
commit 03b77c0505
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ FModule MPG123Module{"MPG123"};
#ifdef _WIN32
#define MPG123LIB "libmpg123-0.dll"
#elif defined(__APPLE__)
#define MPG123LIB ""
#define MPG123LIB "libmpg123.0.dylib"
#else
#define MPG123LIB "libmpg123.so.1"
#endif

View file

@ -53,7 +53,7 @@ FModule SndFileModule{"SndFile"};
#ifdef _WIN32
#define SNDFILELIB "libsndfile-1.dll"
#elif defined(__APPLE__)
#define SNDFILELIB ""
#define SNDFILELIB "libsndfile.1.dylib"
#else
#define SNDFILELIB "libsndfile.so.1"
#endif