-
Notifications
You must be signed in to change notification settings - Fork 665
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please revert commit 81eca07b348e55d391f357c137adaa8fd8f11dc0, it breaks cross compiled dokan fuse builds. #703
Comments
I and commit 0e8366c agree :-D |
Does |
All of the following files need the fix:
Commit 0e8366c only fixes Edit: I just noticed commit 0e8366c was from 2016 anyway. |
That was just a tongue-in-cheek way of saying that I fixed this before ;-) |
My bad 😞 made the change after trying to fix some sonarqube report and missed this point. |
Hey @Liryna, is there a public SonarQube instance or SonarCloud for the dokan-dev projects? I'm pretty sure that SonarCloud is free for open source projects. |
Hey @kyanha , Sonar allows opensource to use it for free. You can find the link in the readme: https://sonarcloud.io/dashboard?id=dokany |
Cool, thanks! Do you have any plans to load the dokan-dotnet, dokan-sshfs, dokan-delphi, dokan-java, and/or dokan-ruby projects into it? |
I have created a ticket to keep in mind for dokan-dotnet dokan-dev/dokan-dotnet#191 |
The commit 81eca07 changes all occurrences of
#include <windows.h>
to#include <Windows.h>
, claiming it to correct a typo. Windows is case insensitive, and the capitalization of windows.h varies greatly across different windows SDKs, so this change neither fixes nor improves anything on windows.Because linux is case sensitive and all linux cross compilers use lowercase for windows.h, the change broke cross compiling of dokan fuse and of applications which use dokan fuse.
Please revert commit 81eca07.
The text was updated successfully, but these errors were encountered: