diff options
author | Joel Brobecker <brobecker@adacore.com> | 2011-07-01 17:51:05 +0000 |
---|---|---|
committer | Joel Brobecker <brobecke@gcc.gnu.org> | 2011-07-01 17:51:05 +0000 |
commit | 985b34c77a44612cecf8c8a73bfa8224699b9855 (patch) | |
tree | 2101553adc801554eb75138475f104cfda9d278b /libiberty/ChangeLog | |
parent | cb0ad104286a76447490333ce7f94a2f557a5914 (diff) | |
download | gcc-985b34c77a44612cecf8c8a73bfa8224699b9855.tar.gz |
Darwin has case-insensitive filesystems
HFS+, the FS on Darwin, is case insensitive. So this patch adjusts
filename_cmp.c to ignore the casing when comparing filenames on Darwin.
include/ChangeLog:
* filenames.h (HAVE_CASE_INSENSITIVE_FILE_SYSTEM): Define
on Darwin, as well as on the systems that use a DOS-like
filesystem.
libiberty/ChangeLog:
* filename_cmp.c (filename_cmp, filename_ncmp): Add handling of
HAVE_CASE_INSENSITIVE_FILE_SYSTEM.
From-SVN: r175762
Diffstat (limited to 'libiberty/ChangeLog')
-rw-r--r-- | libiberty/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 809f22bc381..2f8e73497d9 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2011-07-01 Joel Brobecker <brobecker@adacore.com> + + * filename_cmp.c (filename_cmp, filename_ncmp): Add handling of + HAVE_CASE_INSENSITIVE_FILE_SYSTEM. + 2011-07-01 Jan Kratochvil <jan.kratochvil@redhat.com> PR debug/49408 |