-
Notifications
You must be signed in to change notification settings - Fork 22
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
Compilation issue on latest Debian 12.8 #36
Comments
Good day! This should be an easy fix. I never realized that gstreamer increased the minimum meson version and I only check for version 0.63.2. Replace line 955 of autogen.sh from: if [ ! -z "$(progVersionCheck project="meson" program=meson linenumber=1 lineindex=0 major=0 minor=63 micro=2)" ]; then to the following: if [ ! -z "$(progVersionCheck project="meson" program=meson linenumber=1 lineindex=0 major=1 minor=1)" ]; then The difference is simply changing I should have some spare time this evening to try to reproduce the issue. Thanks for this feedback! |
I forgot to clarify, You can try to install your distro's gstreamer package and run Some of these package may not be necessary since I never bothered filtering them out. |
I just committed a fix to properly handle the minimum version of meson. Let me know how that goes! |
Hello, I'm trying to build your project, and I have compilation issue with GStreamer that complains about Meson. He now want a minimum meson version to 1.1 and Debian 12 has 1.0.1. I'm trying to compile without --enable-latest, but it's continues to compile against gstreamer-1.24.8.
The text was updated successfully, but these errors were encountered: