-
Notifications
You must be signed in to change notification settings - Fork 272
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
Overview: Not compiling with waf #220
Comments
Okay the error outlined here is easy to fix (just import the right thing). But then you'll see you also need to remove the "packages" references -- which aren't valid for C plugins. Both are fixed by 454b14e And then, you'll stumble on something more subtle: this plugin uses some C99-isms that aren't part of GNU89 (GCC's default), meaning it requires explicitly requesting C99 or newer, which Autotools does since b5ad287 but Waf doesn't. This leads to build failure:
|
Weird, I totally tested this on my machine and it worked (except I had to add -std=c99 to C flags). Thanks @b4n for fixing it for everyone else :) |
Closes geany#220.
Overview plugin is not compiling with waf
The text was updated successfully, but these errors were encountered: