From 1cafdf7a59f379d581f6791f803270bb7c2c749e Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Fri, 30 Mar 2007 12:12:21 +0000 Subject: [PATCH] * change darwin/i386 and ppc from case_sensitive into case_aware because the directory caching overrules the file system behaviour for case-insensitive systems (will do darwin/ppc64 separate because it can't be merged back) git-svn-id: trunk@7035 - --- compiler/systems/i_bsd.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/systems/i_bsd.pas b/compiler/systems/i_bsd.pas index 6d7c085df0..fa9c54047f 100644 --- a/compiler/systems/i_bsd.pas +++ b/compiler/systems/i_bsd.pas @@ -397,7 +397,7 @@ unit i_bsd; system : system_powerpc_darwin; name : 'Darwin for PowerPC'; shortname : 'Darwin'; - flags : [tf_p_ext_support,tf_files_case_sensitive,tf_smartlink_sections,tf_dwarf_relative_addresses,tf_dwarf_only_local_labels]; + flags : [tf_p_ext_support,tf_files_case_aware,tf_smartlink_sections,tf_dwarf_relative_addresses,tf_dwarf_only_local_labels]; cpu : cpu_powerpc; unit_env : 'BSDUNITS'; extradefines : 'UNIX;BSD;HASUNIX'; @@ -458,7 +458,7 @@ unit i_bsd; system : system_i386_darwin; name : 'Darwin for i386'; shortname : 'Darwin'; - flags : [tf_p_ext_support,tf_files_case_sensitive,tf_smartlink_sections,tf_dwarf_relative_addresses,tf_dwarf_only_local_labels]; + flags : [tf_p_ext_support,tf_files_case_aware,tf_smartlink_sections,tf_dwarf_relative_addresses,tf_dwarf_only_local_labels]; cpu : cpu_i386; unit_env : 'BSDUNITS'; extradefines : 'UNIX;BSD;HASUNIX';