From 920a626c1702b5e06d1cf0b94434c7ae0bbd149e Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Fri, 26 Oct 2007 13:01:01 +0000 Subject: [PATCH] * mark darwin as case sensitive, because the dircache isn't always used anymore (the dircache masks the effects of case-sensitive file systems on targets marked as case-aware) git-svn-id: trunk@8946 - --- compiler/systems/i_bsd.pas | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/systems/i_bsd.pas b/compiler/systems/i_bsd.pas index c75d7e6ded..0172255602 100644 --- a/compiler/systems/i_bsd.pas +++ b/compiler/systems/i_bsd.pas @@ -399,7 +399,7 @@ unit i_bsd; system : system_powerpc_darwin; name : 'Darwin for PowerPC'; shortname : 'Darwin'; - flags : [tf_p_ext_support,tf_files_case_aware,tf_smartlink_sections,tf_dwarf_relative_addresses,tf_dwarf_only_local_labels,tf_pic_default]; + flags : [tf_p_ext_support,tf_files_case_sensitive,tf_smartlink_sections,tf_dwarf_relative_addresses,tf_dwarf_only_local_labels,tf_pic_default]; cpu : cpu_powerpc; unit_env : 'BSDUNITS'; extradefines : 'UNIX;BSD;HASUNIX'; @@ -460,7 +460,7 @@ unit i_bsd; system : system_i386_darwin; name : 'Darwin for i386'; shortname : 'Darwin'; - flags : [tf_p_ext_support,tf_files_case_aware,tf_smartlink_sections,tf_dwarf_relative_addresses,tf_dwarf_only_local_labels,tf_pic_uses_got,tf_pic_default]; + flags : [tf_p_ext_support,tf_files_case_sensitive,tf_smartlink_sections,tf_dwarf_relative_addresses,tf_dwarf_only_local_labels,tf_pic_uses_got,tf_pic_default]; cpu : cpu_i386; unit_env : 'BSDUNITS'; extradefines : 'UNIX;BSD;HASUNIX'; @@ -521,7 +521,7 @@ unit i_bsd; system : system_powerpc64_darwin; name : 'Darwin for PowerPC64'; shortname : 'Darwin'; - flags : [tf_p_ext_support,tf_files_case_aware,tf_smartlink_sections,tf_dwarf_relative_addresses,tf_dwarf_only_local_labels,tf_pic_default]; + flags : [tf_p_ext_support,tf_files_case_sensitive,tf_smartlink_sections,tf_dwarf_relative_addresses,tf_dwarf_only_local_labels,tf_pic_default]; cpu : cpu_powerpc64; unit_env : 'BSDUNITS'; extradefines : 'UNIX;BSD;HASUNIX';