Displaying 2 results from an estimated 2 matches for "88caf1e".
2013 Apr 02
2
flac 1.3.0pre3 pre-release
Janne Hyv?rinen wrote:
> Surprisingly flac_mac had mistakenly gotten extra parameters for safe
> string functions requiring further patching.
> And here's patches for the changes in git for flactimer.
Applied, thanks.
> I noticed compat.h patch didn't make it into git. I know it may not be
> perfect patch but unistd.h is in two different #ifdef checks. First one
>
2013 Apr 07
0
flac 1.3.0pre3 pre-release
...on problem when non-existing
unistd.h is tried to include with MSVC. It now includes it like before
the cleanup so it shouldn't do any harm to environments that have worked
in the past.
-------------- next part --------------
diff --git a/include/share/compat.h b/include/share/compat.h
index 88caf1e..222de65 100644
--- a/include/share/compat.h
+++ b/include/share/compat.h
@@ -93,13 +93,9 @@
#define FLAC__STRNCASECMP strncasecmp
#endif
-#if defined _MSC_VER || defined __MINGW32__
+#if defined _MSC_VER || defined __MINGW32__ || defined __CYGWIN__ || defined __EMX__
#include <io.h> /*...