-
Notifications
You must be signed in to change notification settings - Fork 176
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
GHC_NO_DIRENT_D_TYPE should be defined on Haiku #159
Comments
This is a valid solution for the used version ghc::filesystem v1.5.6, but with #142 this is not needed any more, as starting with v1.5.12 the code detects the presence of |
Could still use the detection for Haiku, otherwise I'm getting: error "Operating system currently not supported!": From: https://github.com/gulrak/filesystem/blob/master/include/ghc/filesystem.hpp#L79 #elif defined(__QNX__)
#define GHC_OS_QNX
+#elif defined(__HAIKU__)
+#define GHC_OS_HAIKU
#else |
Related PR: #163 |
This can be closed I think, created a stand-alone package on Haiku with the related PR here, build and install seem OK. |
You are right, I will add the detection. |
Upstream PR merged, thanks! 👍 |
Describe the bug
Filesystem fails to compile (filesystem/filesystem.hpp) on Haiku because of missing d_type in dirent structure.
Additional context
doxygen/doxygen#9610
The text was updated successfully, but these errors were encountered: