diff options
author | David Robillard <d@drobilla.net> | 2022-08-21 23:47:47 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-10-14 17:53:49 -0400 |
commit | 36e3327b032e64f19ba1c0e1dc06cb40b7b79d02 (patch) | |
tree | 913091c9bfb05c07f66a9eec875aab376c7f5637 | |
parent | 09cfa793d3e227807ed3d6a1a835c92af2f57311 (diff) | |
download | zix-36e3327b032e64f19ba1c0e1dc06cb40b7b79d02.tar.gz zix-36e3327b032e64f19ba1c0e1dc06cb40b7b79d02.tar.bz2 zix-36e3327b032e64f19ba1c0e1dc06cb40b7b79d02.zip |
Fix fallback configuration on older MacOS versions
-rw-r--r-- | src/zix_config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zix_config.h b/src/zix_config.h index f4965f8..b1096a5 100644 --- a/src/zix_config.h +++ b/src/zix_config.h @@ -34,7 +34,7 @@ # if __has_include(<unistd.h>) # include <unistd.h> # endif -# elif defined(__unix__) +# elif defined(__APPLE__) || defined(__unix__) # include <unistd.h> # endif # endif |