From 43ef0787dee53b75d07528689836ed1930e6f60b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 17 Jun 2022 09:22:05 -0400 Subject: Fix fallback flock() detection on MacOS --- src/lilv_config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 -- cgit v1.2.1