diff options
author | David Robillard <d@drobilla.net> | 2024-12-11 14:36:07 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-12-11 14:57:34 -0500 |
commit | 8a70f7ab46fa4587a2f3db368f175fa1b8718bfe (patch) | |
tree | 390c1750fb19001710ee95080e485992594deb4b | |
parent | 4870b69f9fa18ee0bd923a86f770ae1e2667580b (diff) | |
download | lilv-8a70f7ab46fa4587a2f3db368f175fa1b8718bfe.tar.gz lilv-8a70f7ab46fa4587a2f3db368f175fa1b8718bfe.tar.bz2 lilv-8a70f7ab46fa4587a2f3db368f175fa1b8718bfe.zip |
Remove old Windows compatibility gunk
-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 |