diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-05-23 17:52:23 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-05-23 17:52:23 +0100 |
commit | f949be5176b4092f1a65daa2d486b87af4e8b2c8 (patch) | |
tree | 40e875494b035b6ad2a7a1f8e8db4e836237193e | |
parent | 9c5950b73129a2a4d3e0ae2e81737845277971cb (diff) | |
download | xine-lib-f949be5176b4092f1a65daa2d486b87af4e8b2c8.tar.gz xine-lib-f949be5176b4092f1a65daa2d486b87af4e8b2c8.tar.bz2 |
Fix reversed version comparison.
-rw-r--r-- | m4/xine.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/xine.m4 b/m4/xine.m4 index 9aac9da6a..336a2d7d2 100644 --- a/m4/xine.m4 +++ b/m4/xine.m4 @@ -35,7 +35,7 @@ AC_DEFUN([_XINE_VERSION_CHECK], [ required_version_parsed=_XINE_VERSION_PARSE([$required_version]) actual_version=ifelse([$2], , [0.0.0], [$2]) actual_version_parsed=_XINE_VERSION_PARSE([$actual_version]) - if test $required_version_parsed -ge $actual_version_parsed; then + if test $required_version_parsed -le $actual_version_parsed; then ifelse([$3], , [:], [$3]) else ifelse([$4], , [:], [$4]) |