Skip to content
Snippets Groups Projects
Commit 2de6521f authored by Anton Shterenlikht's avatar Anton Shterenlikht
Browse files

Fixed typo preventing build for ia64/sparc64.

http://www.freebsd.org/cgi/query-pr.cgi?pr=165798
parent 11df721b
Branches
Tags
No related merge requests found
......@@ -69,8 +69,10 @@ AC_DEFUN([AX_EXT],
AC_CACHE_CHECK([whether sse2 is supported], [ax_cv_have_sse2_ext],
[
ax_cv_have_sse2_ext=no
if test "$((0x$edx>>26&0x01))" = 1; then
ax_cv_have_sse2_ext=yes
if test "$ax_cv_gcc_x86_cpuid_0x00000001" != "unknown"; then
if test "$((0x$edx>>26&0x01))" = 1; then
ax_cv_have_sse2_ext=yes
fi
fi
])
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment