Use O_BINARY instead of _O_BINARY
Cygwin does not seem to have the later
diff --git a/src/hb-blob.cc b/src/hb-blob.cc
index edee673..368491c 100644
--- a/src/hb-blob.cc
+++ b/src/hb-blob.cc
@@ -487,8 +487,8 @@
#if defined(_WIN32) || defined(__CYGWIN__)
# include <windows.h>
#else
-# ifndef _O_BINARY
-# define _O_BINARY 0
+# ifndef O_BINARY
+# define O_BINARY 0
# endif
#endif
@@ -540,7 +540,7 @@
hb_mapped_file_t *file = (hb_mapped_file_t *) calloc (1, sizeof (hb_mapped_file_t));
if (unlikely (!file)) return hb_blob_get_empty ();
- int fd = open (file_name, O_RDONLY | _O_BINARY, 0);
+ int fd = open (file_name, O_RDONLY | O_BINARY, 0);
if (unlikely (fd == -1)) goto fail_without_close;
struct stat st;