better ignore of NOSSE2 on linux per xrmx advice

This commit is contained in:
matusz 2009-04-17 17:18:46 +00:00
parent 6889b87605
commit 0e94d6ee51
2 changed files with 1 additions and 4 deletions

View File

@ -25,9 +25,6 @@ dnl -- check for endianess
AC_C_BIGENDIAN
dnl --- Other prerequisites ---
dnl - FIXME: provide a way to compile asm sources
dnl - and/or autodecide if we can have SSE2
AC_DEFINE(NOSSE2)
dnl - Check for pkg-config macros
m4_ifdef([PKG_PROG_PKG_CONFIG], [PKG_PROG_PKG_CONFIG])
dnl - Check for intltool/gettext macros

View File

@ -33,7 +33,7 @@ void MatrixInit (float *matrix)
matrix[0] = matrix[5] = matrix[10] = matrix[15] = 1.f;
}
#ifdef NOSSE2
#if not defined(WIN32) || defined(NOSSE2)
void MATRIXFASTCALL MatrixMultVec4x4 (const float *matrix, float *vecPtr)
{
float x = vecPtr[0];