Skip to content

Commit a0fab44

Browse files
authored
Fix case of windows headers files (#84)
1 parent 2cb9288 commit a0fab44

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Unreleased
44

55
* Fix `!6` host preference incorrectly allows IPv4 connections (https://github.com/fpco/streaming-commons/pull/83)
6+
* Fix case of windows header files to allow cross-compilation from linux to windows (https://github.com/fpco/streaming-commons/pull/84)
67

78
## 0.2.3.0
89

System/Win32File.hsc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ import Data.ByteString.Lazy.Internal (defaultChunkSize)
3131

3232

3333
#include <fcntl.h>
34-
#include <Share.h>
35-
#include <SYS/Stat.h>
34+
#include <share.h>
35+
#include <sys/stat.h>
3636
#include <errno.h>
3737

3838
newtype OFlag = OFlag CInt

0 commit comments

Comments
 (0)