Kaydet (Commit) 0ab0d0c9 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Do define SAL_DLLEXTENSION properly for iOS, too

Do it even if it can never be used successfully in an iOS app anyway,
as they are not supposed to load dynamic libraries (except system
ones).
üst 5a3a3796
...@@ -97,8 +97,14 @@ ...@@ -97,8 +97,14 @@
#ifdef IOS #ifdef IOS
#define SAL_UNX #define SAL_UNX
#define SAL_DLLEXTENSION /* SAL_DLLEXTENSION should not really be used on iOS, as iOS apps are
* not allowed to load own dynamic libraries.
*/
#define SAL_DLLEXTENSION ".dylib"
#define SAL_DLLPREFIX "lib" #define SAL_DLLPREFIX "lib"
/* This is fairly pointless too, an iOS app consists of a single
* executable (plus data files).
*/
#define SAL_PRGEXTENSION ".bin" #define SAL_PRGEXTENSION ".bin"
#define SAL_PATHSEPARATOR ':' #define SAL_PATHSEPARATOR ':'
#define SAL_PATHDELIMITER '/' #define SAL_PATHDELIMITER '/'
......
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