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
The check_version function in autogen.sh does not work correctly. It checks the version numbers using simple string comparison:
check_version
gimp-lqr-plugin/autogen.sh
Lines 31 to 39 in ae0ecb4
Version numbers cannot be compared in that manner. The consequence is that, when you were requiring a minimum of automake 1.6:
Line 16 in 6299984
if the user's version of automake was 1.10 or greater, then the user would get a complaint like:
-n checking for automake >= 1.6 ... Too old (found version 1.16.5)!
because of course the string 1.16.5 sorts before the string 1.6.
1.16.5
1.6
This was reported to MacPorts here:
https://trac.macports.org/ticket/70485
The text was updated successfully, but these errors were encountered:
Fix autogen.sh version checking
1cd692d
Fix #11
Successfully merging a pull request may close this issue.
The
check_version
function in autogen.sh does not work correctly. It checks the version numbers using simple string comparison:gimp-lqr-plugin/autogen.sh
Lines 31 to 39 in ae0ecb4
Version numbers cannot be compared in that manner. The consequence is that, when you were requiring a minimum of automake 1.6:
gimp-lqr-plugin/autogen.sh
Line 16 in 6299984
if the user's version of automake was 1.10 or greater, then the user would get a complaint like:
because of course the string
1.16.5
sorts before the string1.6
.This was reported to MacPorts here:
https://trac.macports.org/ticket/70485
The text was updated successfully, but these errors were encountered: