diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | src/lilv_internal.h | 10 |
2 files changed, 2 insertions, 11 deletions
@@ -1,6 +1,7 @@ lilv (0.24.25) unstable; urgency=medium * Add lint option with project metadata and code quality tests + * Clean up and isolate platform-specific code * Fix C++ test build on MacOS * Fix library current_version on MacOS * Fix test suite when TMPDIR has no trailing slash @@ -8,7 +9,7 @@ lilv (0.24.25) unstable; urgency=medium * Improve const correctness * Replace more platform-specific code with use of zix - -- David Robillard <d@drobilla.net> Mon, 25 Nov 2024 01:04:00 +0000 + -- David Robillard <d@drobilla.net> Wed, 11 Dec 2024 19:33:58 +0000 lilv (0.24.24) stable; urgency=medium diff --git a/src/lilv_internal.h b/src/lilv_internal.h index 6dc47ee..70c47de 100644 --- a/src/lilv_internal.h +++ b/src/lilv_internal.h @@ -20,16 +20,6 @@ extern "C" { #include <stdint.h> #include <stdio.h> -#ifdef _WIN32 -# include <direct.h> -# include <windows.h> -# ifdef _MSC_VER -# ifndef snprintf -# define snprintf _snprintf -# endif -# endif -#endif - #ifdef LILV_DYN_MANIFEST # include <lv2/dynmanifest/dynmanifest.h> #endif |