Symbian: Improve PIPS version checking

This commit is contained in:
Shinovon 2025-08-04 04:27:36 +05:00
parent 7c326bb2a2
commit ef1b8fe86d
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
:"ClassiCube" :"ClassiCube"
; Check OpenC versions ; Check OpenC versions
IF( version(0x20009a80, <, 1, 5, 0) ) AND NOT (EXISTS("Z:\sys\bin\libc.dll") OR EXISTS("C:\sys\bin\libc.dll")) IF version(0x20009a80, <, 1, 5, 0) AND NOT EXISTS("C:\sys\bin\libc.dll")
"incompatible_openc.txt"-"", FT, FORCEABORT "incompatible_openc.txt"-"", FT, FORCEABORT
ENDIF ENDIF

View File

@ -51,7 +51,7 @@ const cc_result ReturnCode_SocketWouldBlock = EWOULDBLOCK;
const cc_result ReturnCode_SocketDropped = EPIPE; const cc_result ReturnCode_SocketDropped = EPIPE;
#define SUPPORTS_GETADDRINFO 1 #define SUPPORTS_GETADDRINFO 1
const char* Platform_AppNameSuffix = ""; const char* Platform_AppNameSuffix = " Symbian";
cc_uint8 Platform_Flags = PLAT_FLAG_SINGLE_PROCESS | PLAT_FLAG_APP_EXIT; cc_uint8 Platform_Flags = PLAT_FLAG_SINGLE_PROCESS | PLAT_FLAG_APP_EXIT;
cc_bool Platform_ReadonlyFilesystem; cc_bool Platform_ReadonlyFilesystem;