changeset 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 6d3632306728
children 0abba6091bd1
files th_types.h
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/th_types.h	Sun Feb 05 19:41:05 2023 +0200
+++ b/th_types.h	Thu Feb 09 23:55:04 2023 +0200
@@ -34,9 +34,11 @@
 // Check for system type
 #if defined(__WIN64) || defined(_WIN64) || defined(__WIN32) || defined(_WIN32)
 #  define TH_PLAT_WINDOWS 1
+#  define TH_FS_CASE_INSENSITIVE 1
 #elif defined(__DJGPP__) && __DJGPP__ >= 2
 #  define TH_PLAT_DOS 1
 #  undef __STRICT_ANSI__
+#  define TH_FS_CASE_INSENSITIVE 1
 #else
 #  define TH_PLAT_UNIX 1
 #endif