1
0
Fork 0

(svn r23954) -Fix (r23952): Update required grfcodec version.

release/1.2
michi_cc 2012-02-15 21:39:10 +00:00
parent 5486e05f65
commit 2695bf0d53
1 changed files with 3 additions and 3 deletions

View File

@ -3120,9 +3120,9 @@ detect_grfcodec() {
log 2 " returned $version"
log 2 " exit code $ret"
if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version" -lt "846" ]; then
if [ -n "$version" ] && [ "$version" -lt "846" ]; then
log 1 "checking grfcodec... needs at least version 5.1.3 (r846), disabled"
if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version" -lt "897" ]; then
if [ -n "$version" ] && [ "$version" -lt "897" ]; then
log 1 "checking grfcodec... needs at least version 5.1.4 (r897), disabled"
else
log 1 "checking grfcodec... not found"
fi