From 844ae92f089fecae14702517044773adaa32203f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 31 Jul 2016 19:09:19 -0400 Subject: Fix Windows compilation --- src/lilv_internal.h | 2 +- src/util.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/lilv_internal.h b/src/lilv_internal.h index 5abfcd4..af8e31a 100644 --- a/src/lilv_internal.h +++ b/src/lilv_internal.h @@ -43,7 +43,7 @@ extern "C" { #ifndef NAN # define NAN INFINITY - INFINITY #endif -static inline char* dlerror(void) { return "Unknown error"; } +static inline const char* dlerror(void) { return "Unknown error"; } #else # include # include diff --git a/src/util.c b/src/util.c index 6cc7cc5..d8f0bbd 100644 --- a/src/util.c +++ b/src/util.c @@ -29,7 +29,9 @@ #include #ifdef _WIN32 +#ifndef _WIN32_WINNT # define _WIN32_WINNT 0x0600 /* for CreateSymbolicLink */ +#endif # include # include # include -- cgit v1.2.1