diff options
author | fleger <florian6.leger@laposte.net> | 2011-03-12 18:11:33 +0100 |
---|---|---|
committer | fleger <florian6.leger@laposte.net> | 2011-03-12 18:11:33 +0100 |
commit | 115cbe64f65e82352228158595b129e88ef91758 (patch) | |
tree | 96493dbd9e4475069b1269dc75b3056d27cd3ed9 | |
parent | da1fd227bf2cc56c6f9a7ea42bd2c8b05f781f06 (diff) |
Revert "Fixed yasm version check if yasm version ≥ 1.1.0"
This reverts commit da1fd227bf2cc56c6f9a7ea42bd2c8b05f781f06.
-rw-r--r-- | configure.ac | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index f018602..c0d3dd9 100644 --- a/configure.ac +++ b/configure.ac @@ -1,3 +1,4 @@ + AC_INIT([cpuminer], [0.7.1]) AC_PREREQ(2.52) @@ -56,20 +57,15 @@ yamini=`echo $yasmver | cut -d. -f3` if test "$yamajor" -ge "1" ; then if test "$yamajor" -eq "1" ; then if test "$yaminor" -ge "0" ; then - if test "$yaminor" -eq "0"; then - if test "$yamini" -ge "1"; then - has_yasm=true - fi - else + if test "$yamini" -ge "1"; then has_yasm=true fi fi fi else - has_yasm=false +has_yasm=false fi - if test "x$has_yasm" != "x" ; then AC_MSG_RESULT([yes]) else |