summaryrefslogtreecommitdiff
path: root/src/share
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2017-02-08 19:42:42 -0800
committerErik de Castro Lopo <erikd@mega-nerd.com>2017-02-09 20:02:18 +1100
commitc669249e4c3b23e3a3bb41223035cc41a0e75508 (patch)
treec4061c97517e304d2da0cd17eb47a3f3a9f422e2 /src/share
parentd2cb0d1eb2f713d7f3ff83da9869be7bddba909c (diff)
downloadflac-c669249e4c3b23e3a3bb41223035cc41a0e75508.tar.gz
Fix compile with cygwin
The underscores are wrong. The comment is also correct. Also remove the configure.ac option. Otherwise it tries to compile the windows unicode stuff which POSIX(cygwin) does not understand. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
Diffstat (limited to 'src/share')
-rw-r--r--src/share/grabbag/file.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/share/grabbag/file.c b/src/share/grabbag/file.c
index 4cbef9d9..3a972925 100644
--- a/src/share/grabbag/file.c
+++ b/src/share/grabbag/file.c
@@ -29,7 +29,7 @@
#include <sys/types.h> /* some flavors of BSD (like OS X) require this to get time_t */
#include <utime.h> /* for utime() */
#endif
-#if defined __CYGWIN__ || defined __EMX__
+#if defined __EMX__
#include <io.h> /* for setmode(), O_BINARY */
#include <fcntl.h> /* for _O_BINARY */
#endif
@@ -164,9 +164,6 @@ FILE *grabbag__file_get_binary_stdin(void)
*/
#if defined _MSC_VER || defined __MINGW32__
_setmode(_fileno(stdin), _O_BINARY);
-#elif defined __CYGWIN__
- /* almost certainly not needed for any modern Cygwin, but let's be safe... */
- setmode(_fileno(stdin), _O_BINARY);
#elif defined __EMX__
setmode(fileno(stdin), O_BINARY);
#endif
@@ -182,9 +179,6 @@ FILE *grabbag__file_get_binary_stdout(void)
*/
#if defined _MSC_VER || defined __MINGW32__
_setmode(_fileno(stdout), _O_BINARY);
-#elif defined __CYGWIN__
- /* almost certainly not needed for any modern Cygwin, but let's be safe... */
- setmode(_fileno(stdout), _O_BINARY);
#elif defined __EMX__
setmode(fileno(stdout), O_BINARY);
#endif