Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix potential compilation issue on illumos/Solaris #1030

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix potential compilation issue on illumos/Solaris
Defining _ATFILE_SOURCE makes the file compile properly in presence of
a wider set of standard environment feature macros.
  • Loading branch information
tleedjarv committed Apr 29, 2024
commit b78c14cdf529a2753ecc6e69cfc18cbfc2cb3400
3 changes: 3 additions & 0 deletions src/props_xattr.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,9 @@ CAMLprim value unison_xattr_updates_ctime(value unit)


#if defined(__Solaris__)
#ifndef _ATFILE_SOURCE
#define _ATFILE_SOURCE 1
#endif
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
Expand Down
Loading