We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Can't build with error:
spek-fft.h:7:10: fatal error: libavutil/mem.h: No such file or directory 7 | #include <libavutil/mem.h>
In Makefile dose not use AVUTIL_CFLAGS variable in spec_CFLAGS.
The text was updated successfully, but these errors were encountered:
Patch for this problem:
diff --git a/src/Makefile.am b/src/Makefile.am index c4aba08..32fd0f3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -50,7 +50,8 @@ spek_CPPFLAGS = \ $(WX_CPPFLAGS) spek_CXXFLAGS = \ - $(WX_CXXFLAGS_ONLY) + $(WX_CXXFLAGS_ONLY)\ + $(AVUTIL_CFLAGS) spek_LDADD = \ libspek.a \
Sorry, something went wrong.
No branches or pull requests
Can't build with error:
In Makefile dose not use AVUTIL_CFLAGS variable in spec_CFLAGS.
The text was updated successfully, but these errors were encountered: