From d7ea96c20f33febd871adea36e6ab5d77614d3db Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 8 Jan 2012 15:49:45 +0000 Subject: Fix compilation on Mac OS X. git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3923 a436a847-0d15-0410-975c-d299462d15a1 --- src/util.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/util.c b/src/util.c index 526bf9b..7980b74 100644 --- a/src/util.c +++ b/src/util.c @@ -14,8 +14,12 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#define _POSIX_SOURCE 1 /* for wordexp, fileno */ -#define _BSD_SOURCE 1 /* for realpath, symlink */ +#define _POSIX_C_SOURCE 1 /* for wordexp, fileno */ +#define _BSD_SOURCE 1 /* for realpath, symlink */ + +#ifdef __APPLE__ +# define _DARWIN_C_SOURCE 1 /* for flock */ +#endif #include #include -- cgit v1.2.1