baudehlo / node-fs-ext

Extras missing from node's fs module
MIT License
101 stars 45 forks source link

Cannot compile in Windows #23

Closed deltasquare4 closed 10 years ago

deltasquare4 commented 11 years ago

First things first, does this module work on Windows? (I figured it did, because windows-specific headers are included in fs-ext.cc)

I am unable to build it on Windows 7. The error says: Cannot open include file: 'sys/file.h': No such file or directory

I already have all the dependencies listed in node-gyp Readme installed. Am I missing something here?

Thanks in advance.

baudehlo commented 11 years ago

I don't have a way to test on Windows, so was kind of relying on people with dev experience there to help. There's some level of effort to be Windows compatible, but no active development effort for it.

Not sure what else to say - unless I can get a patch to make it compile/work on Windows I don't know how to move forwards.

On Wed, Jun 5, 2013 at 9:29 AM, Rakshit Menpara notifications@github.comwrote:

First things first, does this module work on Windows? (I figured it did, because windows-specific headers are included in fs-ext.cc)

I am unable to build it on Windows 7. The error says "Cannot open include file: 'sys/file.h': No such file or directory"

I already have all the dependencies listed in node-gyp Readmehttps://github.com/TooTallNate/node-gyp#installationinstalled. Am I missing something here?

Thanks in advance.

— Reply to this email directly or view it on GitHubhttps://github.com/baudehlo/node-fs-ext/issues/23 .

deltasquare4 commented 11 years ago

Thanks for the reply. I did some preliminary research on that, and figured the windows thing was broken. I'll see what I can do in my spare time. Thanks.

SaikiranDaripelli commented 10 years ago

I sent a pull request with patch to make it compile/work(tested flock only) in windows.

deltasquare4 commented 10 years ago

Thanks @SaikiranDaripelli.