-
Notifications
You must be signed in to change notification settings - Fork 16
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
error: unknown type name 'u_long'; did you mean 'u_llong'? #2
Comments
I replaced u_long and u_char with unsigned long and unsigned char, and got past these errors. Not sure if there's any negative implication of this though. |
I think this is the right fix. If you are unsure push to a branch, but I am fine if you'd like to push this fix to the master (remember to include 'Fixes #2' in the commit message though). |
@ensonic Would removing u_long, u_char, etc, introduce any portability problems on different architectures? Or is it just for shorthand? |
@trusktr those are just shorthands. Things like uint8 need more care. |
We actually need to fix ./Matilde/Tracker/SurfsDSPLib/SRF_Types.h |
@ensonic I'm now getting
Are those supposed to be |
I think they ought to be -= and +=, please go ahead and make the change. That's why it is good to have all these sources in this repo. |
Are we sure the creator of Elak didn't mean something like *psamples = (- *psamples);
// and
*psamples = (+ *psamples); ? |
As we also have we can rewrite |
Pushed 5f06bd6, does that fix the build at least? |
I'm getting these errors while now that the fpu_control situation is handled:
There's also these couple of warnings:
The text was updated successfully, but these errors were encountered: