diff options
author | David Robillard <d@drobilla.net> | 2022-06-17 09:22:05 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-07-08 21:14:01 -0400 |
commit | 43ef0787dee53b75d07528689836ed1930e6f60b (patch) | |
tree | c746f04cee4a31cd653390d213de3728be19a977 /src | |
parent | c36d3451278555134de850fc548d743b6da2179a (diff) | |
download | lilv-43ef0787dee53b75d07528689836ed1930e6f60b.tar.gz lilv-43ef0787dee53b75d07528689836ed1930e6f60b.tar.bz2 lilv-43ef0787dee53b75d07528689836ed1930e6f60b.zip |
Fix fallback flock() detection on MacOS
Diffstat (limited to 'src')
-rw-r--r-- | src/lilv_config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lilv_config.h b/src/lilv_config.h index 314aa9a..66155ef 100644 --- a/src/lilv_config.h +++ b/src/lilv_config.h @@ -29,7 +29,7 @@ #define LILV_CONFIG_H // Define version unconditionally so a warning will catch a mismatch -#define LILV_VERSION "0.24.14" +#define LILV_VERSION "0.24.15" #if !defined(LILV_NO_DEFAULT_CONFIG) @@ -53,7 +53,7 @@ // Classic UNIX: flock() # ifndef HAVE_FLOCK -# if defined(__unix__) +# if defined(__unix__) || defined(__APPLE__) # define HAVE_FLOCK # endif # endif |