Replies: 2 comments 5 replies
-
How to compile it? What are the required dependencies? I got this
|
Beta Was this translation helpful? Give feedback.
5 replies
-
The following patch will fix the mingw headers issue. diff --git a/include/xincs.h b/include/xincs.h
index a6ebcb8..d24b621 100644
--- a/include/xincs.h
+++ b/include/xincs.h
@@ -388,9 +388,4 @@ typedef cpuset_t cpu_set_t;
#define SEEK_END 2
#endif
-// Remove crap
-#ifdef VOID
-#undef VOID
-#endif
-
#endif Even after that, I got the following error.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The FOX Toolkit's homepage is still on insecure http connection, so I created a mirror on Github for you to get the source easier:
https://github.com/iahung/fox-toolkit-mirror
I'm compiling on MINGW64. This is the error message:
(I'm building from the
build
directory to keep the source tree clean).Something is wrong with MINGW64?
VOID
should be defined, please see:https://learn.microsoft.com/en-us/windows/win32/winprog/windows-data-types
(
VOID
is just an alias ofvoid
).Beta Was this translation helpful? Give feedback.
All reactions