mirror of
https://github.com/86Box/86Box.git
synced 2026-02-22 01:25:33 -07:00
Add correct library names for macOS
This commit is contained in:
@@ -61,6 +61,8 @@
|
||||
|
||||
#ifdef _WIN32
|
||||
# define PATH_PNG_DLL "libpng16-16.dll"
|
||||
#elif defined __APPLE__
|
||||
# define PATH_PNG_DLL "libpng16.dylib"
|
||||
#else
|
||||
# define PATH_PNG_DLL "libpng16.so"
|
||||
#endif
|
||||
|
||||
@@ -43,8 +43,13 @@
|
||||
#define GS_ARG_ENCODING_UTF8 1
|
||||
#define gs_error_Quit -101
|
||||
|
||||
#ifdef _WIN32
|
||||
#define PATH_GHOSTSCRIPT_DLL "gsdll32.dll"
|
||||
#define PATH_GHOSTSCRIPT_SO "libgs.so"
|
||||
#elif defined __APPLE__
|
||||
#define PATH_GHOSTSCRIPT_DLL "libgs.dylib"
|
||||
#else
|
||||
#define PATH_GHOSTSCRIPT_DLL "libgs.so"
|
||||
#endif
|
||||
|
||||
#define POSTSCRIPT_BUFFER_LENGTH 65536
|
||||
|
||||
|
||||
Reference in New Issue
Block a user