aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/native/unix_jni_darwin.cc
Commit message (Collapse)AuthorAge
* Make getxattr not throw an exception when attribute does not exist on Mac.Gravatar ajmichael2018-02-09
| | | | | | | This matches the current behavior on Linux. When an extended attribute is not present on a file, getxattr on Linux returns ENODATA whereas getxattr on Mac returns ENOATTR. Previously, we were special casing ENODATA to not throw an exception but not ENOATTR. Now we treat them the same. RELNOTES: None PiperOrigin-RevId: 185157964
* Add support for xattr to Darwin.Gravatar Dave MacLachlan2016-06-15
| | | | | -- MOS_MIGRATED_REVID=124938322
* Add SMT detection for mac. Fixes #963.Gravatar Yue Gan2016-04-05
| | | | | | | -- Change-Id: Ib83af0d0a04dc6b173bef1df28d17abc7a3c824d Reviewed-on: https://bazel-review.googlesource.com/#/c/3120/ MOS_MIGRATED_REVID=119027507
* Rationalize copyright headersGravatar Damien Martin-Guillerez2015-09-25
| | | | | | | | | | | The headers were modified with `find . -type f -exec 'sed' '-Ei' 's|Copyright 201([45]) Google|Copyright 201\1 The Bazel Authors|' '{}' ';'` And manual edit for not Google owned copyright. Because of the nature of ijar, I did not modified the header of file owned by Alan Donovan. The list of authors were extracted from the git log. It is missing older Google contributors that can be added on-demand. -- MOS_MIGRATED_REVID=103938715
* Rollback of commit 73ad1482a1d99b9acd14f4545ff11671d87ec4e1.Gravatar Kristina Chodorow2015-05-27
| | | | | | | | | | | | | | | *** Reason for rollback *** stat64 is deprecated and causes compiler warnings on OS X *** Original change description *** Switch to stat64/lstat64 Better fix for #174. -- MOS_MIGRATED_REVID=94482625
* Switch to stat64/lstat64Gravatar Kristina Chodorow2015-05-08
| | | | | | | Better fix for #174. -- MOS_MIGRATED_REVID=93045666
* Header cleanups.Gravatar Han-Wen Nienhuys2015-04-22
| | | | | -- MOS_MIGRATED_REVID=91681168
* Implemented an partial emulation of fstatat for OS XGravatar Damien Martin-Guillerez2015-03-24
| | | | | | | | | | fstatat does not exists under OS X and it was replaced by a dummy stub. This resulted in symlinks being seen as unknown file type when reading directory entries. Ultimately, this leads to the inability to glob symlinks under OS X. -- MOS_MIGRATED_REVID=89304190
* Update from Google.Gravatar Han-Wen Nienhuys2015-02-25
-- MOE_MIGRATED_REVID=85702957