diff options
author | Jeff Garzik <jeff@garzik.org> | 2011-03-11 16:13:30 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2011-03-11 16:13:30 -0500 |
commit | 4d857dcb1e8962d68dc7d784e3e61fb5d2780c71 (patch) | |
tree | a8e8352ddcad8da7d46591290a443ea8588b149e | |
parent | 6b19b15aa97d8bfba7c5feb52d857a1b51b1e6d4 (diff) | |
parent | 1989b7dab9c9c1b98445d300aafbe34cc169451a (diff) |
Merge branch 'sse2' of https://github.com/chromicant/cpuminer into tmp
-rw-r--r-- | configure.ac | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/configure.ac b/configure.ac index c0d3dd9..074c37a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,3 @@ - AC_INIT([cpuminer], [0.7.1]) AC_PREREQ(2.52) @@ -47,25 +46,24 @@ has_yasm=false AC_PATH_PROG(YASM,[yasm],[true yasm]) if test "$YASM" = "false" ; then AC_MSG_WARN([yasm is required for the x86_64 SSE2 code, but it was not found]) -fi - -AC_MSG_CHECKING([if yasm version is greater than 1.0.1]) -yasmver=`yasm --version | head -1 | cut -d\ -f2` -yamajor=`echo $yasmver | cut -d. -f1` -yaminor=`echo $yasmver | cut -d. -f2` -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 "$yamini" -ge "1"; then - has_yasm=true +else + AC_MSG_CHECKING([if yasm version is greater than 1.0.1]) + yasmver=`yasm --version | head -1 | cut -d\ -f2` + yamajor=`echo $yasmver | cut -d. -f1` + yaminor=`echo $yasmver | cut -d. -f2` + 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 "$yamini" -ge "1"; then + has_yasm=true + fi fi fi + else + has_yasm=false fi -else -has_yasm=false fi - if test "x$has_yasm" != "x" ; then AC_MSG_RESULT([yes]) else |