comparison th_types.h @ 763:c6b2546d3ae3

#define TH_FS_CASE_INSENSITIVE for Windows and DOS.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 09 Feb 2023 23:55:04 +0200
parents 57ccf6402d2a
children
comparison
equal deleted inserted replaced
762:6d3632306728 763:c6b2546d3ae3
32 32
33 33
34 // Check for system type 34 // Check for system type
35 #if defined(__WIN64) || defined(_WIN64) || defined(__WIN32) || defined(_WIN32) 35 #if defined(__WIN64) || defined(_WIN64) || defined(__WIN32) || defined(_WIN32)
36 # define TH_PLAT_WINDOWS 1 36 # define TH_PLAT_WINDOWS 1
37 # define TH_FS_CASE_INSENSITIVE 1
37 #elif defined(__DJGPP__) && __DJGPP__ >= 2 38 #elif defined(__DJGPP__) && __DJGPP__ >= 2
38 # define TH_PLAT_DOS 1 39 # define TH_PLAT_DOS 1
39 # undef __STRICT_ANSI__ 40 # undef __STRICT_ANSI__
41 # define TH_FS_CASE_INSENSITIVE 1
40 #else 42 #else
41 # define TH_PLAT_UNIX 1 43 # define TH_PLAT_UNIX 1
42 #endif 44 #endif
43 45
44 46